blob: 4b511b25d179e90a3a455f6cd2fb0997f3d12618 [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)
Alexander Aringaff3eaa2016-02-19 09:59:10 +0100154M: Alexander Aring <aar@pengutronix.de>
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
Josh Triplettea8f8fc2014-06-06 14:38:27 -0700226F: include/linux/syscalls.h
Josh Triplettea8f8fc2014-06-06 14:38:27 -0700227F: kernel/sys_ni.c
228
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700229ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100230M: Hans de Goede <hdegoede@redhat.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700231L: linux-hwmon@vger.kernel.org
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700233F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200234
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700235ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700236M: Alistair John Strachan <alistair@devzero.co.uk>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700237L: linux-hwmon@vger.kernel.org
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700240
William Breathitt Gray1b06d642016-01-20 13:50:11 -0500241ACCES 104-DIO-48E GPIO DRIVER
242M: William Breathitt Gray <vilhelm.gray@gmail.com>
243L: linux-gpio@vger.kernel.org
244S: Maintained
245F: drivers/gpio/gpio-104-dio-48e.c
246
William Breathitt Gray6ddcf9b2015-11-23 12:54:50 -0500247ACCES 104-IDI-48 GPIO DRIVER
248M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
249L: linux-gpio@vger.kernel.org
250S: Maintained
251F: drivers/gpio/gpio-104-idi-48.c
252
William Breathitt Graye2558982015-10-28 17:24:16 -0400253ACCES 104-IDIO-16 GPIO DRIVER
254M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
255L: linux-gpio@vger.kernel.org
256S: Maintained
257F: drivers/gpio/gpio-104-idio-16.c
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700260M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261L: linux-acenic@sunsite.dk
262S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700263F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Peter Feuerere86435e2009-06-21 18:53:03 +0200265ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700266M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500267L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700268W: http://piie.net/?section=acerhdf
269S: Maintained
270F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200271
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000272ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800273M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500274L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700276F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278ACPI
Joe Perches9c3646d2015-06-25 15:02:00 -0700279M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +0100280M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500281L: linux-acpi@vger.kernel.org
Rafael J. Wysocki360818b2013-10-09 01:48:26 +0200282W: https://01.org/linux-acpi
283Q: https://patchwork.kernel.org/project/linux-acpi/list/
284T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Len Brown8b59a452007-01-08 19:03:28 -0500285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700286F: drivers/acpi/
287F: drivers/pnp/pnpacpi/
288F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700289F: include/acpi/
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800290F: Documentation/acpi/
Lv Zheng89ca78a2013-06-20 08:02:44 +0800291F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600292F: drivers/pci/*acpi*
293F: drivers/pci/*/*acpi*
294F: drivers/pci/*/*/*acpi*
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800295F: tools/power/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500296
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200297ACPI COMPONENT ARCHITECTURE (ACPICA)
298M: Robert Moore <robert.moore@intel.com>
299M: Lv Zheng <lv.zheng@intel.com>
Joe Perches9c3646d2015-06-25 15:02:00 -0700300M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200301L: linux-acpi@vger.kernel.org
302L: devel@acpica.org
303W: https://acpica.org/
304W: https://github.com/acpica/acpica/
305Q: https://patchwork.kernel.org/project/linux-acpi/list/
306T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
307S: Supported
308F: drivers/acpi/acpica/
309F: include/acpi/
Lv Zheng2754c442014-01-15 12:04:24 +0800310F: tools/power/acpi/
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200311
Len Brown8b59a452007-01-08 19:03:28 -0500312ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700313M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500314L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200315W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700317F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Len Brown8b59a452007-01-08 19:03:28 -0500319ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700320M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500321L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200322W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700324F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700325
Len Brown359acec2007-02-10 01:59:24 -0500326ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700327M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500328L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200329W: https://01.org/linux-acpi
Len Brown359acec2007-02-10 01:59:24 -0500330S: Supported
Dan Carpenter86f98a32015-12-01 11:58:40 +0300331F: drivers/acpi/acpi_video.c
Len Brown359acec2007-02-10 01:59:24 -0500332
Carlos Corbachobff431e2008-02-05 02:17:04 +0000333ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500334L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100335S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700336F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000337
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100338AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700339M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200340W: http://wiki.parisc-linux.org/AD1889
341L: linux-parisc@vger.kernel.org
342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700343F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100344
Michael Hennerich527a1a82010-10-28 11:31:28 +0000345AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
346M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700347W: http://wiki.analog.com/AD5254
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800348W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349S: Supported
350F: drivers/misc/ad525x_dpot.c
351
352AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
353M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/AD5398
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800355W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356S: Supported
357F: drivers/regulator/ad5398.c
358
359AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
360M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/AD7142
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800362W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/input/misc/ad714x.c
365
366AD7877 TOUCHSCREEN DRIVER
367M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700368W: http://wiki.analog.com/AD7877
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800369W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/input/touchscreen/ad7877.c
372
373AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
374M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700375W: http://wiki.analog.com/AD7879
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800376W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000377S: Supported
378F: drivers/input/touchscreen/ad7879.c
379
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700380ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
Jiri Kosinae5f64502015-08-09 09:11:34 +0200381M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700382S: Maintained
383
Michael Hennerich7302b9d2015-12-11 11:17:15 +0100384ADF7242 IEEE 802.15.4 RADIO DRIVER
385M: Michael Hennerich <michael.hennerich@analog.com>
386W: https://wiki.analog.com/ADF7242
387W: http://ez.analog.com/community/linux-device-drivers
388L: linux-wpan@vger.kernel.org
389S: Supported
390F: drivers/net/ieee802154/adf7242.c
391F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393ADM1025 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700394M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700395L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/hwmon/adm1025
398F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Corentin Labbecae2caa2007-02-14 21:15:04 +0100400ADM1029 HARDWARE MONITOR DRIVER
LABBE Corentinfce8ffa2014-05-08 16:07:45 +0200401M: Corentin Labbe <clabbe.montjoie@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700402L: linux-hwmon@vger.kernel.org
Corentin Labbecae2caa2007-02-14 21:15:04 +0100403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100405
Michael Wucc0b88c2007-08-31 01:15:25 -0400406ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400407L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200408W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400409S: Orphan
Kalle Valod4a17302015-11-17 19:49:19 +0200410F: drivers/net/wireless/admtek/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400411
Sakari Ailuse8e31622012-11-12 18:14:39 -0300412ADP1653 FLASH CONTROLLER DRIVER
413M: Sakari Ailus <sakari.ailus@iki.fi>
414L: linux-media@vger.kernel.org
415S: Maintained
416F: drivers/media/i2c/adp1653.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -0200417F: include/media/i2c/adp1653.h
Sakari Ailuse8e31622012-11-12 18:14:39 -0300418
Michael Hennerich527a1a82010-10-28 11:31:28 +0000419ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
420M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700421W: http://wiki.analog.com/ADP5520
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800422W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000423S: Supported
424F: drivers/mfd/adp5520.c
425F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700426F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800427F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000428F: drivers/input/keyboard/adp5520-keys.c
429
430ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
431M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700432W: http://wiki.analog.com/ADP5588
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800433W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000434S: Supported
435F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800436F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000437
438ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
439M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700440W: http://wiki.analog.com/ADP8860
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800441W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000442S: Supported
443F: drivers/video/backlight/adp8860_bl.c
444
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100445ADS1015 HARDWARE MONITOR DRIVER
446M: Dirk Eibach <eibach@gdsys.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700447L: linux-hwmon@vger.kernel.org
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100448S: Maintained
449F: Documentation/hwmon/ads1015
450F: drivers/hwmon/ads1015.c
451F: include/linux/i2c/ads1015.h
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700456F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Jean Delvareb058b852009-12-09 20:36:08 +0100458ADT7475 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700459M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700460L: linux-hwmon@vger.kernel.org
Jean Delvareb058b852009-12-09 20:36:08 +0100461S: Maintained
462F: Documentation/hwmon/adt7475
463F: drivers/hwmon/adt7475.c
464
Michael Hennerich527a1a82010-10-28 11:31:28 +0000465ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
466M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700467W: http://wiki.analog.com/ADXL345
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800468W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000469S: Supported
470F: drivers/input/misc/adxl34x.c
471
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400472ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700473M: Matthew Wilcox <matthew@wil.cx>
Jiri Slabyd8130622015-07-17 16:23:20 -0700474M: Hannes Reinecke <hare@suse.com>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400475L: linux-scsi@vger.kernel.org
476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700477F: Documentation/scsi/advansys.txt
478F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Antti Palosaari91952bc2012-10-01 12:28:46 -0300485AF9013 MEDIA DRIVER
486M: Antti Palosaari <crope@iki.fi>
487L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200488W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300489W: http://palosaari.fi/linux/
490Q: http://patchwork.linuxtv.org/project/linux-media/list/
491T: git git://linuxtv.org/anttip/media_tree.git
492S: Maintained
493F: drivers/media/dvb-frontends/af9013*
494
495AF9033 MEDIA DRIVER
496M: Antti Palosaari <crope@iki.fi>
497L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200498W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300499W: http://palosaari.fi/linux/
500Q: http://patchwork.linuxtv.org/project/linux-media/list/
501T: git git://linuxtv.org/anttip/media_tree.git
502S: Maintained
503F: drivers/media/dvb-frontends/af9033*
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200506L: linux-fsdevel@vger.kernel.org
507S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700508F: Documentation/filesystems/affs.txt
509F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700511AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700513L: linux-afs@lists.infradead.org
514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700515F: fs/afs/
516F: include/net/af_rxrpc.h
517F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700520M: David Airlie <airlied@linux.ie>
Dave Airlie878eaf62014-02-27 14:51:55 +1000521T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/agp/
524F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800525F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700528M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529L: linux-scsi@vger.kernel.org
530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700531F: drivers/scsi/aha152x*
532F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Hannes Reinecke64624d42007-10-19 10:32:29 +0200534AIC7XXX / AIC79XX SCSI DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700535M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200536L: linux-scsi@vger.kernel.org
537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700538F: drivers/scsi/aic7xxx/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200539
Hans Verkuil450500a2012-11-23 07:11:33 -0300540AIMSLAB FM RADIO RECEIVER DRIVER
541M: Hans Verkuil <hverkuil@xs4all.nl>
542L: linux-media@vger.kernel.org
543T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200544W: https://linuxtv.org
Hans Verkuil450500a2012-11-23 07:11:33 -0300545S: Maintained
546F: drivers/media/radio/radio-aimslab*
547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700548AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700549M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700550L: linux-aio@kvack.org
551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700552F: fs/aio.c
553F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700554
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300555AIRSPY MEDIA DRIVER
556M: Antti Palosaari <crope@iki.fi>
557L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200558W: https://linuxtv.org
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300559W: http://palosaari.fi/linux/
560Q: http://patchwork.linuxtv.org/project/linux-media/list/
561T: git git://linuxtv.org/anttip/media_tree.git
562S: Maintained
563F: drivers/media/usb/airspy/
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700566M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700567L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568W: http://www.linux-usb.org/SpeedTouch/
569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700570F: drivers/usb/atm/speedtch.c
571F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Pierre Ossman272f1332007-05-14 21:25:26 +0200573ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700576F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200577
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000578ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700579M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100580L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700582F: Documentation/i2c/busses/i2c-ali1563
583F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000584
LABBE Corentinbc368792015-07-17 16:39:42 +0200585ALLWINNER SECURITY SYSTEM
586M: Corentin Labbe <clabbe.montjoie@gmail.com>
587L: linux-crypto@vger.kernel.org
588S: Maintained
589F: drivers/crypto/sunxi-ss/
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700592M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700593M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500594M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700595S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700596L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700597F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Ley Foon Tanf62092f2015-02-04 16:32:18 +0800599ALTERA MAILBOX DRIVER
600M: Ley Foon Tan <lftan@altera.com>
601L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
602S: Maintained
603F: drivers/mailbox/mailbox-altera.c
604
Tien Hock Lohc5abbba2015-02-24 01:53:03 -0800605ALTERA PIO DRIVER
606M: Tien Hock Loh <thloh@altera.com>
607L: linux-gpio@vger.kernel.org
608S: Maintained
609F: drivers/gpio/gpio-altera.c
610
Vince Bridgers16b8b922014-03-17 17:52:40 -0500611ALTERA TRIPLE SPEED ETHERNET DRIVER
Vince Bridgersc53fed02014-10-09 10:08:42 -0500612M: Vince Bridgers <vbridger@opensource.altera.com>
Vince Bridgers16b8b922014-03-17 17:52:40 -0500613L: netdev@vger.kernel.org
614L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
615S: Maintained
616F: drivers/net/ethernet/altera/
617
Tobias Klauseradf92512011-02-09 10:58:29 +0100618ALTERA UART/JTAG UART SERIAL DRIVERS
619M: Tobias Klauser <tklauser@distanz.ch>
620L: linux-serial@vger.kernel.org
Tobias Klauser61bd0942014-02-25 15:01:49 -0800621L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Tobias Klauseradf92512011-02-09 10:58:29 +0100622S: Maintained
623F: drivers/tty/serial/altera_uart.c
624F: drivers/tty/serial/altera_jtaguart.c
625F: include/linux/altera_uart.h
626F: include/linux/altera_jtaguart.h
627
Tom Lendackyf4875e12013-11-12 11:46:57 -0600628AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
629M: Tom Lendacky <thomas.lendacky@amd.com>
630L: linux-crypto@vger.kernel.org
631S: Supported
632F: drivers/crypto/ccp/
633F: include/linux/ccp.h
634
Andreas Herrmann512d1022011-05-25 20:43:31 +0200635AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Huang Rui96818b52015-12-10 11:56:11 +0800636M: Huang Rui <ray.huang@amd.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700637L: linux-hwmon@vger.kernel.org
Huang Rui96818b52015-12-10 11:56:11 +0800638S: Supported
Andreas Herrmann512d1022011-05-25 20:43:31 +0200639F: Documentation/hwmon/fam15h_power
640F: drivers/hwmon/fam15h_power.c
641
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700642AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Jordan Crouse67d76712008-05-12 14:02:22 -0700643L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Greg Kroah-Hartmanb4731972015-09-25 20:45:27 -0700644S: Orphan
Joe Perchesfaf2e1d2014-08-08 14:26:18 -0700645F: drivers/usb/gadget/udc/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700646
Jordan Crousef90b8112006-01-06 00:12:14 -0800647AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800648P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700649L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800650W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700652F: drivers/char/hw_random/geode-rng.c
653F: drivers/crypto/geode*
Jingoo Han8a61f012014-07-01 15:36:01 +0900654F: drivers/video/fbdev/geode/
Joe Perches679655d2009-04-07 20:44:32 -0700655F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800656
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200657AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200658M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200659L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100660T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200661S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800662F: drivers/iommu/amd_iommu*.[ch]
663F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200664
Oded Gabbay16423d62014-07-15 13:08:36 +0300665AMD KFD
Oded Gabbay1241e0b2015-05-10 12:37:28 +0300666M: Oded Gabbay <oded.gabbay@gmail.com>
Joe Perches49e7d9d2015-04-15 16:17:31 -0700667L: dri-devel@lists.freedesktop.org
668T: git git://people.freedesktop.org/~gabbayo/linux.git
669S: Supported
Oded Gabbay130e0372015-06-12 21:35:14 +0300670F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
671F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
Oded Gabbay32c22e92015-06-12 21:38:22 +0300672F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
Ben Gozff758a12014-10-07 14:43:07 +0300673F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
Joe Perches49e7d9d2015-04-15 16:17:31 -0700674F: drivers/gpu/drm/amd/amdkfd/
Oded Gabbay04df25d2015-01-05 18:15:45 +0200675F: drivers/gpu/drm/amd/include/cik_structs.h
676F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
Ben Gozff758a12014-10-07 14:43:07 +0300677F: drivers/gpu/drm/amd/include/vi_structs.h
Joe Perches49e7d9d2015-04-15 16:17:31 -0700678F: drivers/gpu/drm/radeon/radeon_kfd.c
679F: drivers/gpu/drm/radeon/radeon_kfd.h
680F: include/uapi/linux/kfd_ioctl.h
Oded Gabbay16423d62014-07-15 13:08:36 +0300681
Suravee Suthikulpanit2510eb72016-02-08 11:59:06 -0600682AMD SEATTLE DEVICE TREE SUPPORT
683M: Brijesh Singh <brijeshkumar.singh@amd.com>
684M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
685M: Tom Lendacky <thomas.lendacky@amd.com>
686S: Supported
687F: arch/arm64/boot/dts/amd/
688
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500689AMD XGBE DRIVER
690M: Tom Lendacky <thomas.lendacky@amd.com>
691L: netdev@vger.kernel.org
692S: Supported
693F: drivers/net/ethernet/amd/xgbe/
Tom Lendacky08b89402016-02-08 11:59:15 -0600694F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500695
Stelian Pop284f42b2006-12-12 18:18:31 +0100696AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700697M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100698S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200699F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100700
Hans Verkuil531fca12012-11-23 06:53:24 -0300701ANALOG DEVICES INC AD9389B DRIVER
702M: Hans Verkuil <hans.verkuil@cisco.com>
703L: linux-media@vger.kernel.org
704S: Maintained
705F: drivers/media/i2c/ad9389b*
706
Lars-Peter Clausen614b4382015-01-23 12:52:34 -0300707ANALOG DEVICES INC ADV7180 DRIVER
708M: Lars-Peter Clausen <lars@metafoo.de>
709L: linux-media@vger.kernel.org
710W: http://ez.analog.com/community/linux-device-drivers
711S: Supported
712F: drivers/media/i2c/adv7180.c
713
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300714ANALOG DEVICES INC ADV7511 DRIVER
715M: Hans Verkuil <hans.verkuil@cisco.com>
716L: linux-media@vger.kernel.org
717S: Maintained
718F: drivers/media/i2c/adv7511*
719
Hans Verkuil531fca12012-11-23 06:53:24 -0300720ANALOG DEVICES INC ADV7604 DRIVER
721M: Hans Verkuil <hans.verkuil@cisco.com>
722L: linux-media@vger.kernel.org
723S: Maintained
724F: drivers/media/i2c/adv7604*
725
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300726ANALOG DEVICES INC ADV7842 DRIVER
727M: Hans Verkuil <hans.verkuil@cisco.com>
728L: linux-media@vger.kernel.org
729S: Maintained
730F: drivers/media/i2c/adv7842*
731
Michael Hennerich527a1a82010-10-28 11:31:28 +0000732ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200733M: Lars-Peter Clausen <lars@metafoo.de>
Michael Hennerich527a1a82010-10-28 11:31:28 +0000734L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700735W: http://wiki.analog.com/
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800736W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000737S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100738F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200739F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000740F: sound/soc/codecs/ad1*
Mark Brownae48f5e2013-08-07 18:01:08 +0100741F: sound/soc/codecs/ad7*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000742F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100743F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000744
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400745ANALOG DEVICES INC ASOC DRIVERS
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -0700746L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400747L: alsa-devel@alsa-project.org (moderated for non-subscribers)
748W: http://blackfin.uclinux.org/
749S: Supported
750F: sound/soc/blackfin/*
Rob Herring7d1f9012014-12-26 13:47:30 -0600751
Lars-Peter Clausen4ce72ab2014-08-18 09:08:00 +0100752ANALOG DEVICES INC IIO DRIVERS
753M: Lars-Peter Clausen <lars@metafoo.de>
754M: Michael Hennerich <Michael.Hennerich@analog.com>
755W: http://wiki.analog.com/
756W: http://ez.analog.com/community/linux-device-drivers
757S: Supported
758F: drivers/iio/*/ad*
759X: drivers/iio/*/adjd*
760F: drivers/staging/iio/*/ad*
761F: staging/iio/trigger/iio-trig-bfin-timer.c
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400762
Lars-Peter Clausen0e3b67b2015-08-20 17:39:13 +0200763ANALOG DEVICES INC DMA DRIVERS
764M: Lars-Peter Clausen <lars@metafoo.de>
765W: http://ez.analog.com/community/linux-device-drivers
766S: Supported
767F: drivers/dma/dma-axi-dmac.c
768
Greg KH41c9e952015-01-18 16:33:24 +0900769ANDROID DRIVERS
770M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Baruch Siach27682402015-03-18 21:29:10 +0200771M: Arve Hjønnevåg <arve@android.com>
Greg KH41c9e952015-01-18 16:33:24 +0900772M: Riley Andrews <riandrews@android.com>
Lee Campbell0e4a5662015-05-24 14:47:38 -0700773T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg KH41c9e952015-01-18 16:33:24 +0900774L: devel@driverdev.osuosl.org
775S: Supported
776F: drivers/android/
777F: drivers/staging/android/
778
Johannes Berg42269062006-07-25 16:15:50 +0200779AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000781L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700782L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700784F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200785
William Breathitt Gray97a445d2016-02-11 11:49:36 -0500786APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
787M: William Breathitt Gray <vilhelm.gray@gmail.com>
788L: linux-iio@vger.kernel.org
789S: Maintained
790F: drivers/iio/dac/stx104.c
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792APM DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +0200793M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina81024fc2011-05-04 13:41:31 +0200794S: Odd fixes
Fengguang Wu9f273c22016-01-20 15:03:25 -0800795T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
Joe Perches679655d2009-04-07 20:44:32 -0700796F: arch/x86/kernel/apm_32.c
797F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800798F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200799F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700801APPLE BCM5974 MULTITOUCH DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800802M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700803L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800804S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700805F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700806
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700807APPLE SMC DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800808M: Henrik Rydberg <rydberg@bitmath.org>
Guenter Roeck968ce1b2016-03-22 15:11:03 -0700809L: linux-hwmon@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800810S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700811F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700816F: drivers/net/appletalk/
817F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Duc Dang21c75322015-08-12 17:01:12 -0700819APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
820M: Duc Dang <dhdang@apm.com>
821S: Supported
822F: arch/arm64/boot/dts/apm/
823
Iyappan Subramanian24299502014-08-07 15:14:25 -0700824APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
825M: Iyappan Subramanian <isubramanian@apm.com>
826M: Keyur Chudgar <kchudgar@apm.com>
Iyappan Subramanian24299502014-08-07 15:14:25 -0700827S: Supported
828F: drivers/net/ethernet/apm/xgene/
829F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
830
Laurent Pinchart62a37dc2013-08-09 08:46:11 -0300831APTINA CAMERA SENSOR PLL
832M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
833L: linux-media@vger.kernel.org
834S: Maintained
835F: drivers/media/i2c/aptina-pll.*
836
Jaya Kumar1154ea72005-06-21 17:17:04 -0700837ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700838M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700839S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900840F: drivers/video/fbdev/arcfb.c
841F: drivers/video/fbdev/core/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700842
Michael Grzeschikc38f6ac2015-09-17 15:26:16 +0200843ARCNET NETWORK LAYER
844M: Michael Grzeschik <m.grzeschik@pengutronix.de>
845L: netdev@vger.kernel.org
846S: Maintained
847F: drivers/net/arcnet/
848F: include/uapi/linux/if_arcnet.h
849
Liviu Dudauc5a906a2015-08-04 17:41:58 +0100850ARM HDLCD DRM DRIVER
851M: Liviu Dudau <liviu.dudau@arm.com>
852S: Supported
853F: drivers/gpu/drm/arm/
854F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700857M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700859F: arch/arm/lib/floppydma.S
860F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Will Deacon6f965212011-07-01 14:38:53 +0100862ARM PMU PROFILING AND DEBUGGING
863M: Will Deacon <will.deacon@arm.com>
Mark Rutland70e238d2015-10-02 10:55:08 +0100864R: Mark Rutland <mark.rutland@arm.com>
Will Deacon6f965212011-07-01 14:38:53 +0100865S: Maintained
Mark Rutlanddd06a842015-10-02 10:55:07 +0100866F: arch/arm*/kernel/perf_*
Will Deacon6f965212011-07-01 14:38:53 +0100867F: arch/arm/oprofile/common.c
Mark Rutlanddd06a842015-10-02 10:55:07 +0100868F: arch/arm*/kernel/hw_breakpoint.c
869F: arch/arm*/include/asm/hw_breakpoint.h
870F: arch/arm*/include/asm/perf_event.h
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100871F: drivers/perf/arm_pmu.c
872F: include/linux/perf/arm_pmu.h
Will Deacon6f965212011-07-01 14:38:53 +0100873
Russell Kingd4275352009-04-16 14:05:27 +0100874ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700875M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100877W: http://www.arm.linux.org.uk/
878S: Maintained
879F: arch/arm/
880
Stephen Boydd323c2432012-10-24 11:00:29 -0700881ARM SUB-ARCHITECTURES
882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800883S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700884F: arch/arm/mach-*/
885F: arch/arm/plat-*/
886T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
887
Russell Kingcefbf4e2009-11-22 17:40:28 +0000888ARM PRIMECELL AACI PL041 DRIVER
889M: Russell King <linux@arm.linux.org.uk>
890S: Maintained
891F: sound/arm/aaci.*
892
893ARM PRIMECELL CLCD PL110 DRIVER
894M: Russell King <linux@arm.linux.org.uk>
895S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900896F: drivers/video/fbdev/amba-clcd.*
Russell Kingcefbf4e2009-11-22 17:40:28 +0000897
898ARM PRIMECELL KMI PL050 DRIVER
899M: Russell King <linux@arm.linux.org.uk>
900S: Maintained
901F: drivers/input/serio/ambakmi.*
902F: include/linux/amba/kmi.h
903
Russell King2761f5c2007-05-24 06:56:08 +0200904ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000905M: Russell King <linux@arm.linux.org.uk>
906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700907F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000908F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200909
Russell King1b4304e2013-02-11 15:26:27 +0000910ARM PRIMECELL UART PL010 AND PL011 DRIVERS
911M: Russell King <linux@arm.linux.org.uk>
912S: Maintained
913F: drivers/tty/serial/amba-pl01*.c
914F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800915
Russell Kingcefbf4e2009-11-22 17:40:28 +0000916ARM PRIMECELL BUS SUPPORT
917M: Russell King <linux@arm.linux.org.uk>
918S: Maintained
919F: drivers/amba/
920F: include/linux/amba/bus.h
921
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800922ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700923M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925S: Maintained
926
Sergey Lapin9c784f92008-08-03 02:29:48 +0100927ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100930S: Maintained
931
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700933M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700934L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800935S: Maintained
936
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100937ARM/Allwinner sunXi SoC support
Maxime Ripard1b106692012-11-15 21:51:26 +0100938M: Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100939M: Chen-Yu Tsai <wens@csie.org>
Maxime Ripard1b106692012-11-15 21:51:26 +0100940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941S: Maintained
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100942N: sun[x456789]i
Maxime Ripard60b0f382013-12-30 16:03:33 +0100943
944ARM/Allwinner SoC Clock Support
945M: Emilio López <emilio@elopez.com.ar>
946S: Maintained
947F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100948
Carlo Caione79318452016-02-23 10:43:11 +0100949ARM/Amlogic Meson SoC support
Carlo Caione7c1e3872014-09-12 20:18:31 +0200950M: Carlo Caione <carlo@caione.org>
951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Carlo Caione79318452016-02-23 10:43:11 +0100952L: linux-meson@googlegroups.com
953W: http://linux-meson.com/
Carlo Caione7c1e3872014-09-12 20:18:31 +0200954S: Maintained
Carlo Caione79318452016-02-23 10:43:11 +0100955F: arch/arm/mach-meson/
956F: arch/arm/boot/dts/meson*
957N: meson
Carlo Caione7c1e3872014-09-12 20:18:31 +0200958
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200959ARM/Annapurna Labs ALPINE ARCHITECTURE
960M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
Antoine Tenarta9e55472016-02-22 14:22:30 +0100961M: Antoine Tenart <antoine.tenart@free-electrons.com>
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200962S: Maintained
963F: arch/arm/mach-alpine/
Antoine Tenarta9e55472016-02-22 14:22:30 +0100964F: arch/arm/boot/dts/alpine*
965F: arch/arm64/boot/dts/al/
966F: drivers/*/*alpine*
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200967
Lars Persson5255034d2016-02-11 17:06:21 +0100968ARM/ARTPEC MACHINE SUPPORT
969M: Jesper Nilsson <jesper.nilsson@axis.com>
970M: Lars Persson <lars.persson@axis.com>
971M: Niklas Cassel <niklas.cassel@axis.com>
972S: Maintained
973L: linux-arm-kernel@axis.com
974F: arch/arm/mach-artpec
975F: arch/arm/boot/dts/artpec6*
976F: drivers/clk/clk-artpec6.c
977
Alexandre Belloni8dca5ce2015-09-02 18:24:21 +0200978ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800979M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200980M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800981M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800983W: http://www.linux4sam.org
Fengguang Wu9f273c22016-01-20 15:03:25 -0800984T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800985S: Supported
986F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100987F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100988F: arch/arm/boot/dts/at91*.dts
989F: arch/arm/boot/dts/at91*.dtsi
990F: arch/arm/boot/dts/sama*.dts
991F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100992F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100993
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200994ARM/ATMEL AT91 Clock Support
995M: Boris Brezillon <boris.brezillon@free-electrons.com>
996S: Maintained
997F: drivers/clk/at91
998
Rob Herring986cf2e2011-06-22 11:28:53 -0500999ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06001000M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -05001001L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1002S: Maintained
1003F: arch/arm/mach-highbank/
Rob Herringe68d7c12015-12-10 17:38:23 -06001004F: arch/arm/boot/dts/highbank.dts
1005F: arch/arm/boot/dts/ecx-*.dts*
Rob Herring986cf2e2011-06-22 11:28:53 -05001006
Anton Vorontsovd94f9442010-03-25 17:12:41 +03001007ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001008M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +03001009S: Maintained
1010F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +03001011
Sunil Goutham4863dea2015-05-26 19:20:15 -07001012ARM/CAVIUM THUNDER NETWORK DRIVER
1013M: Sunil Goutham <sgoutham@cavium.com>
1014M: Robert Richter <rric@kernel.org>
1015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1016S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +03001017F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -07001018
Alexander Shiyan386ab512012-11-17 17:57:24 +04001019ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1020M: Alexander Shiyan <shc_work@mail.ru>
1021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1022S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +04001023N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +04001024
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001025ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +01001026M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +10001027M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001028L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001029S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +01001030F: arch/arm/mach-ep93xx/
1031F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001032
1033ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001035L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001036S: Maintained
1037
Russell Kingd4275352009-04-16 14:05:27 +01001038ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001040L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -07001041S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001042F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -07001043F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +01001044
Mike Rapoportd48134e2008-08-20 09:03:26 +01001045ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001046M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001047L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001048S: Maintained
1049
Hubert Feurstein94150092009-10-07 08:36:07 +01001050ARM/CONTEC MICRO9 MACHINE SUPPORT
1051M: Hubert Feurstein <hubert.feurstein@contec.at>
1052S: Maintained
1053F: arch/arm/mach-ep93xx/micro9.c
1054
Pratik Patela06ae862014-11-03 11:07:35 -07001055ARM/CORESIGHT FRAMEWORK AND DRIVERS
1056M: Mathieu Poirier <mathieu.poirier@linaro.org>
1057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1058S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -06001059F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -07001060F: Documentation/trace/coresight.txt
1061F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -07001062F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -07001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066S: Maintained
1067
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001068ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001069M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001071T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001072S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001073F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001074F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001075
Barry Songa990cbd2011-07-12 21:44:10 +08001076ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001077M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001079T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001080S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06001081F: arch/arm/boot/dts/prima2*
Barry Songa990cbd2011-07-12 21:44:10 +08001082F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001083F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001084F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001085F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001086N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001087
Baruch Siachc9d862c2015-04-28 13:59:43 +03001088ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1089M: Baruch Siach <baruch@tkos.co.il>
1090L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1091S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001092F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001093N: digicolor
1094
Russell Kingd4275352009-04-16 14:05:27 +01001095ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001096M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001098W: http://www.arm.linux.org.uk/
1099S: Maintained
1100F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001101F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001102
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001103ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1104M: Uwe Kleine-König <kernel@pengutronix.de>
1105L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106S: Maintained
1107N: efm32
1108
Russell Kinga9da4f72008-07-12 21:42:04 +01001109ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001110M: Daniel Ribeiro <drwyrm@gmail.com>
1111M: Stefan Schmidt <stefan@openezx.org>
1112M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001113L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001114W: http://www.openezx.org/
1115S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001116T: topgit git://git.openezx.org/openezx.git
1117F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001118
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001119ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001120M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001121L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001122S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001123T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001124F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001125
Russell Kingd4275352009-04-16 14:05:27 +01001126ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001127M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001128L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001129W: http://www.arm.linux.org.uk/
1130S: Maintained
1131F: arch/arm/include/asm/hardware/dec21285.h
1132F: arch/arm/mach-footbridge/
1133
Sascha Hauer86183a52008-07-24 23:50:35 +02001134ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001135M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001136M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001138S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001139T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001140F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001141F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001142F: arch/arm/boot/dts/imx*
1143F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001144F: drivers/clk/imx/
1145F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001146
Stefan Agner142109d2015-03-02 00:09:02 +01001147ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001148M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001149M: Sascha Hauer <kernel@pengutronix.de>
1150R: Stefan Agner <stefan@agner.ch>
1151L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1152S: Maintained
1153T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1154F: arch/arm/mach-imx/*vf610*
1155F: arch/arm/boot/dts/vf*
1156
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001157ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001158M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001160S: Maintained
1161
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001162ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001163M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001164L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001165S: Maintained
1166
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001167ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001168M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001169M: Paul Parsons <lost.distance@yahoo.com>
1170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001171S: Maintained
1172F: arch/arm/mach-pxa/hx4700.c
1173F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001174F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001175
Wei Xu4dfad062014-07-07 10:41:53 +08001176ARM/HISILICON SOC SUPPORT
1177M: Wei Xu <xuwei5@hisilicon.com>
1178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179W: http://www.hisilicon.com
1180S: Supported
1181T: git git://github.com/hisilicon/linux-hisi.git
1182F: arch/arm/mach-hisi/
Rob Herringe68d7c12015-12-10 17:38:23 -06001183F: arch/arm/boot/dts/hi3*
1184F: arch/arm/boot/dts/hip*
1185F: arch/arm/boot/dts/hisi*
1186F: arch/arm64/boot/dts/hisilicon/
Wei Xu4dfad062014-07-07 10:41:53 +08001187
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001188ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001189M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001190W: www.jlime.com
1191S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001192T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1193F: arch/arm/mach-sa1100/jornada720.c
1194F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001195
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001196ARM/IGEP MACHINE SUPPORT
1197M: Enric Balletbo i Serra <eballetbo@gmail.com>
1198M: Javier Martinez Canillas <javier@dowhile0.org>
1199L: linux-omap@vger.kernel.org
1200L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001202F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001203
Marek Vasut403d2972010-05-22 00:29:39 +02001204ARM/INCOME PXA270 SUPPORT
1205M: Marek Vasut <marek.vasut@gmail.com>
1206L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1207S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001208F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001209
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001210ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001211M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001213S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001214
1215ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001217S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001218
1219ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001220M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001222S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001223
1224ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001225M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001226L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001227S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001228
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001229ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001230M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001231L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001232S: Maintained
1233
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001234ARM/INTEL IXP4XX ARM ARCHITECTURE
1235M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001236M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001237L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001238S: Maintained
1239F: arch/arm/mach-ixp4xx/
1240
Joe Perches838553c2010-10-26 14:22:59 -07001241ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001242M: Jonathan Cameron <jic23@cam.ac.uk>
1243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244S: Maintained
1245F: arch/arm/mach-pxa/stargate2.c
1246F: drivers/pcmcia/pxa2xx_stargate2.c
1247
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001248ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001249M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001250L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001251S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001252
1253ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001254M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001255L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001256S: Maintained
1257
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001258ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001259M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001260L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1261S: Maintained
1262F: arch/arm/mach-keystone/
Rob Herringe68d7c12015-12-10 17:38:23 -06001263F: arch/arm/boot/dts/k2*
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001264T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001265
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001266ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001267M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001268L: linux-kernel@vger.kernel.org
1269S: Maintained
1270F: drivers/clk/keystone/
1271
1272ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001273M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001274L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275L: linux-kernel@vger.kernel.org
1276S: Maintained
1277F: drivers/clocksource/timer-keystone.c
1278
1279ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
Santosh Shilimkar97215802014-10-13 14:16:28 -04001280M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001281L: linux-kernel@vger.kernel.org
1282S: Maintained
1283F: drivers/power/reset/keystone-reset.c
1284
1285ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001286M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001287L: linux-kernel@vger.kernel.org
1288S: Maintained
1289F: drivers/memory/*emif*
1290
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001291ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001292M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001293L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001294S: Maintained
1295
Joachim Eastwood31438752015-05-19 20:59:21 +02001296ARM/LPC18XX ARCHITECTURE
1297M: Joachim Eastwood <manabian@gmail.com>
1298L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299S: Maintained
Joachim Eastwood19c1c322015-10-11 22:40:42 +02001300F: arch/arm/boot/dts/lpc43*
1301F: drivers/clk/nxp/clk-lpc18xx*
1302F: drivers/clocksource/time-lpc32xx.c
1303F: drivers/i2c/busses/i2c-lpc2k.c
1304F: drivers/memory/pl172.c
1305F: drivers/mtd/spi-nor/nxp-spifi.c
1306F: drivers/rtc/rtc-lpc24xx.c
Joachim Eastwood31438752015-05-19 20:59:21 +02001307N: lpc18xx
1308
Philipp Zabel3b8861712008-07-09 21:27:15 +01001309ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001310M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001311S: Maintained
1312
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001313ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001314M: Jason Cooper <jason@lakedaemon.net>
1315M: Andrew Lunn <andrew@lunn.ch>
1316M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001317M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001318L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319S: Maintained
1320F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001321F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001322F: arch/arm/boot/dts/armada*
1323F: arch/arm/boot/dts/kirkwood*
Gregory CLEMENTdcc3068a72016-02-02 18:14:16 +01001324F: arch/arm64/boot/dts/marvell/armada*
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001325
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001326
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001327ARM/Marvell Berlin SoC support
1328M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1329L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330S: Maintained
1331F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001332F: arch/arm/boot/dts/berlin*
Rob Herringe68d7c12015-12-10 17:38:23 -06001333F: arch/arm64/boot/dts/marvell/berlin*
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001334
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001335
Andrew Lunn4cfab572014-07-16 22:32:51 +02001336ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001337M: Jason Cooper <jason@lakedaemon.net>
1338M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001339M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001340M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001341L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001342S: Maintained
1343F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001344F: arch/arm/mach-mv78xx0/
1345F: arch/arm/mach-orion5x/
1346F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001347F: arch/arm/boot/dts/dove*
1348F: arch/arm/boot/dts/orion5x*
1349
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001350
Alexander Clouterd69ac132011-04-14 15:22:02 -07001351ARM/Orion SoC/Technologic Systems TS-78xx platform support
1352M: Alexander Clouter <alex@digriz.org.uk>
1353L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1354W: http://www.digriz.org.uk/ts78xx/kernel
1355S: Maintained
1356F: arch/arm/mach-orion5x/ts78xx-*
1357
Eddie Huang607b8fc2015-05-06 15:23:42 +08001358ARM/Mediatek RTC DRIVER
1359M: Eddie Huang <eddie.huang@mediatek.com>
1360L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1361L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1362S: Maintained
1363F: drivers/rtc/rtc-mt6397.c
1364
Matthias Bruggere54951c2014-09-26 11:45:55 +02001365ARM/Mediatek SoC support
1366M: Matthias Brugger <matthias.bgg@gmail.com>
1367L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001368L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001369S: Maintained
1370F: arch/arm/boot/dts/mt6*
1371F: arch/arm/boot/dts/mt8*
1372F: arch/arm/mach-mediatek/
1373N: mtk
1374K: mediatek
1375
Chunfeng Yun0f8669e2015-10-12 10:41:57 +08001376ARM/Mediatek USB3 PHY DRIVER
1377M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1378L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1379L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1380S: Maintained
1381F: drivers/phy/phy-mt65xx-usb3.c
1382
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001383ARM/MICREL KS8695 ARCHITECTURE
1384M: Greg Ungerer <gerg@uclinux.org>
1385L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001386F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001387S: Odd Fixes
1388
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001389ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001391L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001392F: arch/arm/mach-pxa/mioa701.c
1393S: Maintained
1394
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001395ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001396M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001397S: Maintained
1398
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001399ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001400M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001401M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001402L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1403S: Maintained
1404F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001405F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001406F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001407T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001408
Andy Green9d762952009-05-19 06:41:42 -03001409ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001410M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001411L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1412W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1413S: Supported
1414
Dirk Opfer8459c152005-11-06 14:27:52 +00001415ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001416M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1417M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001418S: Maintained
1419
Marek Vasut5d783a22009-07-16 13:26:48 +02001420ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001421M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001422L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001423W: http://hackndev.com
1424S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001425F: arch/arm/mach-pxa/include/mach/palmtx.h
1426F: arch/arm/mach-pxa/palmtx.c
1427F: arch/arm/mach-pxa/include/mach/palmt5.h
1428F: arch/arm/mach-pxa/palmt5.c
1429F: arch/arm/mach-pxa/include/mach/palmld.h
1430F: arch/arm/mach-pxa/palmld.c
1431F: arch/arm/mach-pxa/include/mach/palmte2.h
1432F: arch/arm/mach-pxa/palmte2.c
1433F: arch/arm/mach-pxa/include/mach/palmtc.h
1434F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001435
Joe Perchesb57fe922009-12-14 18:00:52 -08001436ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001437M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001438L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001439W: http://hackndev.com
1440S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001441F: arch/arm/mach-pxa/include/mach/palmtreo.h
1442F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001443
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001444ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001445M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001446L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001447W: http://hackndev.com
1448S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001449F: arch/arm/mach-pxa/include/mach/palmz72.h
1450F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001453M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1455S: Maintained
1456
1457ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001458M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001459L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460W: http://www.arm.linux.org.uk/
1461S: Maintained
1462
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001463ARM/QUALCOMM SUPPORT
Andy Grossbbeaa592015-12-10 21:07:03 -06001464M: Andy Gross <andy.gross@linaro.org>
1465M: David Brown <david.brown@linaro.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001466L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001467L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001468S: Maintained
Bjorn Andersson0c4cbf92015-11-23 21:55:03 -08001469F: arch/arm/boot/dts/qcom-*.dts
1470F: arch/arm/boot/dts/qcom-*.dtsi
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001471F: arch/arm/mach-qcom/
Rob Herringe68d7c12015-12-10 17:38:23 -06001472F: arch/arm64/boot/dts/qcom/*
Andy Grossf5d3af92015-01-21 22:39:24 -06001473F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001474F: drivers/tty/serial/msm_serial.h
1475F: drivers/tty/serial/msm_serial.c
1476F: drivers/*/pm8???-*
1477F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001478F: drivers/firmware/qcom_scm.c
Andy Grossbbeaa592015-12-10 21:07:03 -06001479T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001480
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001481ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001482M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001483L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001484S: Maintained
1485
Simon Hormanb138e112015-10-02 15:42:21 +09001486ARM/RENESAS ARM64 ARCHITECTURE
1487M: Simon Horman <horms@verge.net.au>
1488M: Magnus Damm <magnus.damm@gmail.com>
Simon Horman1926e542016-02-15 10:49:47 +09001489L: linux-renesas-soc@vger.kernel.org
1490Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
Simon Hormanb138e112015-10-02 15:42:21 +09001491T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1492S: Supported
1493F: arch/arm64/boot/dts/renesas/
1494
Russell Kingd4275352009-04-16 14:05:27 +01001495ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001496M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001497L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001498W: http://www.arm.linux.org.uk/
1499S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001500F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1501F: arch/arm/include/asm/hardware/ioc.h
1502F: arch/arm/include/asm/hardware/iomd.h
1503F: arch/arm/include/asm/hardware/memc.h
1504F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001505F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001506F: drivers/net/ethernet/i825xx/ether1*
1507F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001508F: drivers/scsi/arm/
1509
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001510ARM/Rockchip SoC support
1511M: Heiko Stuebner <heiko@sntech.de>
1512L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b52014-08-20 12:31:03 +02001513L: linux-rockchip@lists.infradead.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08001514T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001515S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001516F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001517F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001518F: drivers/clk/rockchip/
1519F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001520F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001521F: drivers/*/*/*rockchip*
1522F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001523N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001524
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001525ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1526M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001527M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001528L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001529L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001530S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001531F: arch/arm/boot/dts/s3c*
Rob Herringe68d7c12015-12-10 17:38:23 -06001532F: arch/arm/boot/dts/s5p*
1533F: arch/arm/boot/dts/samsung*
Mark Brown6f0589c2013-10-08 07:18:21 +09001534F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001535F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001536F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001537F: arch/arm/mach-s3c24*/
1538F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001539F: arch/arm/mach-s5p*/
1540F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001541F: drivers/*/*s3c2410*
1542F: drivers/*/*/*s3c2410*
Pankaj Dubeybf50ddc2015-12-12 13:14:01 +05301543F: drivers/soc/samsung/*
Mark Brown40c76662011-12-02 13:54:25 +09001544F: drivers/spi/spi-s3c*
1545F: sound/soc/samsung/*
Krzysztof Kozlowskid6b9aea2015-10-24 05:07:19 +09001546F: Documentation/arm/Samsung/
1547F: Documentation/devicetree/bindings/arm/samsung/
1548F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1549F: Documentation/devicetree/bindings/power/pd-samsung.txt
Doug Anderson33d43cd2013-06-18 07:02:23 +09001550N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001551
Kyungmin Park10ffa962011-03-04 17:36:26 -08001552ARM/SAMSUNG MOBILE MACHINE SUPPORT
1553M: Kyungmin Park <kyungmin.park@samsung.com>
1554L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001556F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001557
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001558ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1559M: Kyungmin Park <kyungmin.park@samsung.com>
1560M: Kamil Debski <k.debski@samsung.com>
1561L: linux-arm-kernel@lists.infradead.org
1562L: linux-media@vger.kernel.org
1563S: Maintained
1564F: drivers/media/platform/s5p-g2d/
1565
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001566ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1567M: Kyungmin Park <kyungmin.park@samsung.com>
1568M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001569M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001570L: linux-arm-kernel@lists.infradead.org
1571L: linux-media@vger.kernel.org
1572S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001573F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001574F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001575
1576ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1577M: Kyungmin Park <kyungmin.park@samsung.com>
1578M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1579L: linux-arm-kernel@lists.infradead.org
1580L: linux-media@vger.kernel.org
1581S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001582F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001583
Andrzej Pietrasiewicz7d9f9bf2015-09-18 11:20:59 -03001584ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1585M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1586M: Jacek Anaszewski <j.anaszewski@samsung.com>
1587L: linux-arm-kernel@lists.infradead.org
1588L: linux-media@vger.kernel.org
1589S: Maintained
1590F: drivers/media/platform/s5p-jpeg/
1591
Paul Mundtd48d38e2010-02-08 12:50:24 +09001592ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001593M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001594M: Magnus Damm <magnus.damm@gmail.com>
Simon Horman4a121092016-01-18 10:04:33 +09001595L: linux-renesas-soc@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09001596Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
Simon Horman5e212592012-11-27 11:41:49 +09001597T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001598S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001599F: arch/arm/boot/dts/emev2*
1600F: arch/arm/boot/dts/r7s*
1601F: arch/arm/boot/dts/r8a*
1602F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001603F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001604F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001605F: arch/arm/mach-shmobile/
1606F: drivers/sh/
1607
Dinh Nguyen66314222012-07-18 16:07:18 -06001608ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001609M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001610S: Maintained
1611F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001612F: arch/arm/boot/dts/socfpga*
1613F: arch/arm/configs/socfpga_defconfig
Rob Herringe68d7c12015-12-10 17:38:23 -06001614F: arch/arm64/boot/dts/altera/
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001615W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001616T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001617
1618ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001619M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001620S: Maintained
1621F: drivers/clk/socfpga/
1622
Thor Thayer71bcada2014-09-03 10:27:54 -05001623ARM/SOCFPGA EDAC SUPPORT
1624M: Thor Thayer <tthayer@opensource.altera.com>
1625S: Maintained
1626F: drivers/edac/altera_edac.
1627
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001628ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001629M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1630M: Maxime Coquelin <maxime.coquelin@st.com>
1631M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001632L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1633L: kernel@stlinux.com
1634W: http://www.stlinux.com
1635S: Maintained
1636F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001637F: arch/arm/boot/dts/sti*
Lee Jonesb8e31bf2015-09-17 14:45:57 +01001638F: drivers/char/hw_random/st-rng.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001639F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001640F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001641F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001642F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001643F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001644F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001645F: drivers/phy/phy-miphy28lp.c
1646F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001647F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001648F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001649F: drivers/pinctrl/pinctrl-st.c
1650F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001651F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001652F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001653F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001654F: drivers/usb/host/ehci-st.c
1655F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001656F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001657F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001658
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001659ARM/STM32 ARCHITECTURE
1660M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662S: Maintained
1663T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1664N: stm32
1665F: drivers/clocksource/armv7m_systick.c
1666
Marc Gonzalezd6de5b02015-12-15 10:41:13 +01001667ARM/TANGO ARCHITECTURE
1668M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1669L: linux-arm-kernel@lists.infradead.org
1670S: Maintained
1671F: arch/arm/mach-tango/
1672F: arch/arm/boot/dts/tango*
1673
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001674ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001675M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001676L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001677S: Maintained
1678
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001679ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001680M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001681L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682S: Maintained
1683
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001684ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001685M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001686L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001687S: Maintained
1688
wanzongshun98ad6e32009-02-13 06:04:32 +01001689ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001690M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001691L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001692W: http://www.mcuos.com
1693S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001694F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001695F: drivers/input/keyboard/w90p910_keypad.c
1696F: drivers/input/touchscreen/w90p910_ts.c
1697F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001698F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001699F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001700F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001701F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001702F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001703F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001704
Linus Walleij54274d72010-04-04 10:58:03 +01001705ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001706M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708S: Supported
1709F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001710F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001711F: drivers/i2c/busses/i2c-stu300.c
1712F: drivers/rtc/rtc-coh901331.c
1713F: drivers/watchdog/coh901327_wdt.c
1714F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001715F: drivers/mfd/ab3100*
1716F: drivers/rtc/rtc-ab3100.c
1717F: drivers/rtc/rtc-coh901331.c
1718T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001719
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001720ARM/UNIPHIER ARCHITECTURE
1721M: Masahiro Yamada <yamada.masahiro@socionext.com>
1722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001724F: arch/arm/boot/dts/uniphier*
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001725F: arch/arm/include/asm/hardware/cache-uniphier.h
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001726F: arch/arm/mach-uniphier/
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001727F: arch/arm/mm/cache-uniphier.c
Masahiro Yamadae1a0ebc2015-11-28 02:22:31 +09001728F: arch/arm64/boot/dts/socionext/
Masahiro Yamada4b7f48d2015-12-09 15:52:59 +09001729F: drivers/bus/uniphier-system-bus.c
Masahiro Yamadadd6fd4a2015-10-23 19:51:59 +09001730F: drivers/i2c/busses/i2c-uniphier*
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001731F: drivers/pinctrl/uniphier/
1732F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001733N: uniphier
1734
Linus Walleij87572882010-12-22 09:18:29 +01001735ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001736M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001737L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738S: Maintained
1739F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001740F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001741F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001742F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001743F: drivers/mfd/abx500*
1744F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001745F: drivers/mfd/dbx500*
1746F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001747F: drivers/pinctrl/nomadik/pinctrl-ab*
1748F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001749F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001750F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001751T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001752
Ulf Hanssone93fde22013-11-12 11:41:12 +01001753ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1754M: Ulf Hansson <ulf.hansson@linaro.org>
1755L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756T: git git://git.linaro.org/people/ulfh/clk.git
1757S: Maintained
1758F: drivers/clk/ux500/
1759F: include/linux/platform_data/clk-ux500.h
1760
Pawel Moll740d93b2014-11-26 12:13:05 +00001761ARM/VERSATILE EXPRESS PLATFORM
1762M: Liviu Dudau <liviu.dudau@arm.com>
1763M: Sudeep Holla <sudeep.holla@arm.com>
1764M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1766S: Maintained
1767F: arch/arm/boot/dts/vexpress*
Rob Herringe68d7c12015-12-10 17:38:23 -06001768F: arch/arm64/boot/dts/arm/
Pawel Moll740d93b2014-11-26 12:13:05 +00001769F: arch/arm/mach-vexpress/
1770F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001771F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001772F: drivers/clk/versatile/clk-vexpress-osc.c
1773F: drivers/clocksource/versatile.c
1774
Russell Kingd4275352009-04-16 14:05:27 +01001775ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001776M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001777L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001778W: http://www.arm.linux.org.uk/
1779S: Maintained
1780F: arch/arm/vfp/
1781
Marek Vasute66b6d82010-03-26 06:51:32 +01001782ARM/VOIPAC PXA270 SUPPORT
1783M: Marek Vasut <marek.vasut@gmail.com>
1784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785S: Maintained
1786F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001787F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001788
Tony Prisk04529fe2012-07-24 04:19:37 +12001789ARM/VT8500 ARM ARCHITECTURE
1790M: Tony Prisk <linux@prisktech.co.nz>
1791L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1792S: Maintained
1793F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001794F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001795F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001796F: drivers/mmc/host/wmt-sdmmc.c
1797F: drivers/pwm/pwm-vt8500.c
1798F: drivers/rtc/rtc-vt8500.c
1799F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001800F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001801F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001802F: drivers/video/fbdev/vt8500lcdfb.*
1803F: drivers/video/fbdev/wm8505fb*
1804F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001805
Marek Vasute66b6d82010-03-26 06:51:32 +01001806ARM/ZIPIT Z2 SUPPORT
1807M: Marek Vasut <marek.vasut@gmail.com>
1808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809S: Maintained
1810F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001811F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001812
Jun Nie5ecc4b52015-04-28 17:18:06 +08001813ARM/ZTE ARCHITECTURE
1814M: Jun Nie <jun.nie@linaro.org>
1815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816S: Maintained
1817F: arch/arm/mach-zx/
1818F: drivers/clk/zte/
1819F: Documentation/devicetree/bindings/arm/zte.txt
1820F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1821
Michal Simek51f29d42013-01-21 17:41:46 +01001822ARM/ZYNQ ARCHITECTURE
1823M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001824R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001827T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001828S: Supported
1829F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001830F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001831F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001832N: zynq
1833N: xilinx
1834F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001835F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001836F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e2015-01-06 23:13:47 +05301837F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001838
Will Deacon48ec83b2015-05-27 17:25:59 +01001839ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001840M: Will Deacon <will.deacon@arm.com>
Will Deaconc8bff3a2016-02-17 14:18:00 +00001841R: Robin Murphy <robin.murphy@arm.com>
Will Deaconb8f98792013-06-24 18:31:26 +01001842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1843S: Maintained
1844F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001845F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001846F: drivers/iommu/io-pgtable-arm.c
Will Deaconc8bff3a2016-02-17 14:18:00 +00001847F: drivers/iommu/io-pgtable-arm-v7s.c
Will Deaconb8f98792013-06-24 18:31:26 +01001848
Catalin Marinas38074222012-03-05 11:49:34 +00001849ARM64 PORT (AARCH64 ARCHITECTURE)
1850M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001851M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Fengguang Wu9f273c22016-01-20 15:03:25 -08001853T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
Catalin Marinas38074222012-03-05 11:49:34 +00001854S: Maintained
1855F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001856F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001857
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001858AS3645A LED FLASH CONTROLLER DRIVER
1859M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1860L: linux-media@vger.kernel.org
1861T: git git://linuxtv.org/media_tree.git
1862S: Maintained
1863F: drivers/media/i2c/as3645a.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02001864F: include/media/i2c/as3645a.h
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001865
George Josephd58de032010-03-05 22:17:25 +01001866ASC7621 HARDWARE MONITOR DRIVER
1867M: George Joseph <george.joseph@fairview5.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07001868L: linux-hwmon@vger.kernel.org
George Josephd58de032010-03-05 22:17:25 +01001869S: Maintained
1870F: Documentation/hwmon/asc7621
1871F: drivers/hwmon/asc7621.c
1872
Corentin Charyb229ece2011-02-26 10:20:40 +01001873ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001874M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001876L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001877W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001879F: drivers/platform/x86/asus*.c
1880F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
João Paulo Rechi Vitaf6a6bba2016-01-05 11:16:53 -05001882ASUS WIRELESS RADIO CONTROL DRIVER
1883M: João Paulo Rechi Vita <jprvita@gmail.com>
1884L: platform-driver-x86@vger.kernel.org
1885S: Maintained
1886F: drivers/platform/x86/asus-wireless.c
1887
Andrew Morton953a6472008-11-06 12:53:28 -08001888ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001889R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001890W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001891S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001892F: Documentation/crypto/async-tx-api.txt
1893F: crypto/async_tx/
1894F: drivers/dma/
1895F: include/linux/dmaengine.h
1896F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001897
Wolfram Sanga1867d32009-09-18 22:45:51 +02001898AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001899M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001900L: linux-i2c@vger.kernel.org
1901S: Maintained
1902F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001903F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001904
Randy Dunlape7839f22008-10-12 16:11:45 -07001905ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001906M: "Ed L. Cashin" <ed.cashin@acm.org>
1907W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001909F: Documentation/aoe/
1910F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Alban Bedelaad7a212015-10-30 11:36:29 +01001912ATHEROS 71XX/9XXX GPIO DRIVER
1913M: Alban Bedel <albeu@free.fr>
1914W: https://github.com/AlbanBedel/linux
1915T: git git://github.com/AlbanBedel/linux
1916S: Maintained
1917F: drivers/gpio/gpio-ath79.c
1918F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1919
Joe Perches9a10a872010-12-01 09:37:55 -08001920ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001921M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001922L: linux-wireless@vger.kernel.org
1923S: Supported
1924F: drivers/net/wireless/ath/*
1925
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001926ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001927M: Jiri Slaby <jirislaby@gmail.com>
1928M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001929M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001930L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001931W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001932S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001933F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001934
Kalle Valo12e62d62011-09-13 10:21:25 +03001935ATHEROS ATH6KL WIRELESS DRIVER
1936M: Kalle Valo <kvalo@qca.qualcomm.com>
1937L: linux-wireless@vger.kernel.org
1938W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Fengguang Wu9f273c22016-01-20 15:03:25 -08001939T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001940S: Supported
1941F: drivers/net/wireless/ath/ath6kl/
1942
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001943WILOCITY WIL6210 WIRELESS DRIVER
Vladimir Kondratiev23ba8a62015-11-08 14:03:17 +02001944M: Maya Erez <qca_merez@qca.qualcomm.com>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001945L: linux-wireless@vger.kernel.org
1946L: wil6210@qca.qualcomm.com
1947S: Supported
1948W: http://wireless.kernel.org/en/users/Drivers/wil6210
1949F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001950F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001951
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001952CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1953M: Christian Lamparter <chunkeey@googlemail.com>
1954L: linux-wireless@vger.kernel.org
1955W: http://wireless.kernel.org/en/users/Drivers/carl9170
1956S: Maintained
1957F: drivers/net/wireless/ath/carl9170/
1958
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001959ATK0110 HWMON DRIVER
1960M: Luca Tettamanti <kronos.it@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07001961L: linux-hwmon@vger.kernel.org
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001962S: Maintained
1963F: drivers/hwmon/asus_atk0110.c
1964
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001965ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001966M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001969
Chris Snook7ae115b2008-09-09 03:26:57 -04001970ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001972M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001973L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001974W: http://sourceforge.net/projects/atl1
1975W: http://atl1.sourceforge.net
1976S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001977F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001980M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001981L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001982L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983W: http://linux-atm.sourceforge.net
1984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001985F: drivers/atm/
1986F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001987F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001989ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001990M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001991S: Maintained
1992F: drivers/mmc/host/atmel-mci.c
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001993
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001994ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001995M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001996S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001997F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001998
Ludovic Desrochesb9cd7a22016-01-15 09:54:18 +01001999ATMEL SAMA5D2 ADC DRIVER
2000M: Ludovic Desroches <ludovic.desroches@atmel.com>
2001L: linux-iio@vger.kernel.org
2002S: Supported
2003F: drivers/iio/adc/at91-sama5d2_adc.c
2004
Bo Shendfae90e2014-09-28 09:57:19 +08002005ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02002006M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08002007L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2008S: Supported
2009F: sound/soc/atmel
2010
Nicolas Ferreb414dc12012-03-26 15:50:36 +02002011ATMEL DMA DRIVER
2012M: Nicolas Ferre <nicolas.ferre@atmel.com>
2013L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2014S: Supported
2015F: drivers/dma/at_hdmac.c
2016F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08002017F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02002018
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02002019ATMEL XDMA DRIVER
2020M: Ludovic Desroches <ludovic.desroches@atmel.com>
2021L: linux-arm-kernel@lists.infradead.org
2022L: dmaengine@vger.kernel.org
2023S: Supported
2024F: drivers/dma/at_xdmac.c
2025
Ludovic Desroches888f2802013-03-15 05:32:57 +00002026ATMEL I2C DRIVER
2027M: Ludovic Desroches <ludovic.desroches@atmel.com>
2028L: linux-i2c@vger.kernel.org
2029S: Supported
2030F: drivers/i2c/busses/i2c-at91.c
2031
Josh Wu15515542012-03-23 17:56:29 +08002032ATMEL ISI DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01002033M: Ludovic Desroches <ludovic.desroches@atmel.com>
Josh Wu15515542012-03-23 17:56:29 +08002034L: linux-media@vger.kernel.org
2035S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08002036F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08002037F: include/media/atmel-isi.h
2038
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08002039ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002041L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08002042S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09002043F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07002044F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08002045
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002046ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002047M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002048S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07002049F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002050
Josh Wu5cbac982014-10-13 15:51:24 -07002051ATMEL NAND DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01002052M: Wenyou Yang <wenyou.yang@atmel.com>
2053M: Josh Wu <rainyfeeling@outlook.com>
Josh Wu5cbac982014-10-13 15:51:24 -07002054L: linux-mtd@lists.infradead.org
2055S: Supported
2056F: drivers/mtd/nand/atmel_nand*
2057
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02002058ATMEL SDMMC DRIVER
2059M: Ludovic Desroches <ludovic.desroches@atmel.com>
2060L: linux-mmc@vger.kernel.org
2061S: Supported
2062F: drivers/mmc/host/sdhci-of-at91.c
2063
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002064ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002065M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002066S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08002067F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002068
Bo Shen0ef09012014-09-28 09:57:18 +08002069ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01002070M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08002071L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072S: Supported
2073F: drivers/misc/atmel-ssc.c
2074F: include/linux/atmel-ssc.h
2075
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02002076ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2077M: Nicolas Ferre <nicolas.ferre@atmel.com>
2078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079S: Supported
2080F: drivers/misc/atmel_tclib.c
2081F: drivers/clocksource/tcb_clksrc.c
2082
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002083ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002084M: Nicolas Ferre <nicolas.ferre@atmel.com>
2085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002086S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07002087F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002090M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07002091L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092W: http://www.thekelleys.org.uk/atmel
2093W: http://atmelwlandriver.sourceforge.net/
2094S: Maintained
Kalle Valo30fe0f92015-11-17 19:49:20 +02002095F: drivers/net/wireless/atmel/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Nick Dyera14c0f82015-08-04 16:22:54 -07002097ATMEL MAXTOUCH DRIVER
2098M: Nick Dyer <nick.dyer@itdev.co.uk>
2099T: git git://github.com/atmel-maxtouch/linux.git
2100S: Supported
2101F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2102F: drivers/input/touchscreen/atmel_mxt_ts.c
2103F: include/linux/platform_data/atmel_mxt_ts.h
2104
Bradley Grove26780d92013-08-23 10:35:45 -04002105ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002106M: Bradley Grove <linuxdrivers@attotech.com>
2107L: linux-scsi@vger.kernel.org
2108W: http://www.attotech.com
2109S: Supported
2110F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04002111
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02002112ATUSB IEEE 802.15.4 RADIO DRIVER
2113M: Stefan Schmidt <stefan@osg.samsung.com>
2114L: linux-wpan@vger.kernel.org
2115S: Maintained
2116F: drivers/net/ieee802154/atusb.c
2117F: drivers/net/ieee802154/atusb.h
2118F: drivers/net/ieee802154/at86rf230.h
2119
Chris Wrighta92b7b82005-07-07 18:12:23 -07002120AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04002121M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002122M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04002123L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01002124W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04002125T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07002126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002128F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07002129F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07002130
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002131AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002133W: http://miguelojeda.es/auxdisplay.htm
2134W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002136F: drivers/auxdisplay/
2137F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002138
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002139AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002140M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2141M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002142W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08002143W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002144W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002146F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002147
2148AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002149M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2150M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002152F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002157W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002159F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002160F: include/net/ax25.h
2161F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002163AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002164M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002165L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002166W: https://linuxtv.org
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002167T: git git://linuxtv.org/media_tree.git
2168S: Maintained
2169F: drivers/media/usb/dvb-usb-v2/az6007.c
2170
Hans Verkuil67773762012-11-23 07:09:23 -03002171AZTECH FM RADIO RECEIVER DRIVER
2172M: Hans Verkuil <hverkuil@xs4all.nl>
2173L: linux-media@vger.kernel.org
2174T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002175W: https://linuxtv.org
Hans Verkuil67773762012-11-23 07:09:23 -03002176S: Maintained
2177F: drivers/media/radio/radio-aztech*
2178
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002179B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002180L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002181L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002182W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002183S: Odd Fixes
Kalle Valo58619b12015-11-17 19:49:23 +02002184F: drivers/net/wireless/broadcom/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002185
2186B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002188L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002189L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002190W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002191S: Maintained
Kalle Valo423e3ce2015-11-17 19:49:26 +02002192F: drivers/net/wireless/broadcom/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002193
Richard Purdie300abeb2007-02-07 22:21:07 +00002194BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002195M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002196M: Lee Jones <lee.jones@linaro.org>
Fengguang Wu9f273c22016-01-20 15:03:25 -08002197T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
Richard Purdie300abeb2007-02-07 22:21:07 +00002198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002199F: drivers/video/backlight/
2200F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002201
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002202BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002203M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002204M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartullica8e9402015-11-07 19:20:34 +01002205M: Antonio Quartulli <a@unstable.cc>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002206L: b.a.t.m.a.n@lists.open-mesh.org
Sven Eckelmann7b5e7392015-12-06 16:15:07 +01002207W: https://www.open-mesh.org/
Sven Eckelmann8b823172016-02-21 16:40:55 +01002208Q: https://patchwork.open-mesh.org/project/batman/list/
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002209S: Maintained
2210F: net/batman-adv/
2211
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002212BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002213M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002214L: linux-hams@vger.kernel.org
2215W: http://www.baycom.org/~tom/ham/ham.html
2216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002218
Kent Overstreetcafe5632013-03-23 16:11:31 -07002219BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002220M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002221L: linux-bcache@vger.kernel.org
2222W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002223S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002224F: drivers/md/bcache/
2225
Hans Verkuil04bd8442015-06-08 09:26:20 -03002226BDISP ST MEDIA DRIVER
2227M: Fabien Dessenne <fabien.dessenne@st.com>
2228L: linux-media@vger.kernel.org
2229T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002230W: https://linuxtv.org
Hans Verkuil04bd8442015-06-08 09:26:20 -03002231S: Supported
2232F: drivers/media/platform/sti/bdisp
2233
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002234BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002235S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002236F: Documentation/filesystems/befs.txt
2237F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002238
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002239BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002240M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2241L: netdev@vger.kernel.org
2242S: Maintained
2243F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002244
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002245BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002248F: Documentation/filesystems/bfs.txt
2249F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002250F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002251
Bryan Wu1394f032007-05-06 14:50:22 -07002252BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002253M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002254L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002255T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002256W: http://blackfin.uclinux.org
2257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002258F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002259
Bryan Wue190d6b2007-07-17 14:43:44 +08002260BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002261L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002262W: http://blackfin.uclinux.org
2263S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002264F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002265
Mike Frysinger566da5b2007-06-11 15:31:30 +08002266BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002267L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002268W: http://blackfin.uclinux.org
2269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002270F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002271
Mike Frysinger936ed492010-03-10 15:20:38 -08002272BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002273M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002274L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002275W: http://blackfin.uclinux.org
2276S: Supported
2277F: drivers/mmc/host/bfin_sdh.c
2278
Bryan Wu1394f032007-05-06 14:50:22 -07002279BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002280M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002281L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002282W: http://blackfin.uclinux.org
2283S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002284F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002285
Bryan Wu1e6d3202007-07-15 02:50:02 +08002286BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002287L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002288W: http://blackfin.uclinux.org
2289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002290F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002291
Bryan Wud24ecfc2007-05-01 23:26:32 +02002292BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002293M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002294L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002295W: http://blackfin.uclinux.org/
2296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002297F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002298
Scott Jiang1e204372013-01-18 17:09:47 -03002299BLACKFIN MEDIA DRIVER
2300M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002301L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002302W: http://blackfin.uclinux.org/
2303S: Supported
2304F: drivers/media/platform/blackfin/
2305F: drivers/media/i2c/adv7183*
2306F: drivers/media/i2c/vs6624*
2307
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002308BLINKM RGB LED DRIVER
2309M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2310S: Maintained
2311F: drivers/leds/leds-blinkm.c
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002314M: Jens Axboe <axboe@kernel.dk>
Jens Axboe82c426e2015-11-05 13:29:25 -07002315L: linux-block@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002316T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002318F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002319F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Joern Engel2b54aae2008-02-06 01:38:02 -08002321BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002322M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002323L: linux-mtd@lists.infradead.org
2324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002325F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002326
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002327BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002328M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002329M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002330M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002331L: linux-bluetooth@vger.kernel.org
2332W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002333T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2334T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002336F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002339M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002340M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002341M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002342L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002343W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002344T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2345T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002347F: net/bluetooth/
2348F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002351M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002352M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002353M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002354L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002355W: http://sourceforge.net/projects/bonding/
2356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002357F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002358F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002360BPF (Safe dynamic programs and tools)
2361M: Alexei Starovoitov <ast@kernel.org>
2362L: netdev@vger.kernel.org
2363L: linux-kernel@vger.kernel.org
2364S: Supported
2365F: kernel/bpf/
2366
Gary Zambrano39105892006-06-22 17:26:20 -07002367BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002368M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002369L: netdev@vger.kernel.org
2370S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002371F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002372
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002373BROADCOM GENET ETHERNET DRIVER
2374M: Florian Fainelli <f.fainelli@gmail.com>
2375L: netdev@vger.kernel.org
2376S: Supported
2377F: drivers/net/ethernet/broadcom/genet/
2378
Michael Chan948c51e2006-06-04 02:51:39 -07002379BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002380M: Sony Chacko <sony.chacko@qlogic.com>
2381M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002382L: netdev@vger.kernel.org
2383S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002384F: drivers/net/ethernet/broadcom/bnx2.*
2385F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002386
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002387BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002388M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002389L: netdev@vger.kernel.org
2390S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002391F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002392
Matt Porter90f4c592014-05-06 12:09:45 -04002393BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002394M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002395M: Ray Jui <rjui@broadcom.com>
2396M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002397L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002398T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002399S: Maintained
2400F: arch/arm/mach-bcm/
2401F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002402F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002403F: arch/arm/boot/dts/bcm281*
Rob Herringe68d7c12015-12-10 17:38:23 -06002404F: arch/arm64/boot/dts/broadcom/
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002405F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002406F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002407F: drivers/clocksource/bcm_kona_timer.c
2408
Scott Branden9209bec2014-10-16 21:57:16 -06002409BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002410M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002411M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e882015-07-22 12:55:36 -07002412M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002413L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002414L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002415T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002416S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002417N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002418
Rafał Miłecki5564f092015-05-29 07:39:26 +02002419BROADCOM BCM47XX MIPS ARCHITECTURE
2420M: Hauke Mehrtens <hauke@hauke-m.de>
2421M: Rafał Miłecki <zajec5@gmail.com>
2422L: linux-mips@linux-mips.org
2423S: Maintained
2424F: arch/mips/bcm47xx/*
2425F: arch/mips/include/asm/mach-bcm47xx/*
2426
Scott Branden9209bec2014-10-16 21:57:16 -06002427BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002428M: Hauke Mehrtens <hauke@hauke-m.de>
2429L: linux-arm-kernel@lists.infradead.org
2430S: Maintained
2431F: arch/arm/mach-bcm/bcm_5301x.c
2432F: arch/arm/boot/dts/bcm5301x.dtsi
2433F: arch/arm/boot/dts/bcm470*
2434
Florian Fainellie076e962014-03-04 18:14:58 -08002435BROADCOM BCM63XX ARM ARCHITECTURE
2436M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainelli20de8232016-01-31 17:41:13 -08002437L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438L: bcm-kernel-feedback-list@broadcom.com
2439T: git git://github.com/broadcom/stblinux.git
Florian Fainellie076e962014-03-04 18:14:58 -08002440S: Maintained
2441F: arch/arm/mach-bcm/bcm63xx.c
2442F: arch/arm/include/debug/bcm63xx.S
2443
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002444BROADCOM BCM63XX/BCM33XX UDC DRIVER
2445M: Kevin Cernekee <cernekee@gmail.com>
2446L: linux-usb@vger.kernel.org
2447S: Maintained
2448F: drivers/usb/gadget/udc/bcm63xx_udc.*
2449
Brian Norris2df94fd2014-07-14 18:06:03 -07002450BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002451M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002452M: Gregory Fong <gregory.0xf0@gmail.com>
2453M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002454L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainelli1e65a342015-11-18 15:19:57 -08002455L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002456T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002457S: Maintained
2458F: arch/arm/mach-bcm/*brcmstb*
2459F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002460F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002461N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002462
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002463BROADCOM BMIPS MIPS ARCHITECTURE
2464M: Kevin Cernekee <cernekee@gmail.com>
2465M: Florian Fainelli <f.fainelli@gmail.com>
2466L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002467T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002468S: Maintained
2469F: arch/mips/bmips/*
2470F: arch/mips/include/asm/mach-bmips/*
2471F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002472F: arch/mips/boot/dts/brcm/bcm*.dts*
Simon Arlottc7c42ec2015-11-22 14:30:14 +00002473F: drivers/irqchip/irq-bcm63*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002474F: drivers/irqchip/irq-bcm7*
2475F: drivers/irqchip/irq-brcmstb*
Simon Arlott3271e612015-12-13 22:45:30 +00002476F: include/linux/bcm963xx_nvram.h
Simon Arlott8fce60b2015-12-13 22:46:59 +00002477F: include/linux/bcm963xx_tag.h
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002478
Michael Chan948c51e2006-06-04 02:51:39 -07002479BROADCOM TG3 GIGABIT ETHERNET DRIVER
Siva Reddy Kallamccad0992016-02-04 15:20:47 +05302480M: Siva Reddy Kallam <siva.kallam@broadcom.com>
Prashant Sreedharan23629472014-06-27 16:21:50 -07002481M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002483L: netdev@vger.kernel.org
2484S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002485F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002486
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002487BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2488M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002489M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002490M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002491M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002492L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002493L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002494S: Supported
Kalle Valo05491d22015-11-17 19:52:05 +02002495F: drivers/net/wireless/broadcom/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002496
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002497BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002498M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002499L: linux-scsi@vger.kernel.org
2500S: Supported
2501F: drivers/scsi/bnx2fc/
2502
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002503BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002504M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002505L: linux-scsi@vger.kernel.org
2506S: Supported
2507F: drivers/scsi/bnx2i/
2508
Jon Mason63f37dd2015-08-26 18:35:30 -04002509BROADCOM IPROC ARM ARCHITECTURE
Scott Branden36c02372014-09-12 16:50:56 -07002510M: Ray Jui <rjui@broadcom.com>
2511M: Scott Branden <sbranden@broadcom.com>
Jon Mason63f37dd2015-08-26 18:35:30 -04002512M: Jon Mason <jonmason@broadcom.com>
Scott Branden36c02372014-09-12 16:50:56 -07002513L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002515T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002516S: Maintained
2517N: iproc
2518N: cygnus
Jon Mason63f37dd2015-08-26 18:35:30 -04002519N: nsp
Scott Branden36c02372014-09-12 16:50:56 -07002520N: bcm9113*
2521N: bcm9583*
Jon Mason63f37dd2015-08-26 18:35:30 -04002522N: bcm9585*
2523N: bcm9586*
2524N: bcm988312
Scott Branden36c02372014-09-12 16:50:56 -07002525N: bcm113*
Jon Mason63f37dd2015-08-26 18:35:30 -04002526N: bcm583*
2527N: bcm585*
2528N: bcm586*
2529N: bcm88312
Scott Branden36c02372014-09-12 16:50:56 -07002530
Gregory Fong3b0213d2015-05-28 19:14:05 -07002531BROADCOM BRCMSTB GPIO DRIVER
2532M: Gregory Fong <gregory.0xf0@gmail.com>
Florian Fainelli9c2abe22015-11-18 15:22:13 -08002533L: bcm-kernel-feedback-list@broadcom.com
Gregory Fong3b0213d2015-05-28 19:14:05 -07002534S: Supported
2535F: drivers/gpio/gpio-brcmstb.c
2536F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2537
Markus Mayer7b7f5882014-02-12 15:42:27 -08002538BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002539M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002540L: bcm-kernel-feedback-list@broadcom.com
2541S: Supported
2542F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002543F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002544
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002545BROADCOM NVRAM DRIVER
2546M: Rafał Miłecki <zajec5@gmail.com>
2547L: linux-mips@linux-mips.org
2548S: Maintained
2549F: drivers/firmware/broadcom/*
2550
Brian Norris02787da2015-05-12 17:16:50 -07002551BROADCOM STB NAND FLASH DRIVER
2552M: Brian Norris <computersforpeace@gmail.com>
Kamal Dasu1ddaa022015-11-17 13:50:08 -05002553M: Kamal Dasu <kdasu.kdev@gmail.com>
Brian Norris02787da2015-05-12 17:16:50 -07002554L: linux-mtd@lists.infradead.org
Florian Fainelli12857342015-11-16 15:34:15 -08002555L: bcm-kernel-feedback-list@broadcom.com
Brian Norris02787da2015-05-12 17:16:50 -07002556S: Maintained
2557F: drivers/mtd/nand/brcmnand/
2558
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002559BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2560M: Rafał Miłecki <zajec5@gmail.com>
2561L: linux-wireless@vger.kernel.org
2562S: Maintained
2563F: drivers/bcma/
2564F: include/linux/bcma/
2565
Florian Fainellib8302202014-04-24 18:09:00 -07002566BROADCOM SYSTEMPORT ETHERNET DRIVER
2567M: Florian Fainelli <f.fainelli@gmail.com>
2568L: netdev@vger.kernel.org
2569S: Supported
2570F: drivers/net/ethernet/broadcom/bcmsysport.*
2571
Jayachandran C42515e62016-02-20 19:49:24 +05302572BROADCOM VULCAN ARM64 SOC
2573M: Jayachandran C. <jchandra@broadcom.com>
2574L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2575L: bcm-kernel-feedback-list@broadcom.com
2576S: Maintained
2577F: arch/arm64/boot/dts/broadcom/vulcan*
2578
Jing Huang7725ccf2009-09-23 17:46:15 -07002579BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002580M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2581M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002582L: linux-scsi@vger.kernel.org
2583S: Supported
2584F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002585
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002586BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002587M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002588L: netdev@vger.kernel.org
2589S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002590F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002591
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002592BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002593M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002594L: linux-scsi@vger.kernel.org
2595S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002596F: block/bsg.c
2597F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002598F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002599
Clemens Ladischaf399172011-01-10 16:32:54 +01002600BT87X AUDIO DRIVER
2601M: Clemens Ladisch <clemens@ladisch.de>
2602L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2603T: git git://git.alsa-project.org/alsa-kernel.git
2604S: Maintained
2605F: Documentation/sound/alsa/Bt87x.txt
2606F: sound/pci/bt87x.c
2607
Michael Bueschff1d5c22008-07-25 01:46:10 -07002608BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002609M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002610W: http://bu3sch.de/btgpio.php
2611S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002612F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002613
Joe Percheseb1eb042009-01-21 10:49:16 -05002614BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002615M: Chris Mason <clm@fb.com>
2616M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002617M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002618L: linux-btrfs@vger.kernel.org
2619W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002620Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002621T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002623F: Documentation/filesystems/btrfs.txt
2624F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002627M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002628L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002629W: https://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002630T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002631S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002632F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002633F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Khalid Aziz1f349232013-06-25 09:57:27 -06002635BUSLOGIC SCSI DRIVER
2636M: Khalid Aziz <khalid@gonehiking.org>
2637L: linux-scsi@vger.kernel.org
2638S: Maintained
2639F: drivers/scsi/BusLogic.*
2640F: drivers/scsi/FlashPoint.*
2641
Clemens Ladischaf399172011-01-10 16:32:54 +01002642C-MEDIA CMI8788 DRIVER
2643M: Clemens Ladisch <clemens@ladisch.de>
2644L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2645T: git git://git.alsa-project.org/alsa-kernel.git
2646S: Maintained
2647F: sound/pci/oxygen/
2648
Mark Salter21413552011-10-04 11:21:42 -04002649C6X ARCHITECTURE
2650M: Mark Salter <msalter@redhat.com>
2651M: Aurelien Jacquiot <a-jacquiot@ti.com>
2652L: linux-c6x-dev@linux-c6x.org
2653W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2654S: Maintained
2655F: arch/c6x/
2656
David Howellsa5432f52009-04-20 15:46:45 +01002657CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00002659L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01002660S: Supported
2661F: Documentation/filesystems/caching/cachefiles.txt
2662F: fs/cachefiles/
2663
Hans Verkuilc815ca32012-11-23 07:05:54 -03002664CADET FM/AM RADIO RECEIVER DRIVER
2665M: Hans Verkuil <hverkuil@xs4all.nl>
2666L: linux-media@vger.kernel.org
2667T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002668W: https://linuxtv.org
Hans Verkuilc815ca32012-11-23 07:05:54 -03002669S: Maintained
2670F: drivers/media/radio/radio-cadet*
2671
Jonathan Corbet77d51402007-03-22 19:44:17 -03002672CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002673M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002674L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002675T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002677F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002678F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002679
Joe Perches201b6ba2010-09-07 20:33:24 +00002680CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002681M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002682L: netdev@vger.kernel.org
2683S: Supported
2684F: Documentation/networking/caif/
2685F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002686F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002687F: include/net/caif/
2688F: net/caif/
2689
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002690CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002691M: Muli Ben-Yehuda <muli@il.ibm.com>
2692M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002693L: discuss@x86-64.org
2694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002695F: arch/x86/kernel/pci-calgary_64.c
2696F: arch/x86/kernel/tce_64.c
2697F: arch/x86/include/asm/calgary.h
2698F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002699
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002700CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002701M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002702M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002703L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002704W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002705T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2706T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002707S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002708F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002709F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002710F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002711F: include/uapi/linux/can.h
2712F: include/uapi/linux/can/bcm.h
2713F: include/uapi/linux/can/raw.h
2714F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002715
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002716CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002718M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002719L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002720W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002721T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2722T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002723S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002724F: drivers/net/can/
2725F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002726F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002727F: include/uapi/linux/can/error.h
2728F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002729
James Morris95d16c72012-03-16 12:05:48 +11002730CAPABILITIES
2731M: Serge Hallyn <serge.hallyn@canonical.com>
2732L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002733S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002734F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002735F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002736F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002737F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002738
Kevin Tsaib84894c2015-01-15 17:41:04 -08002739CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2740M: Kevin Tsai <ktsai@capellamicro.com>
2741S: Maintained
2742F: drivers/iio/light/cm*
2743F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2744
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002745CAVIUM LIQUIDIO NETWORK DRIVER
2746M: Derek Chickles <derek.chickles@caviumnetworks.com>
2747M: Satanand Burla <satananda.burla@caviumnetworks.com>
2748M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2749M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2750L: netdev@vger.kernel.org
2751W: http://www.cavium.com
2752S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002753F: drivers/net/ethernet/cavium/liquidio/
2754
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302755CC2520 IEEE-802.15.4 RADIO DRIVER
2756M: Varka Bhadram <varkabhadram@gmail.com>
2757L: linux-wpan@vger.kernel.org
2758S: Maintained
2759F: drivers/net/ieee802154/cc2520.c
2760F: include/linux/spi/cc2520.h
2761F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2762
Arnd Bergmannb8154542008-05-16 11:10:59 +02002763CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002764M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002765L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002766W: http://www.ibm.com/developerworks/power/cell/
2767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002768F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002769F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002770F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002771F: arch/powerpc/oprofile/*cell*
2772F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002773
Sage Weil398ecff52015-07-09 11:46:14 -04002774CEPH COMMON CODE (LIBCEPH)
2775M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002776M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002777M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002778L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002779W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002780T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002781T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002782S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002783F: net/ceph/
2784F: include/linux/ceph/
2785F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002786
Sage Weil398ecff52015-07-09 11:46:14 -04002787CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2788M: "Yan, Zheng" <zyan@redhat.com>
2789M: Sage Weil <sage@redhat.com>
2790M: Ilya Dryomov <idryomov@gmail.com>
2791L: ceph-devel@vger.kernel.org
2792W: http://ceph.com/
2793T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002794T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002795S: Supported
2796F: Documentation/filesystems/ceph.txt
2797F: fs/ceph/
2798
David Howellscfc411e2015-08-14 15:20:41 +01002799CERTIFICATE HANDLING:
2800M: David Howells <dhowells@redhat.com>
2801M: David Woodhouse <dwmw2@infradead.org>
David Howellsd8d80382016-01-14 15:50:20 +00002802L: keyrings@vger.kernel.org
David Howellscfc411e2015-08-14 15:20:41 +01002803S: Maintained
2804F: Documentation/module-signing.txt
2805F: certs/
David Howellsd8d80382016-01-14 15:50:20 +00002806F: scripts/sign-file.c
David Howellscfc411e2015-08-14 15:20:41 +01002807F: scripts/extract-cert.c
2808
David Vrabel18332a82008-09-17 16:34:44 +01002809CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002810L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002811S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002812F: Documentation/usb/WUSB-Design-overview.txt
2813F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002814F: drivers/usb/host/hwa-hc.c
2815F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002816F: drivers/usb/wusbcore/
2817F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002818
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002819CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002820M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002821W: http://miguelojeda.es/auxdisplay.htm
2822W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002824F: drivers/auxdisplay/cfag12864b.c
2825F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002826
2827CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002828M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002829W: http://miguelojeda.es/auxdisplay.htm
2830W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002832F: drivers/auxdisplay/cfag12864bfb.c
2833F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002834
Johannes Berg704232c2007-04-23 12:20:05 -07002835CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002837L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002838W: http://wireless.kernel.org/
2839T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2840T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002841S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002842F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002843F: include/net/cfg80211.h
2844F: net/wireless/*
2845X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002846
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002847CHAR and MISC DRIVERS
2848M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002849M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002850T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002851S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002852F: drivers/char/*
2853F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002854F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002855
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002856CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002857M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002858M: Joe Perches <joe@perches.com>
2859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002860F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002861
Harry Weif8407f262011-02-25 14:44:15 -08002862CHINESE DOCUMENTATION
2863M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002864L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002865L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2866S: Maintained
2867F: Documentation/zh_CN/
2868
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002869CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Peter Chen60d77b3d2015-12-25 15:54:32 +08002870M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +08002871T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002872L: linux-usb@vger.kernel.org
2873S: Maintained
2874F: drivers/usb/chipidea/
2875
Hans de Goedea93ad652015-03-21 20:40:45 -07002876CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2877M: Hans de Goede <hdegoede@redhat.com>
2878L: linux-input@vger.kernel.org
2879S: Maintained
2880F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2881F: drivers/input/touchscreen/chipone_icn8318.c
2882
Olof Johanssonab043102013-11-07 14:25:45 -08002883CHROME HARDWARE PLATFORM SUPPORT
2884M: Olof Johansson <olof@lixom.net>
2885S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08002886T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
Olof Johanssonab043102013-11-07 14:25:45 -08002887F: drivers/platform/chrome/
2888
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002889CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002890M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302891M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302892M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002893M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002894S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002895F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002896
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002897CISCO VIC LOW LATENCY NIC DRIVER
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002898M: Christian Benvenuti <benve@cisco.com>
2899M: Dave Goodell <dgoodell@cisco.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08002900S: Supported
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002901F: drivers/infiniband/hw/usnic/
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002902
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002903CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002904M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002905L: netdev@vger.kernel.org
2906S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002907F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002908
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002909CIRRUS LOGIC AUDIO CODEC DRIVERS
2910M: Brian Austin <brian.austin@cirrus.com>
2911M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2912L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2913S: Maintained
2914F: sound/soc/codecs/cs*
2915
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002916CLEANCACHE API
2917M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2918L: linux-kernel@vger.kernel.org
2919S: Maintained
2920F: mm/cleancache.c
2921F: include/linux/cleancache.h
2922
Russell Kingd4275352009-04-16 14:05:27 +01002923CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002924M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002925L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002926S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002927F: include/linux/clk.h
2928
John Stultz9222d242013-07-16 16:45:31 +02002929CLOCKSOURCE, CLOCKEVENT DRIVERS
2930M: Daniel Lezcano <daniel.lezcano@linaro.org>
2931M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002932L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002933T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2934S: Supported
2935F: drivers/clocksource
2936
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002937CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002938M: Hiral Patel <hiralpat@cisco.com>
2939M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002940M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002941L: linux-scsi@vger.kernel.org
2942S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002943F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002944
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002945CISCO SCSI HBA DRIVER
2946M: Narsimhulu Musini <nmusini@cisco.com>
2947M: Sesidhar Baddela <sebaddel@cisco.com>
2948L: linux-scsi@vger.kernel.org
2949S: Supported
2950F: drivers/scsi/snic/
2951
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002952CMPC ACPI DRIVER
2953M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2954M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002955L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002956S: Supported
2957F: drivers/platform/x86/classmate-laptop.c
2958
Hans Verkuil85756a02015-05-12 08:52:21 -03002959COBALT MEDIA DRIVER
2960M: Hans Verkuil <hans.verkuil@cisco.com>
2961L: linux-media@vger.kernel.org
2962T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002963W: https://linuxtv.org
Hans Verkuil85756a02015-05-12 08:52:21 -03002964S: Supported
2965F: drivers/media/pci/cobalt/
2966
Nicolas Palix74425ee2010-06-06 17:15:01 +02002967COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002968M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002969M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002970M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002971M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002972L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002973T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002974W: http://coccinelle.lip6.fr/
2975S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002976F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002977F: scripts/coccinelle/
2978F: scripts/coccicheck
2979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002981M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982M: coda@cs.cmu.edu
2983L: codalist@coda.cs.cmu.edu
2984W: http://www.coda.cs.cmu.edu/
2985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002986F: Documentation/filesystems/coda.txt
2987F: fs/coda/
2988F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002989F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Philipp Zabel0b142612014-11-04 07:26:35 -03002991CODA V4L2 MEM2MEM DRIVER
2992M: Philipp Zabel <p.zabel@pengutronix.de>
2993L: linux-media@vger.kernel.org
2994S: Maintained
2995F: Documentation/devicetree/bindings/media/coda.txt
2996F: drivers/media/platform/coda/
2997
Mike Turquette7704add2012-05-02 18:37:45 -07002998COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002999M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08003000M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00003001L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08003002T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07003003S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06003004F: drivers/clk/
3005X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07003006F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06003007F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07003008
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003009COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07003010M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04003011L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08003012L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003013W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08003014T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003015S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07003016F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07003017F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07003020M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07003021L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07003022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003023F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07003027L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07003028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
3031COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003032M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07003033L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07003034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003035F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
Cezary Jackiewicz54115522008-06-09 16:22:22 -07003037COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003038M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003039L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07003040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003041F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07003042
Simon Arlott949be0f2007-03-06 02:47:46 -08003043CONEXANT ACCESSRUNNER USB DRIVER
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02003044L: accessrunner-general@lists.sourceforge.net
3045W: http://accessrunner.sourceforge.net/
Simon Arlott44243ef2015-11-15 17:12:08 +00003046S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003047F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08003048
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003049CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08003050M: Joel Becker <jlbec@evilplan.org>
Christoph Hellwig1609bac2016-01-04 12:33:13 +01003051M: Christoph Hellwig <hch@lst.de>
3052T: git git://git.infradead.org/users/hch/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003054F: fs/configfs/
3055F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003056
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07003057CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07003058M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07003059L: netdev@vger.kernel.org
3060S: Maintained
3061F: drivers/connector/
3062
Tejun Heoa3e33542014-05-13 15:49:58 -04003063CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08003064M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07003065M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05003066M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08003067L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08003068T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003069S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04003070F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07003071F: include/linux/cgroup*
3072F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04003073
3074CONTROL GROUP - CPUSET
3075M: Li Zefan <lizefan@huawei.com>
3076L: cgroups@vger.kernel.org
3077W: http://www.bullopensource.org/cpuset/
3078W: http://oss.sgi.com/projects/cpusets/
3079T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3080S: Maintained
3081F: Documentation/cgroups/cpusets.txt
3082F: include/linux/cpuset.h
3083F: kernel/cpuset.c
3084
3085CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3086M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07003087M: Michal Hocko <mhocko@kernel.org>
Johannes Weinered0f1e22015-12-11 13:40:35 -08003088M: Vladimir Davydov <vdavydov@virtuozzo.com>
Tejun Heoa3e33542014-05-13 15:49:58 -04003089L: cgroups@vger.kernel.org
3090L: linux-mm@kvack.org
3091S: Maintained
3092F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08003093F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003094
Rudolf Marekbebe4672007-05-08 17:22:02 +02003095CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02003096M: Fenghua Yu <fenghua.yu@intel.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07003097L: linux-hwmon@vger.kernel.org
Rudolf Marekbebe4672007-05-08 17:22:02 +02003098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003099F: Documentation/hwmon/coretemp
3100F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104W: http://www.fi.muni.cz/~kas/cosa/
3105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Florian Fainelli4371ee32009-06-01 02:43:17 -07003108CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003109M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07003110L: netdev@vger.kernel.org
3111S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07003112F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07003113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003115M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00003116M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02003117L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05303119T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3120T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/cpufreq/
3122F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003124CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3125M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00003126M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003127L: linux-pm@vger.kernel.org
3128W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3129S: Maintained
3130F: drivers/cpufreq/arm_big_little.h
3131F: drivers/cpufreq/arm_big_little.c
3132F: drivers/cpufreq/arm_big_little_dt.c
3133
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003134CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08003135M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3136M: Daniel Lezcano <daniel.lezcano@linaro.org>
3137L: linux-pm@vger.kernel.org
3138L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08003139T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08003140S: Maintained
3141F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003142
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01003143CPUIDLE DRIVER - ARM EXYNOS
3144M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3145M: Daniel Lezcano <daniel.lezcano@linaro.org>
3146M: Kukjin Kim <kgene@kernel.org>
3147L: linux-pm@vger.kernel.org
3148L: linux-samsung-soc@vger.kernel.org
3149S: Supported
3150F: drivers/cpuidle/cpuidle-exynos.c
3151F: arch/arm/mach-exynos/pm.c
3152
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003153CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003154M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003155M: Daniel Lezcano <daniel.lezcano@linaro.org>
3156L: linux-pm@vger.kernel.org
3157S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08003158T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003159F: drivers/cpuidle/*
3160F: include/linux/cpuidle.h
3161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003163M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003165F: arch/x86/kernel/cpuid.c
3166F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003168CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003169M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003170L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003171S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003172F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003173
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003175W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003176S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003177F: Documentation/filesystems/cramfs.txt
3178F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: Mikael Starvik <starvik@axis.com>
3182M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003183L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184W: http://developer.axis.com
Fengguang Wu9f273c22016-01-20 15:03:25 -08003185T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003187F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003188F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
3190CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003191M: Herbert Xu <herbert@gondor.apana.org.au>
3192M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193L: linux-crypto@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08003194T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
Joe Perches54e58812009-04-07 21:08:10 -07003195T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003197F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003198F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003199F: arch/*/crypto/
3200F: crypto/
3201F: drivers/crypto/
3202F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Neil Horman5b07bd52009-02-05 16:03:04 +11003204CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003205M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003206L: linux-crypto@vger.kernel.org
3207S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003208F: crypto/ansi_cprng.c
3209F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003210
Hans Verkuilfc279cc2015-11-30 18:05:54 -02003211CS3308 MEDIA DRIVER
3212M: Hans Verkuil <hverkuil@xs4all.nl>
3213L: linux-media@vger.kernel.org
3214T: git git://linuxtv.org/media_tree.git
3215W: http://linuxtv.org
3216S: Odd Fixes
3217F: drivers/media/i2c/cs3308.c
3218F: drivers/media/i2c/cs3308.h
3219
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003220CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003221M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003223F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003224
Solomon Peachya910e4a2013-05-24 20:04:38 -04003225CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003226M: Solomon Peachy <pizza@shaftnet.org>
3227S: Maintained
Kalle Valo560424e2015-11-17 20:09:02 +02003228F: drivers/net/wireless/st/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003229
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003230CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003231M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003232L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003233L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003234T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003235W: https://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003236W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003238F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003239F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003240F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03003241
Hans Verkuil3f101d92012-11-23 07:00:02 -03003242CX2341X MPEG ENCODER HELPER MODULE
3243M: Hans Verkuil <hverkuil@xs4all.nl>
3244L: linux-media@vger.kernel.org
3245T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003246W: https://linuxtv.org
Hans Verkuil3f101d92012-11-23 07:00:02 -03003247S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003248F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003249F: include/media/cx2341x*
3250
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003251CX24120 MEDIA DRIVER
3252M: Jemma Denson <jdenson@gmail.com>
3253M: Patrick Boettcher <patrick.boettcher@posteo.de>
3254L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003255W: https://linuxtv.org
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003256Q: http://patchwork.linuxtv.org/project/linux-media/list/
3257S: Maintained
3258F: drivers/media/dvb-frontends/cx24120*
3259
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003260CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003261M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003262L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003263W: https://linuxtv.org
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003264T: git git://linuxtv.org/media_tree.git
3265S: Odd fixes
3266F: Documentation/video4linux/cx88/
3267F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003268
Antti Palosaari91952bc2012-10-01 12:28:46 -03003269CXD2820R MEDIA DRIVER
3270M: Antti Palosaari <crope@iki.fi>
3271L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003272W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003273W: http://palosaari.fi/linux/
3274Q: http://patchwork.linuxtv.org/project/linux-media/list/
3275T: git git://linuxtv.org/anttip/media_tree.git
3276S: Maintained
3277F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003278
Steve Wisee5ec3782008-05-20 14:06:33 -07003279CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003280M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003281L: netdev@vger.kernel.org
3282W: http://www.chelsio.com
3283S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003284F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003285
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003286CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003287M: Karen Xie <kxie@chelsio.com>
3288L: linux-scsi@vger.kernel.org
3289W: http://www.chelsio.com
3290S: Supported
3291F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003292
Steve Wisee5ec3782008-05-20 14:06:33 -07003293CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003295L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003296W: http://www.openfabrics.org
3297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003298F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003299
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003300CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003301M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003302L: netdev@vger.kernel.org
3303W: http://www.chelsio.com
3304S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003305F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003306
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003307CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003308M: Karen Xie <kxie@chelsio.com>
3309L: linux-scsi@vger.kernel.org
3310W: http://www.chelsio.com
3311S: Supported
3312F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003313
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003314CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3315M: Steve Wise <swise@chelsio.com>
3316L: linux-rdma@vger.kernel.org
3317W: http://www.openfabrics.org
3318S: Supported
3319F: drivers/infiniband/hw/cxgb4/
3320
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003321CXGB4VF ETHERNET DRIVER (CXGB4VF)
3322M: Casey Leedom <leedom@chelsio.com>
3323L: netdev@vger.kernel.org
3324W: http://www.chelsio.com
3325S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003326F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003327
Ian Munsiea9282d02014-10-08 19:55:05 +11003328CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3329M: Ian Munsie <imunsie@au1.ibm.com>
3330M: Michael Neuling <mikey@neuling.org>
3331L: linuxppc-dev@lists.ozlabs.org
3332S: Supported
3333F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003334F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003335F: include/uapi/misc/cxl.h
3336F: Documentation/powerpc/cxl.txt
3337F: Documentation/powerpc/cxl.txt
3338F: Documentation/ABI/testing/sysfs-class-cxl
3339
Matthew R. Ochs11f43ae2015-10-21 15:15:22 -05003340CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3341M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3342M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3343L: linux-scsi@vger.kernel.org
3344S: Supported
3345F: drivers/scsi/cxlflash/
3346F: include/uapi/scsi/cxlflash_ioctls.h
3347F: Documentation/powerpc/cxlflash.txt
3348
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003349STMMAC ETHERNET DRIVER
3350M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3351L: netdev@vger.kernel.org
3352W: http://www.stlinux.com
3353S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003354F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003357M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003358L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359W: http://www.arm.linux.org.uk/
3360S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003361F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003365S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003366F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003367F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003368F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
3370CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003372S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003373F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003375CYPRESS_FIRMWARE MEDIA DRIVER
3376M: Antti Palosaari <crope@iki.fi>
3377L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003378W: https://linuxtv.org
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003379W: http://palosaari.fi/linux/
3380Q: http://patchwork.linuxtv.org/project/linux-media/list/
3381T: git git://linuxtv.org/anttip/media_tree.git
3382S: Maintained
3383F: drivers/media/common/cypress_firmware*
3384
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003385CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003386M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003387L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003388S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003389F: drivers/input/touchscreen/cyttsp*
3390F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003391
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003392DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3393M: Joshua Kinard <kumba@gentoo.org>
3394S: Maintained
3395F: drivers/rtc/rtc-ds1685.c
3396F: include/linux/rtc/ds1685.h
3397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003399M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400W: http://yaina.de/jreuter/
3401W: http://www.qsl.net/dl1bke/
3402L: linux-hams@vger.kernel.org
3403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003404F: net/ax25/af_ax25.c
3405F: net/ax25/ax25_dev.c
3406F: net/ax25/ax25_ds_*
3407F: net/ax25/ax25_in.c
3408F: net/ax25/ax25_out.c
3409F: net/ax25/ax25_timer.c
3410F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003412DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003413L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003414S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003415F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003416F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003417
3418DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003419M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003420L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003421S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003422F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003425M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003426M: Ali Akcaagac <aliakc@web.de>
3427M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003428L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003429W: http://twibble.org/dist/dc395x/
3430W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003432F: Documentation/scsi/dc395x.txt
3433F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003435DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003436M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003437L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003438W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003440F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003441F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003442F: include/linux/tfrc.h
3443F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003444
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446W: http://linux-decnet.sourceforge.net
3447L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003448S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003449F: Documentation/networking/decnet.txt
3450F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003452DECSTATION PLATFORM SUPPORT
3453M: "Maciej W. Rozycki" <macro@linux-mips.org>
3454L: linux-mips@linux-mips.org
3455W: http://www.linux-mips.org/wiki/DECstation
3456S: Maintained
3457F: arch/mips/dec/
3458F: arch/mips/include/asm/dec/
3459F: arch/mips/include/asm/mach-dec/
3460
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003462M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003464F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003466DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003468M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003469L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003471F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003472
Pali Rohár817a5cd2015-06-06 10:23:28 +02003473DELL LAPTOP RBTN DRIVER
3474M: Pali Rohár <pali.rohar@gmail.com>
3475S: Maintained
3476F: drivers/platform/x86/dell-rbtn.*
3477
Pali Rohárcdbff612015-03-29 15:38:50 +02003478DELL LAPTOP FREEFALL DRIVER
3479M: Pali Rohár <pali.rohar@gmail.com>
3480S: Maintained
3481F: drivers/platform/x86/dell-smo8800.c
3482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003484M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003485S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003486F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003487F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Doug Warzecha90563ec2005-09-06 15:17:15 -07003489DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003490M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003492F: Documentation/dcdbas.txt
3493F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003494
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003495DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003496M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003497M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003498S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003499F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003500
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003501DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003502M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003503L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003504T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003505S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003506F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003507
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003508DESIGNWARE USB3 DRD IP DRIVER
Felipe Balbia55f6282016-02-03 20:23:01 +02003509M: Felipe Balbi <balbi@kernel.org>
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003510L: linux-usb@vger.kernel.org
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003511T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3512S: Maintained
3513F: drivers/usb/dwc3/
3514
Johannes Berg833c9542014-09-12 09:01:56 +02003515DEVICE COREDUMP (DEV_COREDUMP)
3516M: Johannes Berg <johannes@sipsolutions.net>
3517L: linux-kernel@vger.kernel.org
3518S: Maintained
3519F: drivers/base/devcoredump.c
3520F: include/linux/devcoredump.h
3521
Kyungmin Park89d07762012-01-10 15:09:09 -08003522DEVICE FREQUENCY (DEVFREQ)
3523M: MyungJoo Ham <myungjoo.ham@samsung.com>
3524M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003525L: linux-pm@vger.kernel.org
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003526T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
Kyungmin Park89d07762012-01-10 15:09:09 -08003527S: Maintained
3528F: drivers/devfreq/
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003529F: include/linux/devfreq.h
3530F: Documentation/devicetree/bindings/devfreq/
Kyungmin Park89d07762012-01-10 15:09:09 -08003531
Chanwoo Choi7dbded02015-11-05 13:30:18 +09003532DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3533M: Chanwoo Choi <cw00.choi@samsung.com>
3534L: linux-pm@vger.kernel.org
3535T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3536S: Supported
3537F: drivers/devfreq/event/
3538F: drivers/devfreq/devfreq-event.c
3539F: include/linux/devfreq-event.h
3540F: Documentation/devicetree/bindings/devfreq/event/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003541
3542DEVICE NUMBER REGISTRY
Joe Perches8a6e2532010-03-05 13:43:11 -08003543M: Torben Mathiasen <device@lanana.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003544W: http://lanana.org/docs/device-list/index.html
Joe Perches679655d2009-04-07 20:44:32 -07003545S: Maintained
3546
3547DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003548M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003549M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003550M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003551L: dm-devel@redhat.com
3552W: http://sources.redhat.com/dm
3553Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003554T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003555T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: Documentation/device-mapper/
3558F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003559F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003560F: include/linux/device-mapper.h
3561F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003562F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563
Jiri Pirkobfcd3a42016-02-26 17:32:23 +01003564DEVLINK
3565M: Jiri Pirko <jiri@mellanox.com>
3566L: netdev@vger.kernel.org
3567S: Supported
3568F: net/core/devlink.c
3569F: include/net/devlink.h
3570F: include/uapi/linux/devlink.h
3571
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003572DIALOG SEMICONDUCTOR DRIVERS
3573M: Support Opensource <support.opensource@diasemi.com>
3574W: http://www.dialog-semiconductor.com/products
3575S: Supported
3576F: Documentation/hwmon/da90??
Adam Thomson7c933772015-09-29 16:44:12 +01003577F: Documentation/devicetree/bindings/sound/da[79]*.txt
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003578F: drivers/gpio/gpio-da90??.c
3579F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003580F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003581F: drivers/input/misc/da90??_onkey.c
3582F: drivers/input/touchscreen/da9052_tsi.c
3583F: drivers/leds/leds-da90??.c
3584F: drivers/mfd/da903x.c
3585F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003586F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003587F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003588F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003589F: drivers/regulator/da903x.c
3590F: drivers/regulator/da9???-regulator.[ch]
3591F: drivers/rtc/rtc-da90??.c
3592F: drivers/video/backlight/da90??_bl.c
3593F: drivers/watchdog/da90??_wdt.c
3594F: include/linux/mfd/da903x.h
3595F: include/linux/mfd/da9052/
3596F: include/linux/mfd/da9055/
3597F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003598F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003599F: include/sound/da[79]*.h
3600F: sound/soc/codecs/da[79]*.[ch]
3601
Lidza Louina599aa692013-09-23 16:13:15 -04003602DIGI NEO AND CLASSIC PCI PRODUCTS
3603M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003604M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003605L: driverdev-devel@linuxdriverproject.org
3606S: Maintained
3607F: drivers/staging/dgnc/
3608
Guenter Roeck335d7c52011-01-26 11:45:49 -08003609DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003610M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003611L: linux-i2c@vger.kernel.org
3612S: Maintained
3613F: drivers/i2c/busses/i2c-diolan-u2c.c
3614
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003615DIRECT ACCESS (DAX)
3616M: Matthew Wilcox <willy@linux.intel.com>
3617L: linux-fsdevel@vger.kernel.org
3618S: Supported
3619F: fs/dax.c
3620
Randy Dunlape7839f22008-10-12 16:11:45 -07003621DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003622M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003624F: Documentation/filesystems/dnotify.txt
3625F: fs/notify/dnotify/
3626F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
3628DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003629M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3631W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3632W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3633S: Maintained
3634
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003635DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003636M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003638F: Documentation/filesystems/quota.txt
3639F: fs/quota/
3640F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003641F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642
Bernie Thompson702686a2012-03-01 13:52:13 -08003643DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3644M: Bernie Thompson <bernie@plugable.com>
3645L: linux-fbdev@vger.kernel.org
3646S: Maintained
3647W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003648F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003649F: include/video/udlfb.h
3650F: Documentation/fb/udlfb.txt
3651
Randy Dunlape7839f22008-10-12 16:11:45 -07003652DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Christine Caulfield <ccaulfie@redhat.com>
3654M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003655L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003656W: http://sources.redhat.com/cluster/
Fengguang Wu9f273c22016-01-20 15:03:25 -08003657T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003659F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003660
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303661DMA BUFFER SHARING FRAMEWORK
3662M: Sumit Semwal <sumit.semwal@linaro.org>
3663S: Maintained
3664L: linux-media@vger.kernel.org
3665L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003666L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003667F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003668F: include/linux/dma-buf*
3669F: include/linux/reservation.h
3670F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303671F: Documentation/dma-buf-sharing.txt
3672T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3673
Dan Williamsb3e5f262007-08-07 10:26:35 -07003674DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003675M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303676L: dmaengine@vger.kernel.org
3677Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003679F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303680F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303681F: Documentation/dmaengine/
3682T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003683
Juerg Haefligerb8250372007-06-09 10:11:16 -04003684DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003685M: Juerg Haefliger <juergh@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07003686L: linux-hwmon@vger.kernel.org
Juerg Haefligerb8250372007-06-09 10:11:16 -04003687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003688F: Documentation/hwmon/dme1737
3689F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003690
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003691DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003692M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003693S: Maintained
Jean Delvared4aeef932015-06-25 09:06:56 +02003694T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003695F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003696F: drivers/firmware/dmi-id.c
3697F: drivers/firmware/dmi_scan.c
3698F: include/linux/dmi.h
3699
Joe Perches7d2c86b2009-04-07 20:59:01 -07003700DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003701M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003702L: linux-doc@vger.kernel.org
3703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: Documentation/
Jonathan Corbet42f41ec2015-09-11 13:23:36 -06003705F: scripts/docproc.c
3706F: scripts/kernel-doc*
Randy Dunlap97be0782014-06-27 18:28:56 -07003707X: Documentation/ABI/
3708X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003709X: Documentation/acpi
3710X: Documentation/power
3711X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003712X: Documentation/DocBook/media
Jonathan Corbetc51edfb2015-09-24 16:05:28 -06003713T: git git://git.lwn.net/linux.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003714
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003716M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717L: blinux-list@redhat.com
3718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: drivers/char/dtlk.c
3720F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003722DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003723M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003724L: linux-scsi@vger.kernel.org
3725W: http://www.adaptec.com/
3726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003727F: drivers/scsi/dpt*
3728F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003729
Philipp Reisnerb411b362009-09-25 16:07:19 -07003730DRBD DRIVER
Roland Kammererbc2c0492015-07-07 16:37:10 +02003731M: Philipp Reisner <philipp.reisner@linbit.com>
3732M: Lars Ellenberg <lars.ellenberg@linbit.com>
3733L: drbd-dev@lists.linbit.com
Joe Perches28b8e8d2010-03-23 13:35:20 -07003734W: http://www.drbd.org
Roland Kammererbc2c0492015-07-07 16:37:10 +02003735T: git git://git.linbit.com/linux-drbd.git
3736T: git git://git.linbit.com/drbd-8.4.git
Joe Perches28b8e8d2010-03-23 13:35:20 -07003737S: Supported
3738F: drivers/block/drbd/
3739F: lib/lru_cache.c
3740F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003741
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003742DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003743M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003744T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003746F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003747F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003748F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003749F: fs/kernfs/
3750F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003751F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003752F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003753F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
3755DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003756M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003757L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003758T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003761F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003762F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003763F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Alex Deucherc26a4012016-03-03 11:49:34 -05003765RADEON and AMDGPU DRM DRIVERS
Alex Deucher566f5932014-02-18 10:03:43 -05003766M: Alex Deucher <alexander.deucher@amd.com>
3767M: Christian König <christian.koenig@amd.com>
3768L: dri-devel@lists.freedesktop.org
3769T: git git://people.freedesktop.org/~agd5f/linux
3770S: Supported
3771F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003772F: include/uapi/drm/radeon*
Alex Deucherc26a4012016-03-03 11:49:34 -05003773F: drivers/gpu/drm/amd/
3774F: include/uapi/drm/amdgpu*
Alex Deucher566f5932014-02-18 10:03:43 -05003775
Thierry Reding03e255b2014-04-04 08:59:18 +02003776DRM PANEL DRIVERS
3777M: Thierry Reding <thierry.reding@gmail.com>
3778L: dri-devel@lists.freedesktop.org
3779T: git git://anongit.freedesktop.org/tegra/linux.git
3780S: Maintained
3781F: drivers/gpu/drm/drm_panel.c
3782F: drivers/gpu/drm/panel/
3783F: include/drm/drm_panel.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003784F: Documentation/devicetree/bindings/display/panel/
Thierry Reding03e255b2014-04-04 08:59:18 +02003785
Chris Wilson8daf7472010-09-28 14:07:26 +01003786INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003787M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003788M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003789L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003790L: dri-devel@lists.freedesktop.org
Jani Nikula7564fde2015-10-13 11:16:48 +03003791W: https://01.org/linuxgraphics/
Daniel Vetter47f95642014-01-07 09:24:31 +01003792Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003793T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003794S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003795F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003796F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003797F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003798
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003799DRM DRIVERS FOR ATMEL HLCDC
3800M: Boris Brezillon <boris.brezillon@free-electrons.com>
3801L: dri-devel@lists.freedesktop.org
3802S: Supported
3803F: drivers/gpu/drm/atmel-hlcdc/
3804F: Documentation/devicetree/bindings/drm/atmel/
3805
Kyungmin Park398a6d42011-11-02 11:33:16 +09003806DRM DRIVERS FOR EXYNOS
3807M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003808M: Joonyoung Shim <jy0922.shim@samsung.com>
3809M: Seung-Woo Kim <sw0312.kim@samsung.com>
3810M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003811L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003812T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003813S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003814F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003815F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003816F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003817
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003818DRM DRIVERS FOR FREESCALE DCU
Stefan Agnerbc667572016-01-06 22:02:46 -08003819M: Stefan Agner <stefan@agner.ch>
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003820M: Alison Wang <alison.wang@freescale.com>
3821L: dri-devel@lists.freedesktop.org
3822S: Supported
3823F: drivers/gpu/drm/fsl-dcu/
Rob Herring2d799dd2015-11-05 13:40:40 -06003824F: Documentation/devicetree/bindings/display/fsl,dcu.txt
3825F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003826
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003827DRM DRIVERS FOR FREESCALE IMX
3828M: Philipp Zabel <p.zabel@pengutronix.de>
3829L: dri-devel@lists.freedesktop.org
3830S: Maintained
3831F: drivers/gpu/drm/imx/
Philipp Zabelef739aa2015-06-19 16:22:38 +02003832F: drivers/gpu/ipu-v3/
Rob Herring2d799dd2015-11-05 13:40:40 -06003833F: Documentation/devicetree/bindings/display/imx/
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003834
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003835DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3836M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3837L: dri-devel@lists.freedesktop.org
3838T: git git://github.com/patjak/drm-gma500
3839S: Maintained
3840F: drivers/gpu/drm/gma500
3841F: include/drm/gma500*
3842
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003843DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003844M: Thierry Reding <thierry.reding@gmail.com>
3845M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003846L: dri-devel@lists.freedesktop.org
3847L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003848T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003849S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003850F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003851F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003852F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003853F: include/uapi/drm/tegra_drm.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003854F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003855
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003856DRM DRIVERS FOR RENESAS
3857M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3858L: dri-devel@lists.freedesktop.org
Simon Horman4a121092016-01-18 10:04:33 +09003859L: linux-renesas-soc@vger.kernel.org
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003860T: git git://people.freedesktop.org/~airlied/linux
3861S: Supported
3862F: drivers/gpu/drm/rcar-du/
3863F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003864F: include/linux/platform_data/shmob_drm.h
3865
Heiko Stuebner625e0342015-04-20 00:59:50 +02003866DRM DRIVERS FOR ROCKCHIP
3867M: Mark Yao <mark.yao@rock-chips.com>
3868L: dri-devel@lists.freedesktop.org
3869S: Maintained
3870F: drivers/gpu/drm/rockchip/
Rob Herring2d799dd2015-11-05 13:40:40 -06003871F: Documentation/devicetree/bindings/display/rockchip*
Heiko Stuebner625e0342015-04-20 00:59:50 +02003872
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003873DRM DRIVERS FOR STI
3874M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3875M: Vincent Abriou <vincent.abriou@st.com>
3876L: dri-devel@lists.freedesktop.org
3877T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3878S: Maintained
3879F: drivers/gpu/drm/sti
Rob Herring2d799dd2015-11-05 13:40:40 -06003880F: Documentation/devicetree/bindings/display/st,stih4xx.txt
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003881
Lucas Stach8bb0bce2015-12-03 17:12:07 +01003882DRM DRIVERS FOR VIVANTE GPU IP
3883M: Lucas Stach <l.stach@pengutronix.de>
3884R: Russell King <linux+etnaviv@arm.linux.org.uk>
3885R: Christian Gmeiner <christian.gmeiner@gmail.com>
3886L: dri-devel@lists.freedesktop.org
3887S: Maintained
3888F: drivers/gpu/drm/etnaviv
3889F: Documentation/devicetree/bindings/display/etnaviv
3890
Alexey Klimov598df1a2012-11-28 17:16:32 -03003891DSBR100 USB FM RADIO DRIVER
3892M: Alexey Klimov <klimov.linux@gmail.com>
3893L: linux-media@vger.kernel.org
3894T: git git://linuxtv.org/media_tree.git
3895S: Maintained
3896F: drivers/media/radio/dsbr100.c
3897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003899M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003900L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003902F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
Hans Verkuilcc11b142015-04-25 12:36:18 -03003904DT3155 MEDIA DRIVER
3905M: Hans Verkuil <hverkuil@xs4all.nl>
3906L: linux-media@vger.kernel.org
3907T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003908W: https://linuxtv.org
Hans Verkuilcc11b142015-04-25 12:36:18 -03003909S: Odd Fixes
3910F: drivers/media/pci/dt3155/
3911
Antti Palosaari91952bc2012-10-01 12:28:46 -03003912DVB_USB_AF9015 MEDIA DRIVER
3913M: Antti Palosaari <crope@iki.fi>
3914L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003915W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003916W: http://palosaari.fi/linux/
3917Q: http://patchwork.linuxtv.org/project/linux-media/list/
3918T: git git://linuxtv.org/anttip/media_tree.git
3919S: Maintained
3920F: drivers/media/usb/dvb-usb-v2/af9015*
3921
3922DVB_USB_AF9035 MEDIA DRIVER
3923M: Antti Palosaari <crope@iki.fi>
3924L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003925W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003926W: http://palosaari.fi/linux/
3927Q: http://patchwork.linuxtv.org/project/linux-media/list/
3928T: git git://linuxtv.org/anttip/media_tree.git
3929S: Maintained
3930F: drivers/media/usb/dvb-usb-v2/af9035*
3931
3932DVB_USB_ANYSEE MEDIA DRIVER
3933M: Antti Palosaari <crope@iki.fi>
3934L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003935W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003936W: http://palosaari.fi/linux/
3937Q: http://patchwork.linuxtv.org/project/linux-media/list/
3938T: git git://linuxtv.org/anttip/media_tree.git
3939S: Maintained
3940F: drivers/media/usb/dvb-usb-v2/anysee*
3941
3942DVB_USB_AU6610 MEDIA DRIVER
3943M: Antti Palosaari <crope@iki.fi>
3944L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003945W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003946W: http://palosaari.fi/linux/
3947Q: http://patchwork.linuxtv.org/project/linux-media/list/
3948T: git git://linuxtv.org/anttip/media_tree.git
3949S: Maintained
3950F: drivers/media/usb/dvb-usb-v2/au6610*
3951
3952DVB_USB_CE6230 MEDIA DRIVER
3953M: Antti Palosaari <crope@iki.fi>
3954L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003955W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003956W: http://palosaari.fi/linux/
3957Q: http://patchwork.linuxtv.org/project/linux-media/list/
3958T: git git://linuxtv.org/anttip/media_tree.git
3959S: Maintained
3960F: drivers/media/usb/dvb-usb-v2/ce6230*
3961
Michael Krufkyd099dea2012-10-02 00:56:20 -03003962DVB_USB_CXUSB MEDIA DRIVER
3963M: Michael Krufky <mkrufky@linuxtv.org>
3964L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003965W: https://linuxtv.org
Michael Krufkyd099dea2012-10-02 00:56:20 -03003966W: http://github.com/mkrufky
3967Q: http://patchwork.linuxtv.org/project/linux-media/list/
3968T: git git://linuxtv.org/media_tree.git
3969S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003970F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003971
Antti Palosaari91952bc2012-10-01 12:28:46 -03003972DVB_USB_EC168 MEDIA DRIVER
3973M: Antti Palosaari <crope@iki.fi>
3974L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003975W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003976W: http://palosaari.fi/linux/
3977Q: http://patchwork.linuxtv.org/project/linux-media/list/
3978T: git git://linuxtv.org/anttip/media_tree.git
3979S: Maintained
3980F: drivers/media/usb/dvb-usb-v2/ec168*
3981
Antti Palosaari55609832013-04-09 20:30:42 -03003982DVB_USB_GL861 MEDIA DRIVER
3983M: Antti Palosaari <crope@iki.fi>
3984L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003985W: https://linuxtv.org
Antti Palosaari55609832013-04-09 20:30:42 -03003986Q: http://patchwork.linuxtv.org/project/linux-media/list/
3987T: git git://linuxtv.org/anttip/media_tree.git
3988S: Maintained
3989F: drivers/media/usb/dvb-usb-v2/gl861*
3990
Michael Krufky8856f5f2012-10-02 00:55:50 -03003991DVB_USB_MXL111SF MEDIA DRIVER
3992M: Michael Krufky <mkrufky@linuxtv.org>
3993L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003994W: https://linuxtv.org
Michael Krufky8856f5f2012-10-02 00:55:50 -03003995W: http://github.com/mkrufky
3996Q: http://patchwork.linuxtv.org/project/linux-media/list/
3997T: git git://linuxtv.org/mkrufky/mxl111sf.git
3998S: Maintained
3999F: drivers/media/usb/dvb-usb-v2/mxl111sf*
4000
Antti Palosaari91952bc2012-10-01 12:28:46 -03004001DVB_USB_RTL28XXU MEDIA DRIVER
4002M: Antti Palosaari <crope@iki.fi>
4003L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004004W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004005W: http://palosaari.fi/linux/
4006Q: http://patchwork.linuxtv.org/project/linux-media/list/
4007T: git git://linuxtv.org/anttip/media_tree.git
4008S: Maintained
4009F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
4010
4011DVB_USB_V2 MEDIA DRIVER
4012M: Antti Palosaari <crope@iki.fi>
4013L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004014W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004015W: http://palosaari.fi/linux/
4016Q: http://patchwork.linuxtv.org/project/linux-media/list/
4017T: git git://linuxtv.org/anttip/media_tree.git
4018S: Maintained
4019F: drivers/media/usb/dvb-usb-v2/dvb_usb*
4020F: drivers/media/usb/dvb-usb-v2/usb_urb.c
4021
Jason Baronac0ac382011-08-11 14:36:43 -04004022DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07004023M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04004024S: Maintained
4025F: lib/dynamic_debug.c
4026F: include/linux/dynamic_debug.h
4027
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08004028DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004029M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08004030S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004031F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08004032
Moritz Fischerf17effb2015-01-10 14:10:59 -08004033E3X0 POWER BUTTON DRIVER
4034M: Moritz Fischer <moritz.fischer@ettus.com>
4035L: usrp-users@lists.ettus.com
4036W: http://www.ettus.com
4037S: Supported
4038F: drivers/input/misc/e3x0-button.c
4039F: Documentation/devicetree/bindings/input/e3x0-button.txt
4040
Antti Palosaari91952bc2012-10-01 12:28:46 -03004041E4000 MEDIA DRIVER
4042M: Antti Palosaari <crope@iki.fi>
4043L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004044W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004045W: http://palosaari.fi/linux/
4046Q: http://patchwork.linuxtv.org/project/linux-media/list/
4047T: git git://linuxtv.org/anttip/media_tree.git
4048S: Maintained
4049F: drivers/media/tuners/e4000*
4050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004052M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053L: linux-scsi@vger.kernel.org
4054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004055F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056
Antti Palosaari91952bc2012-10-01 12:28:46 -03004057EC100 MEDIA DRIVER
4058M: Antti Palosaari <crope@iki.fi>
4059L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004060W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004061W: http://palosaari.fi/linux/
4062Q: http://patchwork.linuxtv.org/project/linux-media/list/
4063T: git git://linuxtv.org/anttip/media_tree.git
4064S: Maintained
4065F: drivers/media/dvb-frontends/ec100*
4066
Michael Halcrow237fead2006-10-04 02:16:22 -07004067ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04004068M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05004069L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05004070W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08004071W: https://launchpad.net/ecryptfs
Fengguang Wu9f273c22016-01-20 15:03:25 -08004072T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
Michael Halcrow237fead2006-10-04 02:16:22 -07004073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004074F: Documentation/filesystems/ecryptfs.txt
4075F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07004076
Alan Coxda9bb1d2006-01-18 17:44:13 -08004077EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07004078M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08004079M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004080M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004081L: linux-edac@vger.kernel.org
Fengguang Wu07cd6bf2015-12-18 15:51:36 +08004082T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4083T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07004084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004085F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04004086F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07004087F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08004088
Borislav Petkovc476c232009-05-20 20:31:58 +02004089EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07004090M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004091M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04004092L: linux-edac@vger.kernel.org
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004093S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02004094F: drivers/edac/amd64_edac*
4095
Robert Richter836dae52013-10-18 09:24:52 +02004096EDAC-CALXEDA
4097M: Doug Thompson <dougthompson@xmission.com>
4098M: Robert Richter <rric@kernel.org>
4099L: linux-edac@vger.kernel.org
Robert Richter836dae52013-10-18 09:24:52 +02004100S: Maintained
4101F: drivers/edac/highbank*
4102
Ralf Baechlef65aad42012-10-17 00:39:09 +02004103EDAC-CAVIUM
4104M: Ralf Baechle <ralf@linux-mips.org>
4105M: David Daney <david.daney@cavium.com>
4106L: linux-edac@vger.kernel.org
4107L: linux-mips@linux-mips.org
Ralf Baechlef65aad42012-10-17 00:39:09 +02004108S: Supported
4109F: drivers/edac/octeon_edac*
4110
Dave Peterson0e438e32006-03-26 01:38:55 -08004111EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07004112M: Mark Gross <mark.gross@intel.com>
4113M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004114L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004116F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004117
4118EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07004119M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004120L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004122F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004123
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004124EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004125M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004126L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004127S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07004128F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004129
Douglas Thompson6bc78402007-07-19 01:50:12 -07004130EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07004131M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004132L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004134F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004135
4136EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004138L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004140F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004141
4142EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07004143M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004144L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004146F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004147
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004148EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004149M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004150L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004152F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004153
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004154EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004155M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004156L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004157S: Maintained
4158F: drivers/edac/i7300_edac.c
4159
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004160EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004161M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004162L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004163S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03004164F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004165
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004166EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07004167M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05304168M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004169L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004171F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004172
Jason Baron791b4702014-07-09 21:13:11 +00004173EDAC-IE31200
4174M: Jason Baron <jbaron@akamai.com>
4175L: linux-edac@vger.kernel.org
Jason Baron791b4702014-07-09 21:13:11 +00004176S: Maintained
4177F: drivers/edac/ie31200_edac.c
4178
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004179EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02004180M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004181L: linux-edac@vger.kernel.org
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004182S: Maintained
4183F: drivers/edac/mpc85xx_edac.[ch]
4184
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004185EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004187L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004189F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004190
Dave Peterson0e438e32006-03-26 01:38:55 -08004191EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07004192M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004193L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004195F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08004196
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004197EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004198M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004199L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004200S: Maintained
4201F: drivers/edac/sb_edac.c
4202
Loc Ho995e1de2015-05-22 17:32:57 -06004203EDAC-XGENE
4204APPLIED MICRO (APM) X-GENE SOC EDAC
4205M: Loc Ho <lho@apm.com>
4206S: Supported
4207F: drivers/edac/xgene_edac.c
4208F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4209
Clemens Ladischaf399172011-01-10 16:32:54 +01004210EDIROL UA-101/UA-1000 DRIVER
4211M: Clemens Ladisch <clemens@ladisch.de>
4212L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4213T: git git://git.alsa-project.org/alsa-kernel.git
4214S: Maintained
4215F: sound/usb/misc/ua101.c
4216
Matt Fleming1f7df952012-10-03 10:04:02 +01004217EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004218M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004219L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004220T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004221S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004222F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004223F: arch/ia64/kernel/efi.c
4224F: arch/x86/boot/compressed/eboot.[ch]
4225F: arch/x86/include/asm/efi.h
4226F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004227F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004228F: include/linux/efi*.h
4229
Matt Flemingd68772b2013-02-08 16:27:24 +00004230EFI VARIABLE FILESYSTEM
4231M: Matthew Garrett <matthew.garrett@nebula.com>
4232M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004233M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004234T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4235L: linux-efi@vger.kernel.org
4236S: Maintained
4237F: fs/efivarfs/
4238
Peter Jones85a00d92010-09-22 13:05:04 -07004239EFIFB FRAMEBUFFER DRIVER
4240L: linux-fbdev@vger.kernel.org
4241M: Peter Jones <pjones@redhat.com>
4242S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004243F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004244
Josh Triplett0bee8d22006-07-30 03:03:58 -07004245EFS FILESYSTEM
4246W: http://aeschi.ch.eu.org/efs/
4247S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004248F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004249
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004250EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004251M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004252L: netdev@vger.kernel.org
4253S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004254F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004255
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004256EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004257M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004258L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004259W: https://linuxtv.org
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004260T: git git://linuxtv.org/media_tree.git
4261S: Maintained
4262F: drivers/media/usb/em28xx/
4263
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004264EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004265M: Paul Gortmaker <paul.gortmaker@windriver.com>
4266M: Matt Mackall <mpm@selenic.com>
4267M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004268L: linux-embedded@vger.kernel.org
4269S: Maintained
4270
James Smart32505872015-05-15 13:10:58 -04004271EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4272M: James Smart <james.smart@avagotech.com>
4273M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004274L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004275W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004277F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004278
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004279ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004280M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004281S: Maintained
4282F: drivers/misc/cb710/
4283F: drivers/mmc/host/cb710-mmc.*
4284F: include/linux/cb710.h
4285
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004286ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4287M: Maxim Levitsky <maximlevitsky@gmail.com>
4288S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004289F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004290
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004291EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004292M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004293S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004294T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004295F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004296F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004297
Mark Einon38df6492014-09-30 22:29:46 +01004298ET131X NETWORK DRIVER
4299M: Mark Einon <mark.einon@gmail.com>
4300S: Odd Fixes
4301F: drivers/net/ethernet/agere/
4302
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004304M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004305L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004306L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004307W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004309F: include/linux/netfilter_bridge/
4310F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004312ETHERNET PHY LIBRARY
4313M: Florian Fainelli <f.fainelli@gmail.com>
4314L: netdev@vger.kernel.org
4315S: Maintained
4316F: include/linux/phy.h
4317F: include/linux/phy_fixed.h
4318F: drivers/net/phy/
4319F: Documentation/networking/phy.txt
4320F: drivers/of/of_mdio.c
4321F: drivers/of/of_net.c
4322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004324M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004325L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004327F: Documentation/filesystems/ext2.txt
4328F: fs/ext2/
4329F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Erik Mouw72be2cc2006-12-06 20:40:49 -08004331EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004333M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004334L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004335W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004336Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08004337T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004339F: Documentation/filesystems/ext4.txt
4340F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341
Mimi Zoharc5532b02011-08-17 18:52:24 -04004342Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004343M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4344L: linux-ima-devel@lists.sourceforge.net
4345L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004346S: Supported
4347F: security/integrity/evm/
4348
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004349EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4350M: MyungJoo Ham <myungjoo.ham@samsung.com>
4351M: Chanwoo Choi <cw00.choi@samsung.com>
4352L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004353T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004354S: Maintained
4355F: drivers/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004356F: include/linux/extcon/
4357F: include/linux/extcon.h
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004358F: Documentation/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004359F: Documentation/devicetree/bindings/extcon/
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004360
Jingoo Hane2a75c42014-04-10 20:24:03 +09004361EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004362M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004363L: dri-devel@lists.freedesktop.org
4364S: Maintained
4365F: drivers/gpu/drm/exynos/exynos_dp*
4366
Marek Szyprowski9b93a402016-02-18 15:12:59 +01004367EXYNOS SYSMMU (IOMMU) driver
4368M: Marek Szyprowski <m.szyprowski@samsung.com>
4369L: iommu@lists.linux-foundation.org
4370S: Maintained
4371F: drivers/iommu/exynos-iommu.c
4372
Donghwa Lee33ad3912012-03-06 11:44:58 +09004373EXYNOS MIPI DISPLAY DRIVERS
4374M: Inki Dae <inki.dae@samsung.com>
4375M: Donghwa Lee <dh09.lee@samsung.com>
4376M: Kyungmin Park <kyungmin.park@samsung.com>
4377L: linux-fbdev@vger.kernel.org
4378S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004379F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004380F: include/video/exynos_mipi*
4381
Jean Delvaree53004e2006-01-09 23:26:14 +01004382F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004383M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07004384L: linux-hwmon@vger.kernel.org
Jean Delvaree53004e2006-01-09 23:26:14 +01004385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004386F: Documentation/hwmon/f71805f
4387F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004388
Michael Büscheea977e2012-04-02 12:14:32 -03004389FC0011 TUNER DRIVER
4390M: Michael Buesch <m@bues.ch>
4391L: linux-media@vger.kernel.org
4392S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004393F: drivers/media/tuners/fc0011.h
4394F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004395
Antti Palosaari91952bc2012-10-01 12:28:46 -03004396FC2580 MEDIA DRIVER
4397M: Antti Palosaari <crope@iki.fi>
4398L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004399W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004400W: http://palosaari.fi/linux/
4401Q: http://patchwork.linuxtv.org/project/linux-media/list/
4402T: git git://linuxtv.org/anttip/media_tree.git
4403S: Maintained
4404F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Eric Paris88b2dbd2010-08-18 12:25:50 -04004406FANOTIFY
4407M: Eric Paris <eparis@redhat.com>
4408S: Maintained
4409F: fs/notify/fanotify/
4410F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004411F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004412
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004414M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415W: http://www.farsite.co.uk/
4416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004417F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
Akinobu Mitac5408b82007-04-23 14:41:20 -07004419FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004420M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004422F: Documentation/fault-injection/
4423F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004424
Noralf Trønnes053e5142015-01-23 19:29:07 +01004425FBTFT Framebuffer drivers
4426M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4427M: Noralf Trønnes <noralf@tronnes.org>
4428S: Maintained
4429F: drivers/staging/fbtft/
4430
Robert Lovecae727d2010-02-16 12:16:00 -08004431FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004432M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004433L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004434W: www.Open-FCoE.org
4435S: Supported
4436F: drivers/scsi/libfc/
4437F: drivers/scsi/fcoe/
4438F: include/scsi/fc/
4439F: include/scsi/libfc.h
4440F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004441F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004442
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004443FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004444M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004445M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004446L: linux-fsdevel@vger.kernel.org
4447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004448F: include/linux/fcntl.h
4449F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004450F: include/uapi/linux/fcntl.h
4451F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004452F: fs/fcntl.c
4453F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004454
4455FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004456M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004457L: linux-fsdevel@vger.kernel.org
4458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004459F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004460
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004461FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004462M: Riku Voipio <riku.voipio@iki.fi>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07004463L: linux-hwmon@vger.kernel.org
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004464S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004465F: drivers/hwmon/f75375s.c
4466F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004467
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004468FIREWIRE AUDIO DRIVERS
4469M: Clemens Ladisch <clemens@ladisch.de>
4470L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4471T: git git://git.alsa-project.org/alsa-kernel.git
4472S: Maintained
4473F: sound/firewire/
4474
Stefan Richtereb86ec52012-11-03 09:25:20 +01004475FIREWIRE MEDIA DRIVERS (firedtv)
4476M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4477L: linux-media@vger.kernel.org
4478L: linux1394-devel@lists.sourceforge.net
4479T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4480S: Maintained
4481F: drivers/media/firewire/
4482
Chris Boota511ce32012-04-14 17:50:35 -07004483FIREWIRE SBP-2 TARGET
4484M: Chris Boot <bootc@bootc.net>
4485L: linux-scsi@vger.kernel.org
4486L: target-devel@vger.kernel.org
4487L: linux1394-devel@lists.sourceforge.net
4488T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4489S: Maintained
4490F: drivers/target/sbp/
4491
Joe Perches7d2c86b2009-04-07 20:59:01 -07004492FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004493M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004494L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004495W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004496T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004498F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004499F: include/linux/firewire.h
4500F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004501F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004502
4503FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004504M: Ming Lei <ming.lei@canonical.com>
4505L: linux-kernel@vger.kernel.org
4506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004507F: Documentation/firmware_class/
4508F: drivers/base/firmware*.c
4509F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004510
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004511FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004512M: Joshua Morris <josh.h.morris@us.ibm.com>
4513M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4514S: Maintained
4515F: drivers/block/rsxx/
4516
Jiri Kosina8206f662012-05-18 13:52:29 +02004517FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004518M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004519T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4520S: Odd fixes
4521F: drivers/block/floppy.c
4522
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004523FMC SUBSYSTEM
4524M: Alessandro Rubini <rubini@gnudd.com>
4525W: http://www.ohwr.org/projects/fmc-bus
4526S: Supported
4527F: drivers/fmc/
4528F: include/linux/fmc*.h
4529F: include/linux/ipmi-fru.h
4530K: fmc_d.*register
4531
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004532FPGA MANAGER FRAMEWORK
4533M: Alan Tull <atull@opensource.altera.com>
Moritz Fischerdd7d6642015-11-20 15:56:51 -08004534R: Moritz Fischer <moritz.fischer@ettus.com>
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004535S: Maintained
4536F: drivers/fpga/
4537F: include/linux/fpga/fpga-mgr.h
4538W: http://www.rocketboards.org
4539
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004540FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004541M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004542W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004544F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004545
4546FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004547L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004548S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004549F: drivers/net/wan/dlci.c
4550F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004551
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004553M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4554M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004555L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004557Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004558T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004560F: Documentation/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004561F: drivers/video/
4562F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004563F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004564F: include/uapi/video/
4565F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Timur Tabia57c1882012-10-16 17:33:42 -05004567FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004568M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004569L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004570S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004571F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004572
Zhang Wei173acc72008-03-01 07:42:48 -07004573FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004574M: Li Yang <leoli@freescale.com>
4575M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004576L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004579
Han Xu44248af2016-02-18 03:55:15 +00004580FREESCALE GPMI NAND DRIVER
4581M: Han Xu <han.xu@nxp.com>
4582L: linux-mtd@lists.infradead.org
4583S: Maintained
4584F: drivers/mtd/nand/gpmi-nand/*
4585
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004586FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004587M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004588L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004589L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004591F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004592
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004593FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004594M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004595L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004596L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004597S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004598F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004599F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004600
Han Xu4d8e2ce2015-01-16 03:29:17 +08004601FREESCALE QUAD SPI DRIVER
Han Xu38714fb2016-02-12 05:13:25 +00004602M: Han Xu <han.xu@nxp.com>
Han Xu4d8e2ce2015-01-16 03:29:17 +08004603L: linux-mtd@lists.infradead.org
4604S: Maintained
4605F: drivers/mtd/spi-nor/fsl-quadspi.c
4606
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004607FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004608M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4609M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004610L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004611L: netdev@vger.kernel.org
4612S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004613F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004614F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004615
Nimrod Andy63a0a00b92016-03-02 17:24:53 +08004616FREESCALE IMX / MXC FEC DRIVER
4617M: Fugang Duan <fugang.duan@nxp.com>
4618L: netdev@vger.kernel.org
4619S: Maintained
4620F: drivers/net/ethernet/freescale/fec_main.c
4621F: drivers/net/ethernet/freescale/fec_ptp.c
4622F: drivers/net/ethernet/freescale/fec.h
4623F: Documentation/devicetree/bindings/net/fsl-fec.txt
4624
Timur Tabid9e9d822008-04-24 08:45:26 +10004625FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004626L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004627S: Orphan
Zhao Qiang7aa1aa62015-11-30 10:48:57 +08004628F: drivers/soc/fsl/qe/
4629F: include/soc/fsl/*qe*.h
4630F: include/soc/fsl/*ucc*.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004631
Joe Perchesb55ef9292009-10-26 16:49:46 -07004632FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004633M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004634L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004635L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004636S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004637F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004638
Li Yangbeaf53b2007-05-25 13:54:02 +08004639FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004640M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004641L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004642L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004643S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004644F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004645
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004646FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4647M: Claudiu Manoil <claudiu.manoil@freescale.com>
4648L: netdev@vger.kernel.org
4649S: Maintained
4650F: drivers/net/ethernet/freescale/gianfar*
4651X: drivers/net/ethernet/freescale/gianfar_ptp.c
4652F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4653
Timur Tabid9e9d822008-04-24 08:45:26 +10004654FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004655M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004656L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004657S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004658F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004659
4660FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004661M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004662M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004663M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004664L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004665L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004666S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004667F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004668F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004669F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004670
J. German Rivera31c88962015-03-05 19:29:09 -06004671FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004672M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004673L: linux-kernel@vger.kernel.org
4674S: Maintained
4675F: drivers/staging/fsl-mc/
4676
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004681F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
Pavel Machek71038f52009-01-15 13:51:02 -08004683FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004684M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004685M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004686L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004688F: Documentation/power/freezing-of-tasks.txt
4689F: include/linux/freezer.h
4690F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004691
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004692FRONTSWAP API
4693M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4694L: linux-kernel@vger.kernel.org
4695S: Maintained
4696F: mm/frontswap.c
4697F: include/linux/frontswap.h
4698
David Howellsa5432f52009-04-20 15:46:45 +01004699FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004700M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00004701L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01004702S: Supported
4703F: Documentation/filesystems/caching/
4704F: fs/fscache/
4705F: include/linux/fscache*.h
4706
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004707F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004708M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004709M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004710R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004711L: linux-f2fs-devel@lists.sourceforge.net
4712W: http://en.wikipedia.org/wiki/F2FS
4713T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4714S: Maintained
4715F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004716F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004717F: fs/f2fs/
4718F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004719F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004720
David Howells5ab7ffe2007-04-10 15:10:45 +01004721FUJITSU FR-V (FRV) PORT
David Howells0cf03052016-01-20 10:29:00 +00004722S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004723F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Jonathan Woithe20b93732008-06-11 10:14:56 +09304725FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304726M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05004727L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004729F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304730
Heungjun Kim4da621b2011-11-11 08:05:33 -03004731FUJITSU M-5MO LS CAMERA ISP DRIVER
4732M: Kyungmin Park <kyungmin.park@samsung.com>
4733M: Heungjun Kim <riverful.kim@samsung.com>
4734L: linux-media@vger.kernel.org
4735S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004736F: drivers/media/i2c/m5mols/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02004737F: include/media/i2c/m5mols.h
Heungjun Kim4da621b2011-11-11 08:05:33 -03004738
Robert Gerlach2d24c492012-01-18 14:26:22 +01004739FUJITSU TABLET EXTRAS
4740M: Robert Gerlach <khnz@gmx.de>
4741L: platform-driver-x86@vger.kernel.org
4742S: Maintained
4743F: drivers/platform/x86/fujitsu-tablet.c
4744
Miklos Szeredi04578f12005-09-09 13:10:22 -07004745FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004746M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004747L: fuse-devel@lists.sourceforge.net
4748W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004749T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004751F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004752F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004753F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004754
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004756M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004758S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004759F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004761GCOV BASED KERNEL PROFILING
4762M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4763S: Maintained
4764F: kernel/gcov/
4765F: Documentation/gcov.txt
4766
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769L: linux-scsi@vger.kernel.org
4770W: http://www.icp-vortex.com/
4771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004772F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Jan Kiszka158daf12015-02-17 13:47:49 -08004774GDB KERNEL DEBUGGING HELPER SCRIPTS
4775M: Jan Kiszka <jan.kiszka@siemens.com>
4776S: Supported
4777F: scripts/gdb/
4778
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004779GEMTEK FM RADIO RECEIVER DRIVER
4780M: Hans Verkuil <hverkuil@xs4all.nl>
4781L: linux-media@vger.kernel.org
4782T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004783W: https://linuxtv.org
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004784S: Maintained
4785F: drivers/media/radio/radio-gemtek*
4786
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004787GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004788M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004789S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004790F: drivers/i2c/busses/i2c-gpio.c
4791F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004792
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004793GENERIC GPIO I2C MULTIPLEXER DRIVER
4794M: Peter Korsgaard <peter.korsgaard@barco.com>
4795L: linux-i2c@vger.kernel.org
4796S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004797F: drivers/i2c/muxes/i2c-mux-gpio.c
4798F: include/linux/i2c-mux-gpio.h
4799F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004800
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004801GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004802M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: drivers/net/wan/c101.c
4806F: drivers/net/wan/hd6457*
4807F: drivers/net/wan/hdlc*
4808F: drivers/net/wan/n2.c
4809F: drivers/net/wan/pc300too.c
4810F: drivers/net/wan/pci200syn.c
4811F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004813GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004814M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004815L: linux-arch@vger.kernel.org
4816T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4817S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004818F: include/asm-generic/
4819F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004820
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304821GENERIC PHY FRAMEWORK
4822M: Kishon Vijay Abraham I <kishon@ti.com>
4823L: linux-kernel@vger.kernel.org
4824T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4825S: Supported
4826F: drivers/phy/
4827F: include/linux/phy/
4828
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004829GENERIC PM DOMAINS
4830M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4831M: Kevin Hilman <khilman@kernel.org>
4832M: Ulf Hansson <ulf.hansson@linaro.org>
4833L: linux-pm@vger.kernel.org
4834S: Supported
4835F: drivers/base/power/domain*.c
4836F: include/linux/pm_domain.h
4837
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004838GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004839M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004840L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004841S: Supported
4842F: drivers/uio/uio_pci_generic.c
4843
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004844GET_MAINTAINER SCRIPT
4845M: Joe Perches <joe@perches.com>
4846S: Maintained
4847F: scripts/get_maintainer.pl
4848
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004849GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004850M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004851M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004852L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004853W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004854T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004856F: Documentation/filesystems/gfs2*.txt
4857F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004858F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004859
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004860GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004861M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004862L: gigaset307x-common@lists.sourceforge.net
4863W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004864S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004865F: Documentation/isdn/README.gigaset
4866F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004867F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004868
Joe Perches7eea35f2014-07-30 05:09:23 -03004869GO7007 MPEG CODEC
4870M: Hans Verkuil <hans.verkuil@cisco.com>
4871L: linux-media@vger.kernel.org
4872S: Maintained
4873F: drivers/media/usb/go7007/
4874
Bastien Noceraca96ea82014-10-31 09:26:16 -07004875GOODIX TOUCHSCREEN
4876M: Bastien Nocera <hadess@hadess.net>
4877L: linux-input@vger.kernel.org
4878S: Maintained
4879F: drivers/input/touchscreen/goodix.c
4880
Grant Likelya0dc00b2011-02-12 01:48:14 -07004881GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004882M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004883M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004884L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004885T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4886S: Maintained
4887F: Documentation/gpio/
Linus Walleij40c159b2015-10-22 10:21:57 +02004888F: Documentation/ABI/testing/gpio-cdev
Linus Walleijfe950462015-10-22 09:58:34 +02004889F: Documentation/ABI/obsolete/sysfs-gpio
Grant Likelya0dc00b2011-02-12 01:48:14 -07004890F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004891F: include/linux/gpio/
4892F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004893F: include/asm-generic/gpio.h
Linus Walleij3c702e92015-10-21 15:29:53 +02004894F: include/uapi/linux/gpio.h
Linus Walleij6d591c42015-10-21 15:45:54 +02004895F: tools/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004896
Harry Wei71a6d0a2011-05-11 15:13:33 -07004897GRE DEMULTIPLEXER DRIVER
4898M: Dmitry Kozlov <xeb@mail.ru>
4899L: netdev@vger.kernel.org
4900S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004901F: net/ipv4/gre_demux.c
4902F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004903F: include/net/gre.h
4904
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004905GRETH 10/100/1G Ethernet MAC device driver
4906M: Kristoffer Glembo <kristoffer@gaisler.com>
4907L: netdev@vger.kernel.org
4908S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004909F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004910
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004911GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004912M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004913L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004914T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004915S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004916F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004917
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004918GSPCA GL860 SUBDRIVER
4919M: Olivier Lorin <o.lorin@laposte.net>
4920L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004921T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004922S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004923F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004924
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004925GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004927L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004928T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004929S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004930F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004931
4932GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004933M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004934L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004935T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004936S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004937F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004938
Brian Johnson261982f2009-07-19 15:58:56 -03004939GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004940M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004941L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004942T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004943S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004944F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004945
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004946GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004947M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004948L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004949T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004950S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004951F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004952
4953GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004954M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004955L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004956T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004957S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004958F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004959
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004960GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004961M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004962L: linux-efi@vger.kernel.org
4963S: Maintained
4964F: block/partitions/efi.*
4965
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004966STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004967M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004968L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004969T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004970S: Maintained
4971F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004972
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004973H8/300 ARCHITECTURE
4974M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004975L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004976W: http://uclinux-h8.sourceforge.jp
4977T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4978S: Maintained
4979F: arch/h8300/
4980F: drivers/clocksource/h8300_*.c
4981F: drivers/clk/h8300/
4982F: drivers/irqchip/irq-renesas-h8*.c
4983
Harry Wei71a6d0a2011-05-11 15:13:33 -07004984HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4985M: Frank Seidel <frank@f-seidel.de>
4986L: platform-driver-x86@vger.kernel.org
4987W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4988S: Maintained
4989F: drivers/platform/x86/hdaps.c
4990
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004991HDPVR USB VIDEO ENCODER DRIVER
4992M: Hans Verkuil <hverkuil@xs4all.nl>
4993L: linux-media@vger.kernel.org
4994T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004995W: https://linuxtv.org
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004996S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004997F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004998
Harry Wei71a6d0a2011-05-11 15:13:33 -07004999HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07005000M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07005001L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07005002S: Maintained
5003F: mm/memory-failure.c
5004F: mm/hwpoison-inject.c
5005
5006HYPERVISOR VIRTUAL CONSOLE DRIVER
5007L: linuxppc-dev@lists.ozlabs.org
5008S: Odd Fixes
5009F: drivers/tty/hvc/
5010
Antti Palosaarie5ab1472014-09-10 04:20:15 -03005011HACKRF MEDIA DRIVER
5012M: Antti Palosaari <crope@iki.fi>
5013L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005014W: https://linuxtv.org
Antti Palosaarie5ab1472014-09-10 04:20:15 -03005015W: http://palosaari.fi/linux/
5016Q: http://patchwork.linuxtv.org/project/linux-media/list/
5017T: git git://linuxtv.org/anttip/media_tree.git
5018S: Maintained
5019F: drivers/media/usb/hackrf/
5020
Michael Buesch844dd052006-06-26 00:24:59 -07005021HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07005022M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07005023M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005024L: linux-hwmon@vger.kernel.org
5025W: http://hwmon.wiki.kernel.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02005026T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07005027T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02005028S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01005029F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07005030F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01005031F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04005032
5033HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07005034M: Matt Mackall <mpm@selenic.com>
5035M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02005036L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07005037S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005038F: Documentation/hw_random.txt
5039F: drivers/char/hw_random/
5040F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04005041
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005042HARDWARE SPINLOCK CORE
5043M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08005044M: Bjorn Andersson <bjorn.andersson@linaro.org>
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005045S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005046T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005047F: Documentation/hwspinlock.txt
5048F: drivers/hwspinlock/hwspinlock_*
5049F: include/linux/hwspinlock.h
5050
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005052L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005054F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
Antti Palosaari91952bc2012-10-01 12:28:46 -03005056HD29L2 MEDIA DRIVER
5057M: Antti Palosaari <crope@iki.fi>
5058L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005059W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03005060W: http://palosaari.fi/linux/
5061Q: http://patchwork.linuxtv.org/project/linux-media/list/
5062T: git git://linuxtv.org/anttip/media_tree.git
5063S: Maintained
5064F: drivers/media/dvb-frontends/hd29l2*
5065
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005066HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Bracea0a268a2016-02-23 15:21:44 -06005067M: Don Brace <don.brace@microsemi.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005068L: iss_storagedev@hp.com
Don Bracea0a268a2016-02-23 15:21:44 -06005069L: esc.storagedev@microsemi.com
Don Brace693373d2014-10-15 22:32:41 +00005070L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005071S: Supported
5072F: Documentation/scsi/hpsa.txt
5073F: drivers/scsi/hpsa*.[ch]
5074F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005075F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005076
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005077HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace516fdce2016-03-08 16:05:51 -06005078M: Don Brace <don.brace@microsemi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005079L: iss_storagedev@hp.com
Don Brace516fdce2016-03-08 16:05:51 -06005080L: esc.storagedev@microsemi.com
Don Brace693373d2014-10-15 22:32:41 +00005081L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005083F: Documentation/blockdev/cciss.txt
5084F: drivers/block/cciss*
5085F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005086F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005087
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02005089L: linux-fsdevel@vger.kernel.org
5090S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005091F: Documentation/filesystems/hfs.txt
5092F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08005094HFSPLUS FILESYSTEM
5095L: linux-fsdevel@vger.kernel.org
5096S: Orphan
5097F: Documentation/filesystems/hfsplus.txt
5098F: fs/hfsplus/
5099
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005101M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102L: linux-nvidia@lists.surfsouth.com
5103W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5104S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005105F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005107HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02005108M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01005109M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02005110L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005112F: arch/x86/power/
5113F: drivers/base/power/
5114F: kernel/power/
5115F: include/linux/suspend.h
5116F: include/linux/freezer.h
5117F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07005118F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005119
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005120HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005121M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +01005122R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04005123L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005124T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005126F: drivers/hid/
5127F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005128F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005129
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005130HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02005131M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005132M: Jonathan Cameron <jic23@kernel.org>
5133M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5134L: linux-input@vger.kernel.org
5135L: linux-iio@vger.kernel.org
5136S: Maintained
5137F: Documentation/hid/hid-sensor*
5138F: drivers/hid/hid-sensor-*
5139F: drivers/iio/*/hid-*
5140F: include/linux/hid-sensor-*
5141
Ingo Molnar38bed542007-02-22 09:09:34 +01005142HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07005143M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005144L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005145T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01005146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005147F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02005148F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01005149F: kernel/time/clockevents.c
5150F: kernel/time/tick*.*
5151F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07005152F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07005153F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01005154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07005157S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005158F: drivers/net/hamradio/dmascc.c
5159F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005161HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005162M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005163W: http://www.highpoint-tech.com
5164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005165F: Documentation/scsi/hptiop.txt
5166F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005167
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005169M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170L: linux-hippi@sunsite.dk
5171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005172F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005173F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005174F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005175F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
John Garry16c6c252015-11-18 00:50:59 +08005177HISILICON SAS Controller
5178M: John Garry <john.garry@huawei.com>
5179W: http://www.hisilicon.com
5180S: Supported
5181F: drivers/scsi/hisi_sas/
5182F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5183
Jouni Malinenff1d2762005-05-12 22:54:16 -04005184HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005185M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005186L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005187L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005188W: http://hostap.epitest.fi/
5189S: Maintained
Kalle Valoeb4f98d2015-11-18 09:42:58 +02005190F: drivers/net/wireless/intersil/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005191
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005192HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005193L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005194S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005195F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005197HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005198M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005199S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005200F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005201
Joe Perches7d2c86b2009-04-07 20:59:01 -07005202HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005203M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005205F: Documentation/timers/hpet.txt
5206F: drivers/char/hpet.c
5207F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005208F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005209
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005210HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005211S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005212F: arch/x86/kernel/hpet.c
5213F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005214
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005216M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005219F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005221HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005222M: Sebastian Reichel <sre@kernel.org>
5223T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005224S: Maintained
5225F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005226F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005227F: drivers/hsi/
5228F: include/linux/hsi/
5229F: include/uapi/linux/hsi/
5230
Joe Perches7d2c86b2009-04-07 20:59:01 -07005231HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005232M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005233W: http://www.pharscape.org
5234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005235F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005236
Arvid Brodin19990e22013-11-29 23:36:00 +01005237HSR NETWORK PROTOCOL
5238M: Arvid Brodin <arvid.brodin@alten.se>
5239L: netdev@vger.kernel.org
5240S: Maintained
5241F: net/hsr/
5242
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005243HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005244M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005245L: linux-input@vger.kernel.org
5246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005247F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005248
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005250M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005252F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005254Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005255M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005256M: Haiyang Zhang <haiyangz@microsoft.com>
5257L: devel@linuxdriverproject.org
5258S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005259F: arch/x86/include/asm/mshyperv.h
5260F: arch/x86/include/uapi/asm/hyperv.h
5261F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005262F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005263F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005264F: drivers/input/serio/hyperv-keyboard.c
Jake Oshins4daace02016-02-16 21:56:23 +00005265F: drivers/pci/host/pci-hyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005266F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005267F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005268F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005269F: include/linux/hyperv.h
5270F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005271F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005272
Peter Rosin7724fd02016-03-14 23:52:43 +01005273I2C MUXES
5274M: Peter Rosin <peda@axentia.se>
5275L: linux-i2c@vger.kernel.org
5276S: Maintained
5277F: Documentation/i2c/muxes/
5278F: Documentation/devicetree/bindings/i2c/i2c-mux*
5279F: drivers/i2c/i2c-mux.c
5280F: drivers/i2c/muxes/
5281F: include/linux/i2c-mux.h
5282
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005283I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005284M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005285L: linux-i2c@vger.kernel.org
5286S: Maintained
5287F: Documentation/i2c/busses/i2c-parport
5288F: Documentation/i2c/busses/i2c-parport-light
5289F: drivers/i2c/busses/i2c-parport.c
5290F: drivers/i2c/busses/i2c-parport-light.c
5291
5292I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005293M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005294L: linux-i2c@vger.kernel.org
5295S: Maintained
5296F: Documentation/i2c/busses/i2c-ali1535
5297F: Documentation/i2c/busses/i2c-ali1563
5298F: Documentation/i2c/busses/i2c-ali15x3
5299F: Documentation/i2c/busses/i2c-amd756
5300F: Documentation/i2c/busses/i2c-amd8111
5301F: Documentation/i2c/busses/i2c-i801
5302F: Documentation/i2c/busses/i2c-nforce2
5303F: Documentation/i2c/busses/i2c-piix4
5304F: Documentation/i2c/busses/i2c-sis5595
5305F: Documentation/i2c/busses/i2c-sis630
5306F: Documentation/i2c/busses/i2c-sis96x
5307F: Documentation/i2c/busses/i2c-via
5308F: Documentation/i2c/busses/i2c-viapro
5309F: drivers/i2c/busses/i2c-ali1535.c
5310F: drivers/i2c/busses/i2c-ali1563.c
5311F: drivers/i2c/busses/i2c-ali15x3.c
5312F: drivers/i2c/busses/i2c-amd756.c
5313F: drivers/i2c/busses/i2c-amd756-s4882.c
5314F: drivers/i2c/busses/i2c-amd8111.c
5315F: drivers/i2c/busses/i2c-i801.c
5316F: drivers/i2c/busses/i2c-isch.c
5317F: drivers/i2c/busses/i2c-nforce2.c
5318F: drivers/i2c/busses/i2c-nforce2-s4985.c
5319F: drivers/i2c/busses/i2c-piix4.c
5320F: drivers/i2c/busses/i2c-sis5595.c
5321F: drivers/i2c/busses/i2c-sis630.c
5322F: drivers/i2c/busses/i2c-sis96x.c
5323F: drivers/i2c/busses/i2c-via.c
5324F: drivers/i2c/busses/i2c-viapro.c
5325
Neil Hormancb7f07a2013-02-10 11:59:03 -05005326I2C/SMBUS ISMT DRIVER
5327M: Seth Heasley <seth.heasley@intel.com>
5328M: Neil Horman <nhorman@tuxdriver.com>
5329L: linux-i2c@vger.kernel.org
5330F: drivers/i2c/busses/i2c-ismt.c
5331F: Documentation/i2c/busses/i2c-ismt
5332
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005333I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005334M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005335L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005336S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005337F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005338
Jean Delvare5b543962005-08-15 19:51:02 +02005339I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005340M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005341L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005342W: https://i2c.wiki.kernel.org/
5343Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005344T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005346F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005347F: Documentation/i2c/
5348F: drivers/i2c/
Wolfram Sang630bc462015-10-29 08:25:48 +01005349F: drivers/i2c/*/
Joe Perches679655d2009-04-07 20:44:32 -07005350F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005351F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005352F: include/uapi/linux/i2c.h
5353F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Wolfram Sang4560d672014-08-19 10:08:35 -05005355I2C ACPI SUPPORT
5356M: Mika Westerberg <mika.westerberg@linux.intel.com>
5357L: linux-i2c@vger.kernel.org
5358L: linux-acpi@vger.kernel.org
5359S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005360
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005361I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005362M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005363L: linux-i2c@vger.kernel.org
5364S: Maintained
5365F: Documentation/i2c/busses/i2c-taos-evm
5366F: drivers/i2c/busses/i2c-taos-evm.c
5367
Till Harbaume8c76ee2007-05-01 23:26:35 +02005368I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005369M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005370L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005371W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005373F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005374
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005378F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379
5380i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005381M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005382T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383S: Maintained
5384
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005386M: Tony Luck <tony.luck@intel.com>
5387M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005389T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005391F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005393IBM Power VMX Cryptographic instructions
5394M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005395M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005396L: linux-crypto@vger.kernel.org
5397S: Supported
5398F: drivers/crypto/vmx/Makefile
5399F: drivers/crypto/vmx/Kconfig
5400F: drivers/crypto/vmx/vmx.c
5401F: drivers/crypto/vmx/aes*
5402F: drivers/crypto/vmx/ghash*
5403F: drivers/crypto/vmx/ppc-xlate.pl
5404
Kent Yoder956c2032012-09-07 04:17:01 +08005405IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005406M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005407M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005408L: linux-crypto@vger.kernel.org
5409S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005410F: drivers/crypto/nx/Makefile
5411F: drivers/crypto/nx/Kconfig
5412F: drivers/crypto/nx/nx-aes*
5413F: drivers/crypto/nx/nx-sha*
5414F: drivers/crypto/nx/nx.*
5415F: drivers/crypto/nx/nx_csbcpb.h
5416F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005417
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005418IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005419M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005420S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005421F: drivers/crypto/nx/Makefile
5422F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005423F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005424F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005425F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005426F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005427
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005429M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005431F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Santiago Leon9d348af2010-09-03 18:29:53 +00005433IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005434M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005435L: netdev@vger.kernel.org
5436S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005437F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005438
Thomas Falcon032c5e82015-12-21 11:26:06 -06005439IBM Power SRIOV Virtual NIC Device Driver
5440M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5441M: John Allen <jallen@linux.vnet.ibm.com>
5442L: netdev@vger.kernel.org
5443S: Supported
5444F: drivers/net/ethernet/ibm/ibmvnic.*
5445
Nathan Fontenote6babec2014-04-09 13:32:06 -05005446IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005447M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005448L: linux-scsi@vger.kernel.org
5449S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005450F: drivers/scsi/ibmvscsi/ibmvscsi*
5451F: drivers/scsi/ibmvscsi/viosrp.h
5452
5453IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005454M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005455L: linux-scsi@vger.kernel.org
5456S: Supported
5457F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005458
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005460S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005461F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005463ICH LPC AND GPIO DRIVER
5464M: Peter Tyser <ptyser@xes-inc.com>
5465S: Maintained
5466F: drivers/mfd/lpc_ich.c
5467F: drivers/gpio/gpio-ich.c
5468
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005469IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005470M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005472Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005473T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005475F: Documentation/ide/
5476F: drivers/ide/
5477F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478
Ike Panhc6cb8c132011-08-25 22:28:45 +08005479IDEAPAD LAPTOP EXTRAS DRIVER
5480M: Ike Panhc <ike.pan@canonical.com>
5481L: platform-driver-x86@vger.kernel.org
5482W: http://launchpad.net/ideapad-laptop
5483S: Maintained
5484F: drivers/platform/x86/ideapad-laptop.c
5485
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005486IDEAPAD LAPTOP SLIDEBAR DRIVER
5487M: Andrey Moiseev <o2g.org.ru@gmail.com>
5488L: linux-input@vger.kernel.org
5489W: https://github.com/o2genum/ideapad-slidebar
5490S: Maintained
5491F: drivers/input/misc/ideapad_slidebar.c
5492
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005493IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005494M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005495L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: Documentation/cdrom/ide-cd
5498F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
Andy Henroid27471fd2008-10-09 11:45:22 -07005500IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005501M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005502L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005503S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005504F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005505
Sergey Lapin02cf2282009-06-08 12:18:50 +00005506IEEE 802.15.4 SUBSYSTEM
Alexander Aringaff3eaa2016-02-19 09:59:10 +01005507M: Alexander Aring <aar@pengutronix.de>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305508L: linux-wpan@vger.kernel.org
Alexander Aringaff3eaa2016-02-19 09:59:10 +01005509W: http://wpan.cakelab.org/
5510T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5511T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005512S: Maintained
5513F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005514F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005515F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005516F: include/linux/nl802154.h
5517F: include/linux/ieee802154.h
5518F: include/net/nl802154.h
5519F: include/net/mac802154.h
5520F: include/net/af_ieee802154.h
5521F: include/net/cfg802154.h
5522F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305523F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005524
Sean Youngb1c97192014-10-23 17:58:22 -03005525IGORPLUG-USB IR RECEIVER
5526M: Sean Young <sean@mess.org>
5527L: linux-media@vger.kernel.org
5528S: Maintained
5529F: drivers/media/rc/igorplugusb.c
5530
Sean Young40ad4a32012-11-19 10:32:53 -03005531IGUANAWORKS USB IR TRANSCEIVER
5532M: Sean Young <sean@mess.org>
5533L: linux-media@vger.kernel.org
5534S: Maintained
5535F: drivers/media/rc/iguanair.c
5536
Ameya Palande9545f862012-01-10 09:00:58 -08005537IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005538M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005539R: Hartmut Knaack <knaack.h@gmx.de>
5540R: Lars-Peter Clausen <lars@metafoo.de>
5541R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005542L: linux-iio@vger.kernel.org
5543S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005544F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005545F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005546F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005547F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005548
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005549IKANOS/ADI EAGLE ADSL USB DRIVER
5550M: Matthieu Castet <castet.matthieu@free.fr>
5551M: Stanislaw Gruszka <stf_xl@wp.pl>
5552S: Maintained
5553F: drivers/usb/atm/ueagle-atm.c
5554
Guenter Roecke89ab512013-03-08 08:13:09 -08005555INA209 HARDWARE MONITOR DRIVER
5556M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005557L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08005558S: Maintained
5559F: Documentation/hwmon/ina209
5560F: Documentation/devicetree/bindings/i2c/ina209.txt
5561F: drivers/hwmon/ina209.c
5562
5563INA2XX HARDWARE MONITOR DRIVER
5564M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005565L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08005566S: Maintained
5567F: Documentation/hwmon/ina2xx
5568F: drivers/hwmon/ina2xx.c
5569F: include/linux/platform_data/ina2xx.h
5570
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005571INDUSTRY PACK SUBSYSTEM (IPACK)
5572M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5573M: Jens Taprogge <jens.taprogge@taprogge.org>
5574M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5575L: industrypack-devel@lists.sourceforge.net
5576W: http://industrypack.sourceforge.net
5577S: Maintained
5578F: drivers/ipack/
5579
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005580INGENIC JZ4780 DMA Driver
5581M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5582S: Maintained
5583F: drivers/dma/dma-jz4780.c
5584
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005585INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005586M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005587M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005588L: linux-ima-devel@lists.sourceforge.net
5589L: linux-ima-user@lists.sourceforge.net
5590L: linux-security-module@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08005591T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005592S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005593F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005594
James Hogan9a4ea5a2014-11-17 09:17:49 -03005595IMGTEC IR DECODER DRIVER
5596M: James Hogan <james.hogan@imgtec.com>
5597S: Maintained
5598F: drivers/media/rc/img-ir/
5599
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005601L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005602S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005603F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
5605INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005606M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005607M: Sean Hefty <sean.hefty@intel.com>
5608M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005609L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005610W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005611Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005612T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005614F: Documentation/infiniband/
5615F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005616F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005617F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005618F: include/uapi/rdma/
5619F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Robert Lovec9f04f52005-07-15 12:21:07 -04005621INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005622M: John McCutchan <john@johnmccutchan.com>
5623M: Robert Love <rlove@rlove.org>
5624M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005626F: Documentation/filesystems/inotify.txt
5627F: fs/notify/inotify/
5628F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005629F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005630
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005631INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005632M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005633L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005634Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005635T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005637F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005638F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005639F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005640F: include/linux/input/
Andreas Färbere52d8392016-03-10 17:19:28 -08005641F: Documentation/devicetree/bindings/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005642
Henrik Rydberg3267a872010-06-24 19:10:40 -07005643INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005644M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005645L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005646S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005647F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005648F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005649K: \b(ABS|SYN)_MT_
5650
Jie Yang97fa99a2015-02-02 16:55:27 +08005651INTEL ASoC BDW/HSW DRIVERS
5652M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005653L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005654S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005655F: sound/soc/intel/common/sst-dsp*
5656F: sound/soc/intel/common/sst-firmware.c
5657F: sound/soc/intel/boards/broadwell.c
5658F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005659
Dave Jiang4ac13e12011-07-29 17:16:55 -07005660INTEL C600 SERIES SAS CONTROLLER DRIVER
5661M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005662M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005663L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005664T: git git://git.code.sf.net/p/intel-sas/isci
5665S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005666F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005667
Alex Hungecc83e52015-12-18 23:31:10 +08005668INTEL HID EVENT DRIVER
5669M: Alex Hung <alex.hung@canonical.com>
5670L: platform-driver-x86@vger.kernel.org
5671S: Maintained
5672F: drivers/platform/x86/intel-hid.c
5673
Len Brown26717172010-03-08 14:07:30 -05005674INTEL IDLE DRIVER
5675M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005676L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005677T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005678S: Supported
5679F: drivers/idle/intel_idle.c
5680
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005681INTEL PSTATE DRIVER
Srinivas Pandruvada58ac1f62015-11-02 09:45:46 -08005682M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5683M: Len Brown <lenb@kernel.org>
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005684L: linux-pm@vger.kernel.org
5685S: Supported
5686F: drivers/cpufreq/intel_pstate.c
5687
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005688INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005689M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005690L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005692F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005693F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005696M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005697L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005698S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005699F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305701INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005702M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005703L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005704W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305705S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005706F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305707
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005708INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005709M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005710R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005711L: dmaengine@vger.kernel.org
5712Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005714F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005715
David Woodhouse6c8909b2008-10-18 16:12:17 +01005716INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005717M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005718L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005719T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005720S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005721F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005722F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005723
Dan Williamsb3e5f262007-08-07 10:26:35 -07005724INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005725R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005726S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005727F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005728
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005729INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005730M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005732F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5733F: arch/arm/mach-ixp4xx/include/mach/npe.h
5734F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5735F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005736F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005737F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005738
Michael Buesch844dd052006-06-26 00:24:59 -07005739INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005740M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005742F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005743
Jeff Kirsher2f302322015-03-25 17:01:03 -07005744INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005745M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005746R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5747R: Shannon Nelson <shannon.nelson@intel.com>
5748R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5749R: Don Skidmore <donald.c.skidmore@intel.com>
Jeff Kirsher6e80a182015-11-10 11:09:06 -08005750R: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005751R: John Ronciak <john.ronciak@intel.com>
5752R: Mitch Williams <mitch.a.williams@intel.com>
5753L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005754W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005755W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005756Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5757T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5758T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005760F: Documentation/networking/e100.txt
5761F: Documentation/networking/e1000.txt
5762F: Documentation/networking/e1000e.txt
5763F: Documentation/networking/igb.txt
5764F: Documentation/networking/igbvf.txt
5765F: Documentation/networking/ixgb.txt
5766F: Documentation/networking/ixgbe.txt
5767F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005768F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005769F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005770F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005771F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772
Faisal Latif6e4de862016-01-20 13:40:16 -06005773INTEL RDMA RNIC DRIVER
5774M: Faisal Latif <faisal.latif@intel.com>
5775R: Chien Tin Tung <chien.tin.tung@intel.com>
5776R: Mustafa Ismail <mustafa.ismail@intel.com>
5777R: Shiraz Saleem <shiraz.saleem@intel.com>
5778R: Tatyana Nikolova <tatyana.e.nikolova@intel.com>
5779L: linux-rdma@vger.kernel.org
5780S: Supported
5781F: drivers/infiniband/hw/i40iw/
5782
Linus Walleij0963d59b2013-10-19 15:39:17 +02005783INTEL-MID GPIO DRIVER
5784M: David Cohen <david.a.cohen@linux.intel.com>
5785L: linux-gpio@vger.kernel.org
5786S: Maintained
5787F: drivers/gpio/gpio-intel-mid.c
5788
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005789INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5790M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005791L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005793F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005794F: Documentation/networking/README.ipw2200
Kalle Valo367a1092015-11-17 20:24:59 +02005795F: drivers/net/wireless/intel/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005796
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005797INTEL(R) TRACE HUB
5798M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5799S: Supported
5800F: Documentation/trace/intel_th.txt
5801F: drivers/hwtracing/intel_th/
5802
Shane Wang4bd96a72010-03-10 14:36:10 +08005803INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Wei, Gang74b18e12015-12-02 07:07:20 +00005804M: Ning Sun <ning.sun@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005805L: tboot-devel@lists.sourceforge.net
5806W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005807T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005808S: Supported
5809F: Documentation/intel_txt.txt
5810F: include/linux/tboot.h
5811F: arch/x86/kernel/tboot.c
5812
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005813INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005814M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005815M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005816L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005817S: Supported
5818W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/wimax/README.i2400m
5820F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005821F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005822
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005823INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5824M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005825L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005826S: Supported
Kalle Valo7ac9a362015-11-17 20:37:11 +02005827F: drivers/net/wireless/intel/iwlegacy/
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005828
Zhu Yib481de92007-09-25 17:54:57 -07005829INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005830M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005831M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005832M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005833L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005834W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005835T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005836S: Supported
Kalle Valoe705c122015-11-17 20:57:38 +02005837F: drivers/net/wireless/intel/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005838
Tomas Winklerde8fe022012-05-09 16:39:02 +03005839INTEL MANAGEMENT ENGINE (mei)
5840M: Tomas Winkler <tomas.winkler@intel.com>
5841L: linux-kernel@vger.kernel.org
5842S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005843F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005844F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005845F: drivers/misc/mei/*
Tomas Winkler222818c2016-01-08 00:49:22 +02005846F: drivers/watchdog/mei_wdt.c
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005847F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005848
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005849INTEL MIC DRIVERS (mic)
5850M: Sudeep Dutt <sudeep.dutt@intel.com>
5851M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5852S: Supported
5853W: https://github.com/sudeepdutt/mic
5854W: http://software.intel.com/en-us/mic-developer
5855F: include/linux/mic_bus.h
5856F: include/linux/scif.h
5857F: include/uapi/linux/mic_common.h
5858F: include/uapi/linux/mic_ioctl.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005859F: include/uapi/linux/scif_ioctl.h
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005860F: drivers/misc/mic/
5861F: drivers/dma/mic_x100_dma.c
5862F: drivers/dma/mic_x100_dma.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005863F: Documentation/mic/
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005864
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005865INTEL PMC/P-Unit IPC DRIVER
qipeng.zha0a8b8352015-06-27 00:32:15 +08005866M: Zha Qipeng<qipeng.zha@intel.com>
5867L: platform-driver-x86@vger.kernel.org
5868S: Maintained
5869F: drivers/platform/x86/intel_pmc_ipc.c
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005870F: drivers/platform/x86/intel_punit_ipc.c
qipeng.zha0a8b8352015-06-27 00:32:15 +08005871F: arch/x86/include/asm/intel_pmc_ipc.h
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005872F: arch/x86/include/asm/intel_punit_ipc.h
qipeng.zha0a8b8352015-06-27 00:32:15 +08005873
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305874INTEL TELEMETRY DRIVER
5875M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5876L: platform-driver-x86@vger.kernel.org
5877S: Maintained
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305878F: arch/x86/include/asm/intel_telemetry.h
Souvik Kumar Chakravartyf1fc3cd2016-01-21 09:30:50 +05305879F: drivers/platform/x86/intel_telemetry*
Ralf Baechlecb109a02007-08-30 23:56:30 -07005880
Joe Perches8b58be82009-07-29 15:04:30 -07005881IOC3 ETHERNET DRIVER
Ralf Baechled39e0722010-10-19 18:32:41 +01005882M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlecb109a02007-08-30 23:56:30 -07005883L: linux-mips@linux-mips.org
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005884S: Maintained
Ralf Baechlecb109a02007-08-30 23:56:30 -07005885F: drivers/net/ethernet/sgi/ioc3-eth.c
Stephen Warren0b6e8562013-09-13 13:10:27 -06005886
5887IOC3 SERIAL DRIVER
5888M: Pat Gefre <pfg@sgi.com>
5889L: linux-serial@vger.kernel.org
5890S: Maintained
5891F: drivers/tty/serial/ioc3_serial.c
5892
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005893IOMMU DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005894M: Joerg Roedel <joro@8bytes.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895L: iommu@lists.linux-foundation.org
Joe Perches679655d2009-04-07 20:44:32 -07005896T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897S: Maintained
Francois Romieu1202d6f2007-09-17 17:13:55 -07005898F: drivers/iommu/
Joe Perches8b58be82009-07-29 15:04:30 -07005899
5900IP MASQUERADING
Francois Romieu1202d6f2007-09-17 17:13:55 -07005901M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5902S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005903F: net/ipv4/netfilter/ipt_MASQUERADE.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07005904
Corey Minyard4409ebe2006-04-20 02:43:12 -07005905IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005906M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005907L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005908W: http://openipmi.sourceforge.net/
5909S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005910F: Documentation/IPMI.txt
5911F: drivers/char/ipmi/
5912F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005913F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005914
Kenneth Westfield2d800892015-03-03 16:21:50 -08005915QCOM AUDIO (ASoC) DRIVERS
5916M: Patrick Lai <plai@codeaurora.org>
5917M: Banajit Goswami <bgoswami@codeaurora.org>
5918L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5919S: Supported
5920F: sound/soc/qcom/
5921
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005922IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005923M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005924L: linux-scsi@vger.kernel.org
5925W: http://www.adaptec.com/
5926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005927F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005928
5929IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005930M: Wensong Zhang <wensong@linux-vs.org>
5931M: Simon Horman <horms@verge.net.au>
5932M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005933L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005934L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005936T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5937T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
Joe Perches679655d2009-04-07 20:44:32 -07005938F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005939F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005940F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005941F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942
Randy Dunlape7839f22008-10-12 16:11:45 -07005943IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005944M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005945M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005946S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005947F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005948
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005949IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005950M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005951L: netdev@vger.kernel.org
5952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005953F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005954F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005955F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005956
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005958M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005959L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005960L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005962S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005963T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005964F: Documentation/networking/irda.txt
5965F: drivers/net/irda/
5966F: include/net/irda/
5967F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005969IRQ SUBSYSTEM
5970M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005971L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005972S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005973T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005974F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005975
5976IRQCHIP DRIVERS
5977M: Thomas Gleixner <tglx@linutronix.de>
5978M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005979M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005980L: linux-kernel@vger.kernel.org
5981S: Maintained
5982T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5983T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005984F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005985F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005986
Grant Likely7ab3a832012-02-14 14:06:47 -07005987IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005988M: Jiang Liu <jiang.liu@linux.intel.com>
5989M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005990S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005991T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005992F: Documentation/IRQ-domain.txt
5993F: include/linux/irqdomain.h
5994F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005995F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005996
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005997ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005998M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006000F: Documentation/isapnp.txt
6001F: drivers/pnp/isapnp/
6002F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006003
Hans Verkuild39b8422012-11-23 07:07:02 -03006004ISA RADIO MODULE
6005M: Hans Verkuil <hverkuil@xs4all.nl>
6006L: linux-media@vger.kernel.org
6007T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006008W: https://linuxtv.org
Hans Verkuild39b8422012-11-23 07:07:02 -03006009S: Maintained
6010F: drivers/media/radio/radio-isa*
6011
Harry Wei71a6d0a2011-05-11 15:13:33 -07006012iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6013M: Peter Jones <pjones@redhat.com>
6014M: Konrad Rzeszutek Wilk <konrad@kernel.org>
6015S: Maintained
6016F: drivers/firmware/iscsi_ibft*
6017
Mike Christie14816b1e2007-11-28 16:22:06 -08006018ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07006019M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08006020L: open-iscsi@googlegroups.com
6021W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07006022T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08006023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: drivers/scsi/*iscsi*
6025F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08006026
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006027ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6028M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03006029M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006030M: Roi Dayan <roid@mellanox.com>
6031L: linux-rdma@vger.kernel.org
6032S: Supported
6033W: http://www.openfabrics.org
6034W: www.open-iscsi.org
6035Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07006036F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006037
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02006038ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6039M: Sagi Grimberg <sagig@mellanox.com>
6040T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6041L: linux-rdma@vger.kernel.org
6042L: target-devel@vger.kernel.org
6043S: Supported
6044W: http://www.linux-iscsi.org
6045F: drivers/infiniband/ulp/isert
6046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006048M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07006049L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07006050L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07006052T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006054F: Documentation/isdn/
6055F: drivers/isdn/
6056F: include/linux/isdn.h
6057F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006058F: include/uapi/linux/isdn.h
6059F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060
6061ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07006062M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07006063L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064W: http://www.melware.de
6065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006066F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Jean Delvared6248702010-03-05 22:17:20 +01006068IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006069M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006070L: linux-hwmon@vger.kernel.org
Jean Delvared6248702010-03-05 22:17:20 +01006071S: Maintained
6072F: Documentation/hwmon/it87
6073F: drivers/hwmon/it87.c
6074
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006075IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006076M: Antti Palosaari <crope@iki.fi>
6077L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006078W: https://linuxtv.org
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006079W: http://palosaari.fi/linux/
6080Q: http://patchwork.linuxtv.org/project/linux-media/list/
6081T: git git://linuxtv.org/anttip/media_tree.git
6082S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03006083F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006084
Hans Verkuil91821ff2007-12-02 09:35:33 -03006085IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03006086M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08006087L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006088L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006089T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03006090W: http://www.ivtvdriver.org
6091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006092F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006093F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006094F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03006095
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006096IX2505V MEDIA DRIVER
6097M: Malcolm Priestley <tvboxspy@gmail.com>
6098L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006099W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006100Q: http://patchwork.linuxtv.org/project/linux-media/list/
6101S: Maintained
6102F: drivers/media/dvb-frontends/ix2505v*
6103
Guenter Roeck4453d732010-08-09 17:21:08 -07006104JC42.4 TEMPERATURE SENSOR DRIVER
6105M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006106L: linux-hwmon@vger.kernel.org
Guenter Roeck4453d732010-08-09 17:21:08 -07006107S: Maintained
6108F: drivers/hwmon/jc42.c
6109F: Documentation/hwmon/jc42
6110
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006111JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06006112M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006113L: jfs-discussion@lists.sourceforge.net
6114W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07006115T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05006116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006117F: Documentation/filesystems/jfs.txt
6118F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006119
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006120JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006121M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006122L: netdev@vger.kernel.org
6123S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07006124F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006125
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006127M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04006128L: linux-mtd@lists.infradead.org
6129W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006131F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006132F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
Theodore Ts'od183e112011-05-26 09:53:09 -04006134JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6135M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02006136M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04006137L: linux-ext4@vger.kernel.org
6138S: Maintained
6139F: fs/jbd2/
6140F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07006141
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03006142JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6143M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6144L: linux-media@vger.kernel.org
6145S: Maintained
6146F: drivers/media/platform/rcar_jpu.c
6147
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006148JSM Neo PCI based serial card
Gabriel Krisman Bertazidf247082016-02-08 10:20:59 -02006149M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006150L: linux-serial@vger.kernel.org
6151S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006152F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006153
Clemens Ladischaf399172011-01-10 16:32:54 +01006154K10TEMP HARDWARE MONITORING DRIVER
6155M: Clemens Ladisch <clemens@ladisch.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006156L: linux-hwmon@vger.kernel.org
Clemens Ladischaf399172011-01-10 16:32:54 +01006157S: Maintained
6158F: Documentation/hwmon/k10temp
6159F: drivers/hwmon/k10temp.c
6160
Rudolf Marek4660cb32006-10-08 22:01:26 +02006161K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006162M: Rudolf Marek <r.marek@assembler.cz>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006163L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006165F: Documentation/hwmon/k8temp
6166F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167
Andrey Ryabinin0ba1d912016-03-25 14:22:17 -07006168KASAN
6169M: Andrey Ryabinin <aryabinin@virtuozzo.com>
6170R: Alexander Potapenko <glider@google.com>
6171R: Dmitry Vyukov <dvyukov@google.com>
6172L: kasan-dev@googlegroups.com
6173S: Maintained
6174F: arch/*/include/asm/kasan.h
6175F: arch/*/mm/kasan_init*
6176F: Documentation/kasan.txt
6177F: include/linux/kasan.h
6178F: lib/test_kasan.c
6179F: mm/kasan/
6180F: scripts/Makefile.kasan
6181
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01006183M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006184L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08006185T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01006186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006187F: Documentation/kbuild/kconfig-language.txt
6188F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189
Vivek Goyalea6c2082006-05-20 14:59:55 -07006190KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07006191M: Vivek Goyal <vgoyal@redhat.com>
6192M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07006193L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07006194W: http://lse.sourceforge.net/kdump/
6195S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006196F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07006197
Hans Verkuilf41bf022012-11-23 07:04:36 -03006198KEENE FM RADIO TRANSMITTER DRIVER
6199M: Hans Verkuil <hverkuil@xs4all.nl>
6200L: linux-media@vger.kernel.org
6201T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006202W: https://linuxtv.org
Hans Verkuilf41bf022012-11-23 07:04:36 -03006203S: Maintained
6204F: drivers/media/radio/radio-keene*
6205
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07006207M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08006208L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006210F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211
Michal Marek70fb7ba2010-01-29 14:22:43 +01006212KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07006213M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07006214T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6215T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006216L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08006217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006218F: Documentation/kbuild/
6219F: Makefile
6220F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01006221F: scripts/basic/
6222F: scripts/mk*
6223F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224
6225KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006226L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006227W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006228S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006230KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006231M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f2015-08-24 16:44:40 -04006232M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006233L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234W: http://nfs.sourceforge.net/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006235T: git git://linux-nfs.org/~bfields/linux.git
NeilBrown98fac232007-01-26 00:56:57 -08006236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006237F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006238F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006239F: fs/lockd/
6240F: fs/nfs_common/
6241F: net/sunrpc/
6242F: include/linux/lockd/
6243F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006244F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245
Shuah Khan13b122b2014-10-13 15:51:21 -07006246KERNEL SELFTEST FRAMEWORK
6247M: Shuah Khan <shuahkh@osg.samsung.com>
Shuah Khan64f00852016-02-17 13:11:32 -08006248L: linux-kselftest@vger.kernel.org
Shuah Khan13b122b2014-10-13 15:51:21 -07006249T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6250S: Maintained
6251F: tools/testing/selftests
6252
Avi Kivity426d62e2006-12-13 00:34:03 -08006253KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006254M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006255M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006256L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306257W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306258T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006259S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006260F: Documentation/*/kvm*.txt
6261F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006262F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006263F: arch/x86/kernel/kvm.c
6264F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006265F: arch/*/include/asm/kvm*
6266F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006267F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006268F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006269
Joerg Roedelad8003d2008-09-10 20:01:07 +02006270KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01006271M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006272L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006273W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01006274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006275F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006276F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006277
Hollis Blanchard513014b2008-04-16 23:28:08 -05006278KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006279M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006280L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006281W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006282T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006283S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006284F: arch/powerpc/include/asm/kvm*
6285F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006286
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006287KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006288M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006289M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006290L: linux-s390@vger.kernel.org
6291W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006292T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006293S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006294F: Documentation/s390/kvm.txt
6295F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006296F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006297
Christoffer Dalla7494742013-01-20 18:42:26 -05006298KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006299M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006300M: Marc Zyngier <marc.zyngier@arm.com>
6301L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006302L: kvmarm@lists.cs.columbia.edu
6303W: http://systems.cs.columbia.edu/projects/kvm-arm
Fengguang Wu1b1ebe82015-12-18 15:51:44 +08006304T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006305S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006306F: arch/arm/include/uapi/asm/kvm*
6307F: arch/arm/include/asm/kvm*
6308F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006309F: virt/kvm/arm/
6310F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006311
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006312KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006313M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006314M: Marc Zyngier <marc.zyngier@arm.com>
6315L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6316L: kvmarm@lists.cs.columbia.edu
6317S: Maintained
6318F: arch/arm64/include/uapi/asm/kvm*
6319F: arch/arm64/include/asm/kvm*
6320F: arch/arm64/kvm/
6321
James Hoganbfd3d532015-12-16 23:49:41 +00006322KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6323M: James Hogan <james.hogan@imgtec.com>
6324L: linux-mips@linux-mips.org
6325S: Supported
6326F: arch/mips/include/uapi/asm/kvm*
6327F: arch/mips/include/asm/kvm*
6328F: arch/mips/kvm/
6329
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006330KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006331M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006332W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006333L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006335F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006336F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006337F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006338
David Howellse9714612010-03-29 23:42:09 +01006339KEYS/KEYRINGS:
6340M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006341L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006342S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07006343F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006344F: include/linux/key.h
6345F: include/linux/key-type.h
6346F: include/keys/
6347F: security/keys/
6348
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006349KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006350M: David Safford <safford@us.ibm.com>
6351M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006352L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006353L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006354S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006355F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006356F: include/keys/trusted-type.h
6357F: security/keys/trusted.c
6358F: security/keys/trusted.h
6359
6360KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006361M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6362M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006363L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006364L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006365S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07006366F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006367F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006368F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006369
Jason Wessel5b778da2010-05-20 21:04:28 -05006370KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006371M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006372W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006373L: kgdb-bugreport@lists.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -08006374T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006376F: Documentation/DocBook/kgdb.tmpl
6377F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006378F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006379F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006380F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006381F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006382
Pekka Enberg456db8c2008-04-28 22:47:29 +03006383KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006384M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006385M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006386S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006387F: Documentation/kmemcheck.txt
6388F: arch/x86/include/asm/kmemcheck.h
6389F: arch/x86/mm/kmemcheck/
6390F: include/linux/kmemcheck.h
6391F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006392
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006393KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006394M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006395S: Maintained
6396F: Documentation/kmemleak.txt
6397F: include/linux/kmemleak.h
6398F: mm/kmemleak.c
6399F: mm/kmemleak-test.c
6400
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006401KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006402M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6403M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6404M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006405M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006407F: Documentation/kprobes.txt
6408F: include/linux/kprobes.h
6409F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006410
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006411KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006412M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006413W: http://miguelojeda.es/auxdisplay.htm
6414W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006416F: Documentation/auxdisplay/ks0108
6417F: drivers/auxdisplay/ks0108.c
6418F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006419
David Ahern1b69c6d2015-09-29 20:07:11 -07006420L3MDEV
6421M: David Ahern <dsa@cumulusnetworks.com>
6422L: netdev@vger.kernel.org
6423S: Maintained
6424F: net/l3mdev
6425F: include/net/l3mdev.h
6426
John Crispin9ca44352016-01-04 20:28:12 +01006427LANTIQ MIPS ARCHITECTURE
6428M: John Crispin <blogic@openwrt.org>
6429L: linux-mips@linux-mips.org
6430S: Maintained
6431F: arch/mips/lantiq
6432
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006435S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006436F: Documentation/networking/lapb-module.txt
6437F: include/*/lapb.h
6438F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439
6440LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006441M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442L: linux-scsi@vger.kernel.org
6443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006444F: Documentation/scsi/53c700.txt
6445F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446
Richard Purdie263de9b2006-05-15 09:44:16 -07006447LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006448M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006449M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006450L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006451T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006453F: drivers/leds/
6454F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006455
Jean Delvareb0461a42011-06-15 15:08:46 -07006456LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006457M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006458S: Maintained
6459F: Documentation/misc-devices/eeprom
6460F: drivers/misc/eeprom/eeprom.c
6461
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006463M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464L: legousb-devel@lists.sourceforge.net
6465W: http://legousb.sourceforge.net/
6466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006467F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468
Michael Krufky055616a2012-10-02 00:56:06 -03006469LG2160 MEDIA DRIVER
6470M: Michael Krufky <mkrufky@linuxtv.org>
6471L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006472W: https://linuxtv.org
Michael Krufky055616a2012-10-02 00:56:06 -03006473W: http://github.com/mkrufky
6474Q: http://patchwork.linuxtv.org/project/linux-media/list/
6475T: git git://linuxtv.org/mkrufky/tuners.git
6476S: Maintained
6477F: drivers/media/dvb-frontends/lg2160.*
6478
Michael Krufky6f0e7722012-10-02 00:56:00 -03006479LGDT3305 MEDIA DRIVER
6480M: Michael Krufky <mkrufky@linuxtv.org>
6481L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006482W: https://linuxtv.org
Michael Krufky6f0e7722012-10-02 00:56:00 -03006483W: http://github.com/mkrufky
6484Q: http://patchwork.linuxtv.org/project/linux-media/list/
6485T: git git://linuxtv.org/mkrufky/tuners.git
6486S: Maintained
6487F: drivers/media/dvb-frontends/lgdt3305.*
6488
Rusty Russell568a17f2007-10-25 14:12:24 +10006489LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006490M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006491L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006492W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006493S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006494F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006495F: arch/x86/lguest/
6496F: drivers/lguest/
6497F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006498F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006499
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006500LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6501M: Tejun Heo <tj@kernel.org>
6502L: linux-ide@vger.kernel.org
6503T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6504S: Maintained
6505F: drivers/ata/
6506F: include/linux/ata.h
6507F: include/linux/libata.h
6508
6509LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006510M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006511L: linux-ide@vger.kernel.org
6512T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6513S: Maintained
6514F: include/linux/pata_arasan_cf_data.h
6515F: drivers/ata/pata_arasan_cf.c
6516
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006517LIBATA PATA DRIVERS
6518M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6519M: Tejun Heo <tj@kernel.org>
6520L: linux-ide@vger.kernel.org
6521T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6522S: Maintained
6523F: drivers/ata/pata_*.c
6524F: drivers/ata/ata_generic.c
6525
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006526LIBATA SATA AHCI PLATFORM devices support
6527M: Hans de Goede <hdegoede@redhat.com>
6528M: Tejun Heo <tj@kernel.org>
6529L: linux-ide@vger.kernel.org
6530T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6531S: Maintained
6532F: drivers/ata/ahci_platform.c
6533F: drivers/ata/libahci_platform.c
6534F: include/linux/ahci_platform.h
6535
6536LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6537M: Mikael Pettersson <mikpelinux@gmail.com>
6538L: linux-ide@vger.kernel.org
6539T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6540S: Maintained
6541F: drivers/ata/sata_promise.*
6542
Sasha Levin1acd4372013-06-13 18:41:24 -04006543LIBLOCKDEP
6544M: Sasha Levin <sasha.levin@oracle.com>
6545S: Maintained
6546F: tools/lib/lockdep/
6547
Dan Williamsbc301962015-06-25 04:48:19 -04006548LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6549M: Dan Williams <dan.j.williams@intel.com>
6550L: linux-nvdimm@lists.01.org
6551Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006552T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
Dan Williamsbc301962015-06-25 04:48:19 -04006553S: Supported
6554F: drivers/nvdimm/*
6555F: include/linux/nd.h
6556F: include/linux/libnvdimm.h
6557F: include/uapi/linux/ndctl.h
6558
6559LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6560M: Ross Zwisler <ross.zwisler@linux.intel.com>
6561L: linux-nvdimm@lists.01.org
6562Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6563S: Supported
6564F: drivers/nvdimm/blk.c
6565F: drivers/nvdimm/region_devs.c
6566F: drivers/acpi/nfit*
6567
6568LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6569M: Vishal Verma <vishal.l.verma@intel.com>
6570L: linux-nvdimm@lists.01.org
6571Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6572S: Supported
6573F: drivers/nvdimm/btt*
6574
6575LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6576M: Ross Zwisler <ross.zwisler@linux.intel.com>
6577L: linux-nvdimm@lists.01.org
6578Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6579S: Supported
6580F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006581F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006582F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006583
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006584LIGHTNVM PLATFORM SUPPORT
6585M: Matias Bjorling <mb@lightnvm.io>
6586W: http://github/OpenChannelSSD
Matias Bjørling4ead1a22015-11-16 15:34:35 +01006587L: linux-block@vger.kernel.org
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006588S: Maintained
6589F: drivers/lightnvm/
6590F: include/linux/lightnvm.h
6591F: include/uapi/linux/lightnvm.h
6592
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006594M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595W: http://www.ibm.com/linux/ltc/projects/ppc
6596S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006597F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006599LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006600M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6601M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006602M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006604L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006605Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006606T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006608F: Documentation/powerpc/
6609F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610
6611LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006612M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006614L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006616F: arch/powerpc/platforms/powermac/
6617F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006618
Grant Likely77a76362008-07-12 12:11:43 -06006619LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006620M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006621L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006622T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006624F: arch/powerpc/platforms/512x/
6625F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626
6627LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006628M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006629M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006631L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006633F: arch/powerpc/platforms/40x/
6634F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635
Grant Likely260c02a2007-10-02 12:15:34 +10006636LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006637L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006638S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006639F: arch/powerpc/*/*virtex*
6640F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641
Tom Rinie93adf12005-07-26 12:49:53 -07006642LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006643M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006644W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006645L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006646S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006647F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006648
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wood44451d42015-12-31 12:57:26 -06006650M: Scott Wood <oss@buserror.net>
Joe Perches8b58be82009-07-29 15:04:30 -07006651M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006652W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006653L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006654T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006655S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006656F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006657F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658
Olof Johanssonab06ff32006-09-06 14:44:54 -05006659LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006660M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006661L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006662S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006663F: arch/powerpc/platforms/pasemi/
6664F: drivers/*/*pasemi*
6665F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006666
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006668M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006669L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670S: Supported
6671
Harry Weia23ce6d2011-02-11 16:52:20 +01006672LIS3LV02D ACCELEROMETER DRIVER
6673M: Eric Piel <eric.piel@tremplin-utc.net>
6674S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006675F: Documentation/misc-devices/lis3lv02d
6676F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006677F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006678
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006679LIVE PATCHING
6680M: Josh Poimboeuf <jpoimboe@redhat.com>
Josh Poimboeuf06e1c172016-03-16 10:03:36 -05006681M: Jessica Yu <jeyu@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006682M: Jiri Kosina <jikos@kernel.org>
Josh Poimboeuf06e1c172016-03-16 10:03:36 -05006683M: Miroslav Benes <mbenes@suse.cz>
6684R: Petr Mladek <pmladek@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006685S: Maintained
6686F: kernel/livepatch/
6687F: include/linux/livepatch.h
6688F: arch/x86/include/asm/livepatch.h
6689F: arch/x86/kernel/livepatch.c
6690F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006691F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006692L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006693T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006694
Kees Cookea861d72016-02-26 15:12:25 -08006695LINUX KERNEL DUMP TEST MODULE (LKDTM)
6696M: Kees Cook <keescook@chromium.org>
6697S: Maintained
6698F: drivers/misc/lkdtm.c
6699
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006700LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006701M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006703F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006704F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006705F: include/net/llc*
6706F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006707
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006708LM73 HARDWARE MONITOR DRIVER
6709M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006710L: linux-hwmon@vger.kernel.org
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006711S: Maintained
6712F: drivers/hwmon/lm73.c
6713
Jean Delvare156e2d12011-07-25 21:46:11 +02006714LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006715M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006716L: linux-hwmon@vger.kernel.org
Jean Delvare156e2d12011-07-25 21:46:11 +02006717S: Maintained
6718F: Documentation/hwmon/lm78
6719F: drivers/hwmon/lm78.c
6720
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006722M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006723L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006725F: Documentation/hwmon/lm83
6726F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727
6728LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006729M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006730L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006732F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006733F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006734F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006736LM95234 HARDWARE MONITOR DRIVER
6737M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006738L: linux-hwmon@vger.kernel.org
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006739S: Maintained
6740F: Documentation/hwmon/lm95234
6741F: drivers/hwmon/lm95234.c
6742
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006743LME2510 MEDIA DRIVER
6744M: Malcolm Priestley <tvboxspy@gmail.com>
6745L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006746W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006747Q: http://patchwork.linuxtv.org/project/linux-media/list/
6748S: Maintained
6749F: drivers/media/usb/dvb-usb-v2/lmedm04*
6750
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006751LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006752M: Peter Zijlstra <peterz@infradead.org>
6753M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006754L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006755T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006756S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006757F: Documentation/locking/lockdep*.txt
6758F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006759F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006760F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006761
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006762LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006763M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006764L: linux-ntfs-dev@lists.sourceforge.net
6765W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006767F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006768F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769
Joern Engelef6ada32009-11-20 22:17:12 +01006770LogFS
6771M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306772M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006773L: logfs@logfs.org
6774W: logfs.org
6775S: Maintained
6776F: fs/logfs/
6777
Roland Stiggeb62d7942013-04-02 19:37:11 +02006778LPC32XX MACHINE SUPPORT
6779M: Roland Stigge <stigge@antcom.de>
6780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6781S: Maintained
6782F: arch/arm/mach-lpc32xx/
6783
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006784LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Suganath prabu Subramani9495e832016-02-18 14:09:46 +05306785M: Sathya Prakash <sathya.prakash@broadcom.com>
6786M: Chaitra P B <chaitra.basappa@broadcom.com>
6787M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
6788L: MPT-FusionLinux.pdl@broadcom.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006789L: linux-scsi@vger.kernel.org
Suganath prabu Subramani9495e832016-02-18 14:09:46 +05306790W: http://www.avagotech.com/support/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006792F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306793F: drivers/scsi/mpt2sas/
6794F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006795
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006797M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798L: linux-scsi@vger.kernel.org
6799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006800F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801
Guenter Roecke5f5c992010-06-25 11:59:54 -07006802LTC4261 HARDWARE MONITOR DRIVER
6803M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006804L: linux-hwmon@vger.kernel.org
Guenter Roecke5f5c992010-06-25 11:59:54 -07006805S: Maintained
6806F: Documentation/hwmon/ltc4261
6807F: drivers/hwmon/ltc4261.c
6808
Mike Frysinger81365c32008-10-29 14:01:12 -07006809LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006810M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006811M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006812M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006813M: Jan Stancek <jstancek@redhat.com>
6814M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6815M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006816L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006817W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006818T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006819S: Maintained
6820
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006821M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006822W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006823S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006824F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006825
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006827M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828L: linux-m68k@lists.linux-m68k.org
6829W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006830T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006832F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006833F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834
6835M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006836M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006838L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006840F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841
6842M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006843M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844W: http://www.tazenda.demon.co.uk/phil/linux-hp
6845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006846F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847
Antti Palosaari74425542013-11-06 14:03:32 -03006848M88DS3103 MEDIA DRIVER
6849M: Antti Palosaari <crope@iki.fi>
6850L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006851W: https://linuxtv.org
Antti Palosaari74425542013-11-06 14:03:32 -03006852W: http://palosaari.fi/linux/
6853Q: http://patchwork.linuxtv.org/project/linux-media/list/
6854T: git git://linuxtv.org/anttip/media_tree.git
6855S: Maintained
6856F: drivers/media/dvb-frontends/m88ds3103*
6857
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006858M88RS2000 MEDIA DRIVER
6859M: Malcolm Priestley <tvboxspy@gmail.com>
6860L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006861W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006862Q: http://patchwork.linuxtv.org/project/linux-media/list/
6863S: Maintained
6864F: drivers/media/dvb-frontends/m88rs2000*
6865
Alexey Klimov07a092f2012-11-12 02:57:32 -03006866MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006867M: Alexey Klimov <klimov.linux@gmail.com>
6868L: linux-media@vger.kernel.org
6869T: git git://linuxtv.org/media_tree.git
6870S: Maintained
6871F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006872
Jiri Benc64a327a2007-05-05 11:47:08 -07006873MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006874M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006875L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006876W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006877T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6878T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006880F: Documentation/networking/mac80211-injection.txt
6881F: include/net/mac80211.h
6882F: net/mac80211/
Johannes Berg2af8c4d2016-02-26 10:50:34 +01006883F: drivers/net/wireless/mac80211_hwsim.[ch]
Jiri Benc64a327a2007-05-05 11:47:08 -07006884
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006885MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006886M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006887L: netdev@vger.kernel.org
6888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006889F: drivers/net/macvlan.c
6890F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006891
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306892MAILBOX API
6893M: Jassi Brar <jassisinghbrar@gmail.com>
6894L: linux-kernel@vger.kernel.org
6895S: Maintained
6896F: drivers/mailbox/
6897F: include/linux/mailbox_client.h
6898F: include/linux/mailbox_controller.h
6899
Michael Kerriskfaf16682005-07-31 22:34:47 -07006900MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006901M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006902W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006903L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006904S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006905
Russell King8427def2014-02-28 22:40:53 +00006906MARVELL ARMADA DRM SUPPORT
6907M: Russell King <rmk+kernel@arm.linux.org.uk>
6908S: Maintained
6909F: drivers/gpu/drm/armada/
6910
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006911MARVELL 88E6352 DSA support
6912M: Guenter Roeck <linux@roeck-us.net>
6913S: Maintained
6914F: drivers/net/dsa/mv88e6352.c
6915
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006916MARVELL CRYPTO DRIVER
6917M: Boris Brezillon <boris.brezillon@free-electrons.com>
6918M: Arnaud Ebalard <arno@natisbad.org>
6919F: drivers/crypto/marvell/
6920S: Maintained
6921L: linux-crypto@vger.kernel.org
6922
stephen hemminger44c14c12012-04-02 12:59:47 +00006923MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6924M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006925M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006926L: netdev@vger.kernel.org
6927S: Maintained
6928F: drivers/net/ethernet/marvell/sk*
6929
Stefano Brivio74cda162007-11-19 20:27:46 +01006930MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006931L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006932S: Orphan
Kalle Valof988d642015-11-17 21:07:19 +02006933F: drivers/net/wireless/marvell/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006934
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006935MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006936M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006937L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006938S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006939F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006940F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006942MARVELL MVNETA ETHERNET DRIVER
6943M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6944L: netdev@vger.kernel.org
6945S: Maintained
6946F: drivers/net/ethernet/marvell/mvneta.*
6947
Bing Zhaofcad5842011-07-13 13:11:58 -07006948MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006949M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306950M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006951L: linux-wireless@vger.kernel.org
6952S: Maintained
Kalle Valo277b0242015-11-17 21:14:51 +02006953F: drivers/net/wireless/marvell/mwifiex/
Bing Zhaofcad5842011-07-13 13:11:58 -07006954
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006955MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006956M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006957L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006958S: Odd Fixes
Kalle Valode60f1d2015-11-17 21:18:12 +02006959F: drivers/net/wireless/marvell/mwl8k.c
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006960
Pierre Ossman2a695672009-03-16 19:52:26 +01006961MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006962M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006963S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006964F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006965
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006967L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006968S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006969F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006970F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971
Guenter Roeckca462082012-06-01 23:28:23 -07006972MAX16065 HARDWARE MONITOR DRIVER
6973M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006974L: linux-hwmon@vger.kernel.org
Guenter Roeckca462082012-06-01 23:28:23 -07006975S: Maintained
6976F: Documentation/hwmon/max16065
6977F: drivers/hwmon/max16065.c
6978
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006979MAX20751 HARDWARE MONITOR DRIVER
6980M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006981L: linux-hwmon@vger.kernel.org
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006982S: Maintained
6983F: Documentation/hwmon/max20751
6984F: drivers/hwmon/max20751.c
6985
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006986MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006987M: "Hans J. Koch" <hjk@hansjkoch.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006988L: linux-hwmon@vger.kernel.org
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006990F: Documentation/hwmon/max6650
6991F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006992
Guenter Roecke89ab512013-03-08 08:13:09 -08006993MAX6697 HARDWARE MONITOR DRIVER
6994M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006995L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08006996S: Maintained
6997F: Documentation/hwmon/max6697
6998F: Documentation/devicetree/bindings/i2c/max6697.txt
6999F: drivers/hwmon/max6697.c
7000F: include/linux/platform_data/max6697.h
7001
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01007002MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7003M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
7004L: linux-pm@vger.kernel.org
7005S: Supported
7006F: drivers/power/max14577_charger.c
7007F: drivers/power/max77693_charger.c
7008
Javier Martinez Canillas38114052015-07-17 10:17:58 +02007009MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7010M: Javier Martinez Canillas <javier@osg.samsung.com>
7011L: linux-kernel@vger.kernel.org
7012S: Supported
Javier Martinez Canillas96173cc2016-02-12 01:14:23 -03007013F: drivers/*/*max77802*.c
Javier Martinez Canillas38114052015-07-17 10:17:58 +02007014F: Documentation/devicetree/bindings/*/*max77802.txt
7015F: include/dt-bindings/*/*max77802.h
7016
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007017MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7018M: Chanwoo Choi <cw00.choi@samsung.com>
7019M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
7020L: linux-kernel@vger.kernel.org
7021S: Supported
7022F: drivers/*/max14577.c
Javier Martinez Canillas0998a432016-02-15 11:24:58 -03007023F: drivers/*/max77686*.c
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007024F: drivers/*/max77693.c
7025F: drivers/extcon/extcon-max14577.c
7026F: drivers/extcon/extcon-max77693.c
7027F: drivers/rtc/rtc-max77686.c
7028F: drivers/clk/clk-max77686.c
7029F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02007030F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007031F: Documentation/devicetree/bindings/mfd/max77693.txt
7032F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
7033F: include/linux/mfd/max14577*.h
7034F: include/linux/mfd/max77686*.h
7035F: include/linux/mfd/max77693*.h
7036
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03007037MAXIRADIO FM RADIO RECEIVER DRIVER
7038M: Hans Verkuil <hverkuil@xs4all.nl>
7039L: linux-media@vger.kernel.org
7040T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007041W: https://linuxtv.org
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03007042S: Maintained
7043F: drivers/media/radio/radio-maxiradio*
7044
Peter Rosinc05dc2c2015-09-23 16:26:23 +02007045MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7046M: Peter Rosin <peda@axentia.se>
7047L: linux-iio@vger.kernel.org
7048S: Maintained
7049F: drivers/iio/potentiometer/mcp4531.c
7050
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03007051MEDIA DRIVERS FOR RENESAS - VSP1
7052M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7053L: linux-media@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09007054L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03007055T: git git://linuxtv.org/media_tree.git
7056S: Supported
7057F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
7058F: drivers/media/platform/vsp1/
7059
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03007060MEDIA DRIVERS FOR ASCOT2E
7061M: Sergey Kozlov <serjk@netup.ru>
7062L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007063W: https://linuxtv.org
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03007064W: http://netup.tv/
7065T: git git://linuxtv.org/media_tree.git
7066S: Supported
7067F: drivers/media/dvb-frontends/ascot2e*
7068
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03007069MEDIA DRIVERS FOR CXD2841ER
7070M: Sergey Kozlov <serjk@netup.ru>
7071L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007072W: https://linuxtv.org
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03007073W: http://netup.tv/
7074T: git git://linuxtv.org/media_tree.git
7075S: Supported
7076F: drivers/media/dvb-frontends/cxd2841er*
7077
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03007078MEDIA DRIVERS FOR HORUS3A
7079M: Sergey Kozlov <serjk@netup.ru>
7080L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007081W: https://linuxtv.org
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03007082W: http://netup.tv/
7083T: git git://linuxtv.org/media_tree.git
7084S: Supported
7085F: drivers/media/dvb-frontends/horus3a*
7086
Kozlov Sergeye0252732015-07-28 11:33:02 -03007087MEDIA DRIVERS FOR LNBH25
7088M: Sergey Kozlov <serjk@netup.ru>
7089L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007090W: https://linuxtv.org
Kozlov Sergeye0252732015-07-28 11:33:02 -03007091W: http://netup.tv/
7092T: git git://linuxtv.org/media_tree.git
7093S: Supported
7094F: drivers/media/dvb-frontends/lnbh25*
7095
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03007096MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7097M: Sergey Kozlov <serjk@netup.ru>
7098L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007099W: https://linuxtv.org
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03007100W: http://netup.tv/
7101T: git git://linuxtv.org/media_tree.git
7102S: Supported
7103F: drivers/media/pci/netup_unidvb/*
7104
Joe Perches127c49a2009-04-08 08:34:04 -07007105MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02007106M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07007107P: LinuxTV.org Project
7108L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007109W: https://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007110Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007111T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07007112S: Maintained
7113F: Documentation/dvb/
7114F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007115F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007116F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007117F: drivers/staging/media/
Mauro Carvalho Chehabeb4b0ec2015-11-16 08:35:53 -02007118F: include/linux/platform_data/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007119F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007120F: include/uapi/linux/dvb/
7121F: include/uapi/linux/videodev2.h
7122F: include/uapi/linux/media.h
7123F: include/uapi/linux/v4l2-*
7124F: include/uapi/linux/meye.h
7125F: include/uapi/linux/ivtv*
7126F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007127
John Crispin0c272fc2016-03-08 11:29:57 +01007128MEDIATEK ETHERNET DRIVER
7129M: Felix Fietkau <nbd@openwrt.org>
7130M: John Crispin <blogic@openwrt.org>
7131L: netdev@vger.kernel.org
7132S: Maintained
7133F: drivers/net/ethernet/mediatek/
7134
Jakub Kicinskic869f772015-05-26 11:16:00 +02007135MEDIATEK MT7601U WIRELESS LAN DRIVER
7136M: Jakub Kicinski <kubakici@wp.pl>
7137L: linux-wireless@vger.kernel.org
7138S: Maintained
7139F: drivers/net/wireless/mediatek/mt7601u/
7140
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307141MEGARAID SCSI/SAS DRIVERS
7142M: Kashyap Desai <kashyap.desai@avagotech.com>
7143M: Sumit Saxena <sumit.saxena@avagotech.com>
7144M: Uday Lingala <uday.lingala@avagotech.com>
7145L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02007146L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307147W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007149F: Documentation/scsi/megaraid.txt
7150F: drivers/scsi/megaraid.*
7151F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007152
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007153MELLANOX ETHERNET DRIVER (mlx4_en)
Or Gerlitze7523a42015-11-17 18:25:07 +02007154M: Eugenia Emantayev <eugenia@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007155L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007156S: Supported
7157W: http://www.mellanox.com
7158Q: http://patchwork.ozlabs.org/project/netdev/list/
7159F: drivers/net/ethernet/mellanox/mlx4/en_*
7160
Or Gerlitze7523a42015-11-17 18:25:07 +02007161MELLANOX ETHERNET DRIVER (mlx5e)
7162M: Saeed Mahameed <saeedm@mellanox.com>
7163L: netdev@vger.kernel.org
7164S: Supported
7165W: http://www.mellanox.com
7166Q: http://patchwork.ozlabs.org/project/netdev/list/
7167F: drivers/net/ethernet/mellanox/mlx5/core/en_*
7168
Jiri Pirko93c1edb2015-07-29 23:33:46 +02007169MELLANOX ETHERNET SWITCH DRIVERS
7170M: Jiri Pirko <jiri@mellanox.com>
7171M: Ido Schimmel <idosch@mellanox.com>
7172L: netdev@vger.kernel.org
7173S: Supported
7174W: http://www.mellanox.com
7175Q: http://patchwork.ozlabs.org/project/netdev/list/
7176F: drivers/net/ethernet/mellanox/mlxsw/
7177
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07007178MEMBARRIER SUPPORT
7179M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7180M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7181L: linux-kernel@vger.kernel.org
7182S: Supported
7183F: kernel/membarrier.c
7184F: include/uapi/linux/membarrier.h
7185
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007186MEMORY MANAGEMENT
7187L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007188W: http://www.linux-mm.org
7189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007190F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08007191F: include/linux/gfp.h
7192F: include/linux/mmzone.h
7193F: include/linux/memory_hotplug.h
7194F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07007195F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007196
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04007197MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07007198M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08007199M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007201W: http://www.linux-mtd.infradead.org/
7202Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08007203T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07007204T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007206F: drivers/mtd/
7207F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007208F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007210MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007211M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007212L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007213S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007214F: drivers/watchdog/mena21_wdt.c
7215
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007216MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007217M: Johannes Thumshirn <morbidrsa@gmail.com>
7218S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007219F: drivers/mcb/
7220F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02007221F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007222
Andreas Werner48b490d2014-09-15 09:36:30 +02007223MEN F21BMC (Board Management Controller)
7224M: Andreas Werner <andreas.werner@men.de>
7225S: Supported
7226F: drivers/mfd/menf21bmc.c
7227F: drivers/watchdog/menf21bmc_wdt.c
7228F: drivers/leds/leds-menf21bmc.c
7229F: drivers/hwmon/menf21bmc_hwmon.c
7230F: Documentation/hwmon/menf21bmc
7231
James Hogan12285942012-10-10 12:59:49 +01007232METAG ARCHITECTURE
7233M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01007234L: linux-metag@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08007235T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
James Hoganf23d0e22015-11-09 18:40:59 +00007236S: Odd Fixes
James Hogan12285942012-10-10 12:59:49 +01007237F: arch/metag/
7238F: Documentation/metag/
7239F: Documentation/devicetree/bindings/metag/
Rob Herring2d799dd2015-11-05 13:40:40 -06007240F: Documentation/devicetree/bindings/interrupt-controller/img,*
James Hogana2c5d4e2012-10-09 10:54:39 +01007241F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01007242F: drivers/irqchip/irq-metag.c
7243F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01007244F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01007245
Michal Simekc6375b02009-03-27 14:25:52 +01007246MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07007247M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01007248W: http://www.monstr.eu/fdt/
7249T: git git://git.monstr.eu/linux-2.6-microblaze.git
7250S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02007251F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252
Chen Yu2508a452015-08-18 23:30:25 +08007253MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7254M: Chen Yu <yu.c.chen@intel.com>
7255L: platform-driver-x86@vger.kernel.org
7256S: Supported
7257F: drivers/platform/x86/surfacepro3_button.c
7258
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007260M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007262F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263
7264MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07007265M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01007267W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00007268T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007269Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007271F: Documentation/mips/
7272F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273
Hans Verkuil08b76202012-11-23 07:15:42 -03007274MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7275M: Hans Verkuil <hverkuil@xs4all.nl>
7276L: linux-media@vger.kernel.org
7277T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007278W: https://linuxtv.org
Hans Verkuil08b76202012-11-23 07:15:42 -03007279S: Odd Fixes
7280F: drivers/media/radio/radio-miropcm20*
7281
Or Gerlitzc09befc2015-12-23 18:30:58 +02007282MELLANOX MLX4 core VPI driver
7283M: Yishai Hadas <yishaih@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007284L: netdev@vger.kernel.org
7285L: linux-rdma@vger.kernel.org
7286W: http://www.mellanox.com
7287Q: http://patchwork.ozlabs.org/project/netdev/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007288S: Supported
7289F: drivers/net/ethernet/mellanox/mlx4/
7290F: include/linux/mlx4/
7291
7292MELLANOX MLX4 IB driver
7293M: Yishai Hadas <yishaih@mellanox.com>
7294L: linux-rdma@vger.kernel.org
7295W: http://www.mellanox.com
Eli Cohene126ba92013-07-07 17:25:49 +03007296Q: http://patchwork.kernel.org/project/linux-rdma/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007297S: Supported
7298F: drivers/infiniband/hw/mlx4/
7299F: include/linux/mlx4/
7300
Or Gerlitz595a4d82015-12-23 18:30:57 +02007301MELLANOX MLX5 core VPI driver
7302M: Matan Barak <matanb@mellanox.com>
7303M: Leon Romanovsky <leonro@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007304L: netdev@vger.kernel.org
7305L: linux-rdma@vger.kernel.org
7306W: http://www.mellanox.com
7307Q: http://patchwork.ozlabs.org/project/netdev/list/
Eli Cohene126ba92013-07-07 17:25:49 +03007308S: Supported
7309F: drivers/net/ethernet/mellanox/mlx5/core/
7310F: include/linux/mlx5/
7311
Or Gerlitz595a4d82015-12-23 18:30:57 +02007312MELLANOX MLX5 IB driver
7313M: Matan Barak <matanb@mellanox.com>
7314M: Leon Romanovsky <leonro@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007315L: linux-rdma@vger.kernel.org
7316W: http://www.mellanox.com
7317Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchesb75f0052014-03-03 15:38:37 -08007318S: Supported
Joe Perchesb75f0052014-03-03 15:38:37 -08007319F: drivers/infiniband/hw/mlx5/
Or Gerlitz595a4d82015-12-23 18:30:57 +02007320F: include/linux/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007321
Crt Mori764589b2015-08-17 19:34:33 +02007322MELEXIS MLX90614 DRIVER
7323M: Crt Mori <cmo@melexis.com>
7324L: linux-iio@vger.kernel.org
7325W: http://www.melexis.com
7326S: Supported
7327F: drivers/iio/temperature/mlx90614.c
7328
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007329MN88472 MEDIA DRIVER
7330M: Antti Palosaari <crope@iki.fi>
7331L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007332W: https://linuxtv.org
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007333W: http://palosaari.fi/linux/
7334Q: http://patchwork.linuxtv.org/project/linux-media/list/
7335T: git git://linuxtv.org/anttip/media_tree.git
7336S: Maintained
7337F: drivers/staging/media/mn88472/
7338F: drivers/media/dvb-frontends/mn88472.h
7339
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007340MN88473 MEDIA DRIVER
7341M: Antti Palosaari <crope@iki.fi>
7342L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007343W: https://linuxtv.org
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007344W: http://palosaari.fi/linux/
7345Q: http://patchwork.linuxtv.org/project/linux-media/list/
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007346S: Maintained
Antti Palosaari877ba502016-02-05 08:04:48 +02007347F: drivers/media/dvb-frontends/mn88473*
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007348
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007350M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007352F: include/linux/module.h
7353F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354
7355MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007357S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007358F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007359F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007360F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361
Jiri Slabyb9705b62008-04-30 00:53:48 -07007362MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007363M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007365F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007366F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007367
Alexey Klimov889b2f82012-11-16 17:43:59 -03007368MR800 AVERMEDIA USB FM RADIO DRIVER
7369M: Alexey Klimov <klimov.linux@gmail.com>
7370L: linux-media@vger.kernel.org
7371T: git git://linuxtv.org/media_tree.git
7372S: Maintained
7373F: drivers/media/radio/radio-mr800.c
7374
Alan Ottd7155692014-08-16 17:09:03 -04007375MRF24J40 IEEE 802.15.4 RADIO DRIVER
7376M: Alan Ott <alan@signal11.us>
7377L: linux-wpan@vger.kernel.org
7378S: Maintained
7379F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007380F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007381
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007382MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007383M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007384L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007386F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007387
Anisse Astier0f1006b2009-12-17 11:28:49 +01007388MSI WMI SUPPORT
Matthew Garrettd0944852010-02-11 10:40:13 -05007389L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007390S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007391F: drivers/platform/x86/msi-wmi.c
7392
Antti Palosaari19a628a2014-02-02 23:51:30 -03007393MSI001 MEDIA DRIVER
7394M: Antti Palosaari <crope@iki.fi>
7395L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007396W: https://linuxtv.org
Antti Palosaari19a628a2014-02-02 23:51:30 -03007397W: http://palosaari.fi/linux/
7398Q: http://patchwork.linuxtv.org/project/linux-media/list/
7399T: git git://linuxtv.org/anttip/media_tree.git
7400S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007401F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007402
Antti Palosaari75705892014-07-13 21:35:47 -03007403MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007404M: Antti Palosaari <crope@iki.fi>
7405L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007406W: https://linuxtv.org
Antti Palosaari2c572132014-02-02 23:55:12 -03007407W: http://palosaari.fi/linux/
7408Q: http://patchwork.linuxtv.org/project/linux-media/list/
7409T: git git://linuxtv.org/anttip/media_tree.git
7410S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007411F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007412
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007413MSYSTEMS DISKONCHIP G3 MTD DRIVER
7414M: Robert Jarzmik <robert.jarzmik@free.fr>
7415L: linux-mtd@lists.infradead.org
7416S: Maintained
7417F: drivers/mtd/devices/docg3*
7418
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007419MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007420M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7421L: linux-media@vger.kernel.org
7422T: git git://linuxtv.org/media_tree.git
7423S: Maintained
7424F: drivers/media/i2c/mt9m032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007425F: include/media/i2c/mt9m032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007426
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007427MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007428M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7429L: linux-media@vger.kernel.org
7430T: git git://linuxtv.org/media_tree.git
7431S: Maintained
7432F: drivers/media/i2c/mt9p031.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007433F: include/media/i2c/mt9p031.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007434
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007435MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007436M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7437L: linux-media@vger.kernel.org
7438T: git git://linuxtv.org/media_tree.git
7439S: Maintained
7440F: drivers/media/i2c/mt9t001.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007441F: include/media/i2c/mt9t001.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007442
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007443MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007444M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7445L: linux-media@vger.kernel.org
7446T: git git://linuxtv.org/media_tree.git
7447S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007448F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007449F: drivers/media/i2c/mt9v032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007450F: include/media/i2c/mt9v032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007451
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007452MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007453M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007454T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007456F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007457F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007458
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007459MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007460M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007461L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007462T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007464F: drivers/mmc/
7465F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007466F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007467
David Brownell15a05802007-08-08 09:12:54 -07007468MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007469S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007470F: drivers/mmc/host/mmc_spi.c
7471F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007472
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007474M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007476F: Documentation/sound/oss/MultiSound
7477F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478
Jiri Slabyd7354102006-12-08 02:38:35 -08007479MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007480S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007481F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007482F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007483
Felipe Balbi550a7372008-07-24 12:27:36 +03007484MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbi3b243512016-02-19 11:04:55 +02007485M: Bin Liu <b-liu@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007486L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007487T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007489F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007490
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007491MXL5007T MEDIA DRIVER
7492M: Michael Krufky <mkrufky@linuxtv.org>
7493L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007494W: https://linuxtv.org
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007495W: http://github.com/mkrufky
7496Q: http://patchwork.linuxtv.org/project/linux-media/list/
7497T: git git://linuxtv.org/mkrufky/tuners.git
7498S: Maintained
7499F: drivers/media/tuners/mxl5007t.*
7500
Brice Goglin2d3cf582008-05-17 12:45:36 +02007501MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007502M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007503L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007504W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007505S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007506F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007507
Boris BREZILLON9df4f912016-03-09 21:57:24 +01007508NAND FLASH SUBSYSTEM
7509M: Boris Brezillon <boris.brezillon@free-electrons.com>
7510R: Richard Weinberger <richard@nod.at>
7511L: linux-mtd@lists.infradead.org
7512W: http://www.linux-mtd.infradead.org/
7513Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
7514T: git git://github.com/linux-nand/linux.git
7515S: Maintained
7516F: drivers/mtd/nand/
7517F: include/linux/mtd/nand*.h
7518
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007520S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007521F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522
Daniel Mack23dc05a2011-05-18 11:28:38 +02007523NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7524M: Daniel Mack <zonque@gmail.com>
7525S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007526L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007527W: http://www.native-instruments.com
7528F: sound/usb/caiaq/
7529
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007531M: Petr Vandrovec <petr@vandrovec.name>
7532S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007533F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007534
Finn Thaina79b0322014-05-05 15:35:30 +10007535NCR 5380 SCSI DRIVERS
7536M: Finn Thain <fthain@telegraphics.com.au>
7537M: Michael Schmitz <schmitzmic@gmail.com>
7538L: linux-scsi@vger.kernel.org
7539S: Maintained
7540F: Documentation/scsi/g_NCR5380.txt
7541F: drivers/scsi/NCR5380.*
7542F: drivers/scsi/arm/cumana_1.c
7543F: drivers/scsi/arm/oak.c
7544F: drivers/scsi/atari_NCR5380.c
7545F: drivers/scsi/atari_scsi.*
7546F: drivers/scsi/dmx3191d.c
7547F: drivers/scsi/dtc.*
7548F: drivers/scsi/g_NCR5380.*
7549F: drivers/scsi/g_NCR5380_mmio.c
7550F: drivers/scsi/mac_scsi.*
7551F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007552F: drivers/scsi/sun3_scsi.*
7553F: drivers/scsi/sun3_scsi_vme.c
7554F: drivers/scsi/t128.*
7555
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007557M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558L: linux-scsi@vger.kernel.org
7559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007560F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007562NCT6775 HARDWARE MONITOR DRIVER
7563M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07007564L: linux-hwmon@vger.kernel.org
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007565S: Maintained
7566F: Documentation/hwmon/nct6775
7567F: drivers/hwmon/nct6775.c
7568
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007569NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007570M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007571L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007572W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007573S: Supported
7574F: drivers/infiniband/hw/nes/
7575
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007576NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007577M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007578L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007580F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007581
Jon Masonb2f5a052010-07-15 08:47:27 +00007582NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007583M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007584L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007586F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007587F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007588F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007589
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007590NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007591M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007592M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007593M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007594L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007595L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007596W: http://www.netfilter.org/
7597W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007598Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7599T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7600T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007602F: include/linux/netfilter*
7603F: include/linux/netfilter/
7604F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007605F: include/uapi/linux/netfilter*
7606F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007607F: net/*/netfilter.c
7608F: net/*/netfilter/
7609F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007610F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611
Paul Moore4cc67732006-09-25 15:57:13 -07007612NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007613M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007614W: http://netlabel.sf.net
7615L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007616S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007617F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007618F: include/net/netlabel.h
7619F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007620
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007622M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007624W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007626F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007627F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007628F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007629
Jakub Kicinski4c352362015-12-01 14:55:22 +00007630NETRONOME ETHERNET DRIVERS
7631M: Jakub Kicinski <jakub.kicinski@netronome.com>
Jakub Kicinski4c352362015-12-01 14:55:22 +00007632L: oss-drivers@netronome.com
7633S: Maintained
7634F: drivers/net/ethernet/netronome/
7635
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007636NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007637M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007639L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007640T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007641F: Documentation/blockdev/nbd.txt
7642F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007643F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007644
Neil Horman6e436502009-10-05 03:56:55 +00007645NETWORK DROP MONITOR
7646M: Neil Horman <nhorman@tuxdriver.com>
7647L: netdev@vger.kernel.org
7648S: Maintained
7649W: https://fedorahosted.org/dropwatch/
7650F: net/core/drop_monitor.c
7651
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007653M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007654L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007655W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007656Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007657T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7658T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007660F: net/
7661F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007662F: include/linux/in.h
7663F: include/linux/net.h
7664F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007665F: include/uapi/linux/in.h
7666F: include/uapi/linux/net.h
7667F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007668F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007669F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007670F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007671F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007672F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673
7674NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007675M: "David S. Miller" <davem@davemloft.net>
7676M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007677M: James Morris <jmorris@namei.org>
7678M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7679M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007680L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007681T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007683F: net/ipv4/
7684F: net/ipv6/
7685F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007686F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687
David S. Miller73b76562012-10-16 14:08:40 -04007688NETWORKING [IPSEC]
7689M: Steffen Klassert <steffen.klassert@secunet.com>
7690M: Herbert Xu <herbert@gondor.apana.org.au>
7691M: "David S. Miller" <davem@davemloft.net>
7692L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007693T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7694T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007695S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007696F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007697F: net/xfrm/
7698F: net/key/
7699F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007700F: net/ipv4/esp4.c
7701F: net/ipv4/ah4.c
7702F: net/ipv4/ipcomp.c
7703F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007704F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007705F: net/ipv6/esp6.c
7706F: net/ipv6/ah6.c
7707F: net/ipv6/ipcomp6.c
7708F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007709F: include/uapi/linux/xfrm.h
7710F: include/net/xfrm.h
7711
James Morris10e2ff12007-08-25 14:41:28 -07007712NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007713M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007714L: netdev@vger.kernel.org
7715S: Maintained
7716
John W. Linville29f8f632006-01-18 14:52:48 -08007717NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007718L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007719Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007720
Joe Perches788873a2009-04-16 09:38:45 +00007721NETWORKING DRIVERS
7722L: netdev@vger.kernel.org
7723W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007724Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007725T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7726T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007727S: Odd Fixes
7728F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007729F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007730F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007731F: include/linux/etherdevice.h
7732F: include/linux/fcdevice.h
7733F: include/linux/fddidevice.h
7734F: include/linux/hippidevice.h
7735F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007736F: include/uapi/linux/if_*
7737F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007738
John W. Linville0e324cf2014-12-17 12:07:05 -05007739NETWORKING DRIVERS (WIRELESS)
7740M: Kalle Valo <kvalo@codeaurora.org>
7741L: linux-wireless@vger.kernel.org
7742Q: http://patchwork.kernel.org/project/linux-wireless/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08007743T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7744T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
John W. Linville0e324cf2014-12-17 12:07:05 -05007745S: Maintained
7746F: drivers/net/wireless/
7747
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007748NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007749M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007750M: Sony Chacko <sony.chacko@qlogic.com>
7751M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007752L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007753W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007754S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007755F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007756
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007757NFC SUBSYSTEM
7758M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7759M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7760M: Samuel Ortiz <sameo@linux.intel.com>
7761L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007762L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007763S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007764F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007765F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007766F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007767F: drivers/nfc/
Christophe Ricard397d6492015-12-23 23:45:21 +01007768F: include/linux/platform_data/nfcmrvl.h
7769F: include/linux/platform_data/nxp-nci.h
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007770F: include/linux/platform_data/pn544.h
Christophe Ricard397d6492015-12-23 23:45:21 +01007771F: include/linux/platform_data/st21nfca.h
7772F: include/linux/platform_data/st-nci.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007773F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007774
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007775NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007776M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007777M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007778L: linux-nfs@vger.kernel.org
7779W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007780T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007782F: fs/lockd/
7783F: fs/nfs/
7784F: fs/nfs_common/
7785F: net/sunrpc/
7786F: include/linux/lockd/
7787F: include/linux/nfs*
7788F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007789F: include/uapi/linux/nfs*
7790F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007792NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007793M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007794L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007795W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007796T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007798F: Documentation/filesystems/nilfs2.txt
7799F: fs/nilfs2/
7800F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007801F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007802
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007804M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007807F: Documentation/scsi/NinjaSCSI.txt
7808F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809
7810NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007811M: GOTO Masanori <gotom@debian.or.jp>
7812M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007815F: Documentation/scsi/NinjaSCSI.txt
7816F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007818NIOS2 ARCHITECTURE
7819M: Ley Foon Tan <lftan@altera.com>
7820L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007821T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007822S: Maintained
7823F: arch/nios2/
7824
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007825NOKIA N900 POWER SUPPLY DRIVERS
Sebastian Reichele35a49b2016-01-17 21:36:03 +01007826R: Pali Rohár <pali.rohar@gmail.com>
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007827F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007828F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007829F: include/linux/power/isp1704_charger.h
7830F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007831F: drivers/power/bq27xxx_battery.c
Sebastian Reichele35a49b2016-01-17 21:36:03 +01007832F: drivers/power/bq27xxx_battery_i2c.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007833F: drivers/power/isp1704_charger.c
7834F: drivers/power/rx51_battery.c
7835
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007836NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007837M: Jon Mason <jdmason@kudzu.us>
7838M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007839M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007840L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007841S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007842W: https://github.com/jonmason/ntb/wiki
7843T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007844F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007845F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007846F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007847F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007848
Allen Hubbee26a5842015-04-09 10:33:20 -04007849NTB INTEL DRIVER
7850M: Jon Mason <jdmason@kudzu.us>
7851M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007852L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007853S: Supported
7854W: https://github.com/jonmason/ntb/wiki
7855T: git git://github.com/jonmason/ntb.git
7856F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007857
Xiangliang Yua1b36952016-01-21 19:47:05 +08007858NTB AMD DRIVER
7859M: Xiangliang Yu <Xiangliang.Yu@amd.com>
7860L: linux-ntb@googlegroups.com
7861S: Supported
7862F: drivers/ntb/hw/amd/
7863
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864NTFS FILESYSTEM
7865M: Anton Altaparmakov <anton@tuxera.com>
7866L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07007867W: http://www.tuxera.com/
Josh Boyer1adc1232005-11-23 15:44:15 -08007868T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007869S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007870F: Documentation/filesystems/ntfs.txt
7871F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007873NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007874M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007875L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01007876S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007877F: drivers/video/fbdev/riva/
7878F: drivers/video/fbdev/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879
Matthew Wilcox79461682012-11-10 08:54:53 -05007880NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007881M: Keith Busch <keith.busch@intel.com>
7882M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007883L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007884T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7885W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007886S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007887F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007888F: include/linux/nvme.h
7889
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007890NVMEM FRAMEWORK
7891M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7892M: Maxime Ripard <maxime.ripard@free-electrons.com>
7893S: Maintained
7894F: drivers/nvmem/
7895F: Documentation/devicetree/bindings/nvmem/
7896F: include/linux/nvmem-consumer.h
7897F: include/linux/nvmem-provider.h
7898
Clément Perrochauddece4582015-03-09 11:12:04 +01007899NXP-NCI NFC DRIVER
7900M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7901R: Charles Gorand <charles.gorand@effinnov.com>
7902L: linux-nfc@lists.01.org (moderated for non-subscribers)
7903S: Supported
7904F: drivers/nfc/nxp-nci
7905
Russell Kingf50d7142014-03-03 12:18:14 +00007906NXP TDA998X DRM DRIVER
7907M: Russell King <rmk+kernel@arm.linux.org.uk>
7908S: Supported
7909F: drivers/gpu/drm/i2c/tda998x_drv.c
7910F: include/drm/i2c/tda998x.h
7911
Peter Rosinfbace432014-11-08 14:40:17 +01007912NXP TFA9879 DRIVER
7913M: Peter Rosin <peda@axentia.se>
7914L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7915S: Maintained
7916F: sound/soc/codecs/tfa9879*
7917
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06007918OBJTOOL
7919M: Josh Poimboeuf <jpoimboe@redhat.com>
7920S: Supported
7921F: tools/objtool/
7922
Tony Lindgrenf5525782009-05-28 13:23:53 -07007923OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07007924M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007925L: linux-omap@vger.kernel.org
7926W: http://www.muru.com/linux/omap/
7927W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007928Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007929T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007930S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007931F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007932F: arch/arm/configs/omap1_defconfig
7933F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007934F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007935F: drivers/irqchip/irq-omap-intc.c
7936F: drivers/mfd/*omap*.c
7937F: drivers/mfd/menelaus.c
7938F: drivers/mfd/palmas.c
7939F: drivers/mfd/tps65217.c
7940F: drivers/mfd/tps65218.c
7941F: drivers/mfd/tps65910.c
7942F: drivers/mfd/twl-core.[ch]
7943F: drivers/mfd/twl4030*.c
7944F: drivers/mfd/twl6030*.c
7945F: drivers/mfd/twl6040*.c
7946F: drivers/regulator/palmas-regulator*.c
7947F: drivers/regulator/pbias-regulator.c
7948F: drivers/regulator/tps65217-regulator.c
7949F: drivers/regulator/tps65218-regulator.c
7950F: drivers/regulator/tps65910-regulator.c
7951F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007952F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007953
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007954OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007955M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007956M: Tony Lindgren <tony@atomide.com>
7957L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007958L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007959S: Maintained
7960F: arch/arm/boot/dts/*omap*
7961F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007962F: arch/arm/boot/dts/*am4*
7963F: arch/arm/boot/dts/*am5*
7964F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007965
Tony Lindgrenf5525782009-05-28 13:23:53 -07007966OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007967M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007968L: linux-omap@vger.kernel.org
7969S: Maintained
7970F: arch/arm/*omap*/*clock*
7971
7972OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman3cf2efd2016-02-24 14:57:36 -08007973M: Kevin Hilman <khilman@kernel.org>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007974L: linux-omap@vger.kernel.org
7975S: Maintained
7976F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007977F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007978
Joe Perchesd21db562013-09-11 14:23:35 -07007979OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007980M: Rajendra Nayak <rnayak@ti.com>
7981M: Paul Walmsley <paul@pwsan.com>
7982L: linux-omap@vger.kernel.org
7983S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007984F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007985
Tony Lindgrenf5525782009-05-28 13:23:53 -07007986OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007987M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007988M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007989L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007990L: linux-omap@vger.kernel.org
7991S: Maintained
7992F: sound/soc/omap/
7993
Tony Lindgren18640192014-11-20 09:13:42 -08007994OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7995M: Roger Quadros <rogerq@ti.com>
7996M: Tony Lindgren <tony@atomide.com>
7997L: linux-omap@vger.kernel.org
7998S: Maintained
7999F: drivers/memory/omap-gpmc.c
8000F: arch/arm/mach-omap2/*gpmc*
8001
Tony Lindgrenf5525782009-05-28 13:23:53 -07008002OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02008003M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008004L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07008005L: linux-omap@vger.kernel.org
8006S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008007F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07008008
Tomi Valkeinen676eec02010-01-07 13:18:04 +02008009OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02008010M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008011L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02008012L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008013S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008014F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008015F: Documentation/arm/OMAP/DSS
8016
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03008017OMAP HARDWARE SPINLOCK SUPPORT
8018M: Ohad Ben-Cohen <ohad@wizery.com>
8019L: linux-omap@vger.kernel.org
8020S: Maintained
8021F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03008022
Tony Lindgrenf5525782009-05-28 13:23:53 -07008023OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008024M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07008025L: linux-omap@vger.kernel.org
8026S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008027F: drivers/mmc/host/omap.c
8028
8029OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05308030L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008031L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05308032S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008033F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07008034
8035OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008036M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07008037S: Maintained
8038F: drivers/char/hw_random/omap-rng.c
8039
Paul Walmsleyf400c822010-12-06 19:08:54 -07008040OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02008041M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07008042M: Paul Walmsley <paul@pwsan.com>
8043L: linux-omap@vger.kernel.org
8044S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08008045F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07008046
Paul Walmsley8633fb32015-01-19 23:49:50 -07008047OMAP HWMOD DATA
8048M: Paul Walmsley <paul@pwsan.com>
8049L: linux-omap@vger.kernel.org
8050S: Maintained
8051F: arch/arm/mach-omap2/omap_hwmod*data*
8052
Paul Walmsleyf400c822010-12-06 19:08:54 -07008053OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02008054M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07008055L: linux-omap@vger.kernel.org
8056S: Maintained
8057F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8058
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03008059OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03008060M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8061L: linux-media@vger.kernel.org
8062S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02008063F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008064F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03008065F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03008066
Tony Lindgrenf5525782009-05-28 13:23:53 -07008067OMAP USB SUPPORT
Tony Lindgrenf5525782009-05-28 13:23:53 -07008068L: linux-usb@vger.kernel.org
8069L: linux-omap@vger.kernel.org
Felipe Balbi3b243512016-02-19 11:04:55 +02008070S: Orphan
Joe Perchesa16fbd62010-08-09 17:20:48 -07008071F: drivers/usb/*/*omap*
8072F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07008073
Kevin Hilman6d994712012-07-16 10:05:07 -07008074OMAP GPIO DRIVER
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03008075M: Grygorii Strashko <grygorii.strashko@ti.com>
Santosh Shilimkar97215802014-10-13 14:16:28 -04008076M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilman3cf2efd2016-02-24 14:57:36 -08008077M: Kevin Hilman <khilman@kernel.org>
Kevin Hilman6d994712012-07-16 10:05:07 -07008078L: linux-omap@vger.kernel.org
8079S: Maintained
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03008080F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
Kevin Hilman6d994712012-07-16 10:05:07 -07008081F: drivers/gpio/gpio-omap.c
8082
Mark Jacksonc351e292013-10-04 09:15:01 +01008083OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8084M: Mark Jackson <mpfj@newflow.co.uk>
8085L: linux-omap@vger.kernel.org
8086S: Maintained
8087F: arch/arm/boot/dts/am335x-nano.dts
8088
Bob Copeland0ad122d2008-07-25 19:45:18 -07008089OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008090M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07008091L: linux-karma-devel@lists.sourceforge.net
8092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008093F: Documentation/filesystems/omfs.txt
8094F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07008095
Harald Weltec1986ee2005-11-13 16:06:29 -08008096OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008097M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08008098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008099F: drivers/char/pcmcia/cm4000_cs.c
8100F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008101F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08008102
Harald Welte77c44ab2005-11-13 16:06:26 -08008103OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008104M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08008105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008106F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08008107
Jonathan Corbet77d51402007-03-22 19:44:17 -03008108OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008109M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008110L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008111T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03008112S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008113F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03008114
Thomas Gleixner431bca72007-05-02 09:31:35 +02008115ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008116M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02008117L: linux-mtd@lists.infradead.org
8118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008119F: drivers/mtd/onenand/
8120F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02008121
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008123M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124L: osst-users@lists.sourceforge.net
8125L: linux-scsi@vger.kernel.org
8126S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07008127F: Documentation/scsi/osst.txt
8128F: drivers/scsi/osst.*
8129F: drivers/scsi/osst_*.h
8130F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008132OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008133M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01008134L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008136F: Documentation/i2c/busses/i2c-ocores
8137F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008138
Grant Likely860c44c2009-10-26 16:49:49 -07008139OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008140M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07008141M: Frank Rowand <frowand.list@gmail.com>
8142M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07008143L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06008144W: http://www.devicetree.org/
8145T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07008146S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07008147F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07008148F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07008149F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07008150
Grant Likelyf8828202013-07-19 18:57:39 -07008151OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008152M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008153M: Pawel Moll <pawel.moll@arm.com>
8154M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01008155M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05008156M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008157L: devicetree@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008158T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
Grant Likelyf8828202013-07-19 18:57:39 -07008159S: Maintained
8160F: Documentation/devicetree/
8161F: arch/*/boot/dts/
8162F: include/dt-bindings/
8163
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02008164OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8165M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8166L: devicetree@vger.kernel.org
8167S: Maintained
8168F: Documentation/devicetree/dynamic-resolution-notes.txt
8169F: Documentation/devicetree/overlay-notes.txt
8170F: drivers/of/overlay.c
8171F: drivers/of/resolver.c
8172
Jonas Bonn19f9d392011-06-04 22:00:38 +03008173OPENRISC ARCHITECTURE
8174M: Jonas Bonn <jonas@southpole.se>
8175W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02008176L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03008177S: Maintained
8178T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07008179F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03008180
Jesse Grossccb13522011-10-25 19:26:31 -07008181OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07008182M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08008183L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07008184L: dev@openvswitch.org
8185W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07008186S: Maintained
8187F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08008188F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07008189
Viresh Kumar875fa6f2015-11-20 15:57:27 -08008190OPERATING PERFORMANCE POINTS (OPP)
8191M: Viresh Kumar <vireshk@kernel.org>
8192M: Nishanth Menon <nm@ti.com>
8193M: Stephen Boyd <sboyd@codeaurora.org>
8194L: linux-pm@vger.kernel.org
8195S: Maintained
8196T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8197F: drivers/base/power/opp/
8198F: include/linux/pm_opp.h
8199F: Documentation/power/opp.txt
8200F: Documentation/devicetree/bindings/opp/
8201
Clemens Ladischaf399172011-01-10 16:32:54 +01008202OPL4 DRIVER
8203M: Clemens Ladisch <clemens@ladisch.de>
8204L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8205T: git git://git.alsa-project.org/alsa-kernel.git
8206S: Maintained
8207F: sound/drivers/opl4/
8208
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01008210M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211L: oprofile-list@lists.sf.net
8212S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02008213F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07008214F: arch/*/oprofile/
8215F: drivers/oprofile/
8216F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008218ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07008219M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08008220M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008221L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08008222W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008223S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008224F: Documentation/filesystems/ocfs2.txt
8225F: Documentation/filesystems/dlmfs.txt
8226F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008227
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07008229L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008230W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07008231W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01008232S: Orphan
Kalle Valo2be45b62015-11-18 09:57:18 +02008233F: drivers/net/wireless/intersil/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008235OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03008236M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02008237M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02008238L: osd-dev@open-osd.org
8239W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07008240T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02008241S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008242F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07008243F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008244F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02008245
Miklos Szeredief94b182014-11-20 16:39:59 +01008246OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02008247M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01008248L: linux-unionfs@vger.kernel.org
8249T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02008250S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01008251F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02008252F: Documentation/filesystems/overlayfs.txt
8253
Mike Marshall85096162016-01-04 16:38:00 -05008254ORANGEFS FILESYSTEM
8255M: Mike Marshall <hubcap@omnibond.com>
8256L: pvfs2-developers@beowulf-underground.org
8257T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8258S: Supported
8259F: fs/orangefs/
8260F: Documentation/filesystems/orangefs.txt
8261
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008262P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008263M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008264L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008265W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008266S: Maintained
Kalle Valod3466832015-11-18 09:49:59 +02008267F: drivers/net/wireless/intersil/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008268
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008269PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008270M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008271L: netdev@vger.kernel.org
8272S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07008273F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008274
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008275PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008276M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01008277L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008279F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008280
Steffen Klassert48fc2672010-08-13 10:10:46 -04008281PADATA PARALLEL EXECUTION MECHANISM
8282M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04008283L: linux-crypto@vger.kernel.org
8284S: Maintained
8285F: kernel/padata.c
8286F: include/linux/padata.h
8287F: Documentation/padata.txt
8288
Harald Welte709ee532008-09-23 17:46:57 +02008289PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008290M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05008291L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02008292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008293F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02008294
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01008295PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07008296M: David Howells <dhowells@redhat.com>
8297M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01008298L: linux-am33-list@redhat.com (moderated for non-subscribers)
8299W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008301F: Documentation/mn10300/
8302F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01008303
Ksenija Stanojevic305b37b2016-02-03 12:31:49 +01008304PARALLEL LCD/KEYPAD PANEL DRIVER
8305M: Willy Tarreau <willy@haproxy.com>
8306M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8307S: Odd Fixes
8308F: Documentation/misc-devices/lcd-panel-cgram.txt
8309F: drivers/misc/panel.c
8310
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308311PARALLEL PORT SUBSYSTEM
8312M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8313M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008314L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008316F: drivers/parport/
8317F: include/linux/parport*.h
8318F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008319F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308320F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008322PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008323M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008324M: Chris Wright <chrisw@sous-sol.org>
8325M: Alok Kataria <akataria@vmware.com>
8326M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00008327L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008328S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10308329F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07008330F: arch/*/kernel/paravirt*
8331F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008332
Linus Torvalds1da177e2005-04-16 15:20:36 -07008333PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07008334M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008335L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008337F: Documentation/blockdev/paride.txt
8338F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008339
8340PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00008341M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05008342M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00008343L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008345Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008346T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008347T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008349F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008350F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008351F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008352F: drivers/char/agp/parisc-agp.c
8353F: drivers/input/serio/gscps2.c
8354F: drivers/parport/parport_gsc.*
8355F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008356F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008357F: drivers/video/console/sti*
8358F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359
Jim Cromie1662d322006-10-06 00:43:59 -07008360PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008361M: Jim Cromie <jim.cromie@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008362L: linux-hwmon@vger.kernel.org
Jim Cromie1662d322006-10-06 00:43:59 -07008363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008364F: Documentation/hwmon/pc87360
8365F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008366
8367PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008368M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008370F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008371
Jean Delvare1ad107f2010-08-14 21:09:00 +02008372PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008373M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008374L: linux-hwmon@vger.kernel.org
Jean Delvare1ad107f2010-08-14 21:09:00 +02008375S: Maintained
8376F: Documentation/hwmon/pc87427
8377F: drivers/hwmon/pc87427.c
8378
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008379PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008380M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008381S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008382F: drivers/leds/leds-pca9532.c
8383F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008384
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008385PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008386M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008387L: linux-i2c@vger.kernel.org
8388S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008389F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008390
Khalid Aziz3971dae2012-04-12 12:49:13 -07008391PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008392M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008393S: Maintained
8394F: drivers/firmware/pcdp.*
8395
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008396PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008397M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008398L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008400F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008401
Russell Currey78c1cff2016-02-17 17:06:04 +11008402PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8403M: Russell Currey <ruscur@russell.cc>
8404L: linuxppc-dev@lists.ozlabs.org
8405S: Supported
8406F: Documentation/powerpc/eeh-pci-error-recovery.txt
8407F: arch/powerpc/kernel/eeh*.c
8408F: arch/powerpc/platforms/*/eeh*.c
8409F: arch/powerpc/include/*/eeh*.h
8410
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008412M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008413L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008414Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008415T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008417F: Documentation/PCI/
8418F: drivers/pci/
8419F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008420F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008421F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422
Ley Foon Taneaa61112015-10-23 18:27:12 +08008423PCI DRIVER FOR ALTERA PCIE IP
8424M: Ley Foon Tan <lftan@altera.com>
8425L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8426L: linux-pci@vger.kernel.org
8427S: Supported
8428F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8429F: drivers/pci/host/pcie-altera.c
8430
Rob Herringb7e78172015-01-28 10:16:18 -06008431PCI DRIVER FOR ARM VERSATILE PLATFORM
8432M: Rob Herring <robh@kernel.org>
8433L: linux-pci@vger.kernel.org
8434L: linux-arm-kernel@lists.infradead.org
8435S: Maintained
8436F: Documentation/devicetree/bindings/pci/versatile.txt
8437F: drivers/pci/host/pci-versatile.c
8438
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008439PCI DRIVER FOR APPLIEDMICRO XGENE
8440M: Tanmay Inamdar <tinamdar@apm.com>
8441L: linux-pci@vger.kernel.org
8442L: linux-arm-kernel@lists.infradead.org
8443S: Maintained
8444F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8445F: drivers/pci/host/pci-xgene.c
8446
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008447PCI DRIVER FOR FREESCALE LAYERSCAPE
8448M: Minghuan Lian <minghuan.Lian@freescale.com>
8449M: Mingkai Hu <mingkai.hu@freescale.com>
8450M: Roy Zang <tie-fei.zang@freescale.com>
8451L: linuxppc-dev@lists.ozlabs.org
8452L: linux-pci@vger.kernel.org
8453L: linux-arm-kernel@lists.infradead.org
8454S: Maintained
8455F: drivers/pci/host/*layerscape*
8456
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008457PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008458M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008459M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008460L: linux-pci@vger.kernel.org
8461L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8462S: Maintained
8463F: drivers/pci/host/*imx6*
8464
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008465PCI DRIVER FOR TI KEYSTONE
8466M: Murali Karicheri <m-karicheri2@ti.com>
8467L: linux-pci@vger.kernel.org
8468L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8469S: Maintained
8470F: drivers/pci/host/*keystone*
8471
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008472PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8473M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8474M: Jason Cooper <jason@lakedaemon.net>
8475L: linux-pci@vger.kernel.org
8476L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8477S: Maintained
8478F: drivers/pci/host/*mvebu*
8479
Thierry Reding0447cfd2013-08-09 16:49:32 +02008480PCI DRIVER FOR NVIDIA TEGRA
8481M: Thierry Reding <thierry.reding@gmail.com>
8482L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008483L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008484S: Supported
8485F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8486F: drivers/pci/host/pci-tegra.c
8487
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008488PCI DRIVER FOR TI DRA7XX
8489M: Kishon Vijay Abraham I <kishon@ti.com>
8490L: linux-omap@vger.kernel.org
8491L: linux-pci@vger.kernel.org
8492S: Supported
8493F: Documentation/devicetree/bindings/pci/ti-pci.txt
8494F: drivers/pci/host/pci-dra7xx.c
8495
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008496PCI DRIVER FOR RENESAS R-CAR
8497M: Simon Horman <horms@verge.net.au>
8498L: linux-pci@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09008499L: linux-renesas-soc@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008500S: Maintained
8501F: drivers/pci/host/*rcar*
8502
Jingoo Han4af82252013-09-12 20:29:24 +09008503PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008504M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008505L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008506L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8507L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008508S: Maintained
8509F: drivers/pci/host/pci-exynos.c
8510
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008511PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008512M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308513M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008514L: linux-pci@vger.kernel.org
8515S: Maintained
8516F: drivers/pci/host/*designware*
8517
Joao Pinto5a3aa2a2016-03-10 14:44:52 -06008518PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8519M: Joao Pinto <jpinto@synopsys.com>
8520L: linux-pci@vger.kernel.org
8521S: Maintained
8522F: Documentation/devicetree/bindings/pci/designware-pcie.txt
8523F: drivers/pci/host/pcie-designware-plat.c
8524
Will Deaconcf288552014-05-01 12:04:28 +01008525PCI DRIVER FOR GENERIC OF HOSTS
8526M: Will Deacon <will.deacon@arm.com>
8527L: linux-pci@vger.kernel.org
8528L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8529S: Maintained
8530F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
David Daney4e64dbe2016-03-11 15:35:55 -06008531F: drivers/pci/host/pci-host-common.c
Will Deaconcf288552014-05-01 12:04:28 +01008532F: drivers/pci/host/pci-host-generic.c
8533
Keith Busch185a3832016-01-12 13:18:10 -07008534PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8535M: Keith Busch <keith.busch@intel.com>
8536L: linux-pci@vger.kernel.org
8537S: Supported
8538F: arch/x86/pci/vmd.c
8539
Pratyush Anand51b66a62014-02-11 11:39:26 +05308540PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308541M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308542L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308543S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308544F: drivers/pci/host/*spear*
8545
Ley Foon Tanaf1169b2015-10-23 18:27:13 +08008546PCI MSI DRIVER FOR ALTERA MSI IP
8547M: Ley Foon Tan <lftan@altera.com>
8548L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8549L: linux-pci@vger.kernel.org
8550S: Supported
8551F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8552F: drivers/pci/host/pcie-altera-msi.c
8553
Duc Dangdcd19de2015-06-05 15:56:34 -05008554PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8555M: Duc Dang <dhdang@apm.com>
8556L: linux-pci@vger.kernel.org
8557L: linux-arm-kernel@lists.infradead.org
8558S: Maintained
8559F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8560F: drivers/pci/host/pci-xgene-msi.c
8561
Zhou Wang500a1d92015-10-29 20:02:51 -05008562PCIE DRIVER FOR HISILICON
8563M: Zhou Wang <wangzhou1@hisilicon.com>
Gabriele Paoloni5930fe42015-11-27 01:17:05 +08008564M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
Zhou Wang500a1d92015-10-29 20:02:51 -05008565L: linux-pci@vger.kernel.org
8566S: Maintained
8567F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8568F: drivers/pci/host/pcie-hisi.c
8569
Stanimir Varbanov82a82382015-12-18 14:38:57 +02008570PCIE DRIVER FOR QUALCOMM MSM
8571M: Stanimir Varbanov <svarbanov@mm-sol.com>
8572L: linux-pci@vger.kernel.org
8573L: linux-arm-msm@vger.kernel.org
8574S: Maintained
8575F: drivers/pci/host/*qcom*
8576
David Daneyf12b76e2016-03-04 14:31:47 -08008577PCIE DRIVER FOR CAVIUM THUNDERX
8578M: David Daney <david.daney@cavium.com>
8579L: linux-pci@vger.kernel.org
8580L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8581S: Supported
8582F: Documentation/devicetree/bindings/pci/pci-thunder-*
8583F: drivers/pci/host/pci-thunder-*
8584
Linus Torvalds1da177e2005-04-16 15:20:36 -07008585PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008586P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008587L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008588W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Fengguang Wu9f273c22016-01-20 15:03:25 -08008589T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008591F: Documentation/pcmcia/
8592F: drivers/pcmcia/
8593F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008594
8595PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008596M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008597L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008598S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008599F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600
Steffen Klassert48fc2672010-08-13 10:10:46 -04008601PCRYPT PARALLEL CRYPTO ENGINE
8602M: Steffen Klassert <steffen.klassert@secunet.com>
8603L: linux-crypto@vger.kernel.org
8604S: Maintained
8605F: crypto/pcrypt.c
8606F: include/crypto/pcrypt.h
8607
Tejun Heoe72df0b2010-12-10 17:02:49 +01008608PER-CPU MEMORY ALLOCATOR
8609M: Tejun Heo <tj@kernel.org>
Christoph Lameter93e205a2016-03-17 14:21:15 -07008610M: Christoph Lameter <cl@linux.com>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008611T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8612S: Maintained
8613F: include/linux/percpu*.h
8614F: mm/percpu*.c
8615F: arch/*/include/asm/percpu.h
8616
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008617PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008618M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008620F: include/linux/delayacct.h
8621F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008622
Ingo Molnar57c0c152009-09-21 12:20:38 +02008623PERFORMANCE EVENTS SUBSYSTEM
Peter Zijlstradaecbd2672015-11-16 11:07:44 +01008624M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008625M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008626M: Arnaldo Carvalho de Melo <acme@kernel.org>
Peter Zijlstraa54d6902016-02-26 10:35:45 +01008627R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008628L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008629T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008630S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008631F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008632F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008633F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008634F: arch/*/kernel/perf_event*.c
8635F: arch/*/kernel/*/perf_event*.c
8636F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008637F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008638F: arch/*/kernel/perf_callchain.c
8639F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008640
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008641PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008642M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008643L: linux-abi-devel@lists.sourceforge.net
8644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008645F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008646F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008647
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008648PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008649M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008650S: Supported
8651F: Documentation/networking/phonet.txt
8652F: include/linux/phonet.h
8653F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008654F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008655F: net/phonet/
8656
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008658M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659L: linux-mtd@lists.infradead.org
8660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008661F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662
Bruno Prémontefdbb102012-07-30 21:39:03 +02008663PICOLCD HID DRIVER
8664M: Bruno Prémont <bonbons@linux-vserver.org>
8665L: linux-input@vger.kernel.org
8666S: Maintained
8667F: drivers/hid/hid-picolcd*
8668
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008669PICOXCELL SUPPORT
8670M: Jamie Iles <jamie@jamieiles.com>
8671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8672T: git git://github.com/jamieiles/linux-2.6-ji.git
8673S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008674F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008675F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008676F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008677
Linus Walleij2744e8a2011-05-02 20:50:54 +02008678PIN CONTROL SUBSYSTEM
8679M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008680L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008681T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008682S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008683F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008684F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008685
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008686PIN CONTROLLER - ATMEL AT91
8687M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8688L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8689S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008690F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008691
Ludovic Desroches33d36902015-09-16 17:36:59 +02008692PIN CONTROLLER - ATMEL AT91 PIO4
8693M: Ludovic Desroches <ludovic.desroches@atmel.com>
8694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8695L: linux-gpio@vger.kernel.org
8696S: Supported
8697F: drivers/pinctrl/pinctrl-at91-pio4.*
8698
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008699PIN CONTROLLER - INTEL
8700M: Mika Westerberg <mika.westerberg@linux.intel.com>
8701M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8702S: Maintained
8703F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308704
Laurent Pinchart9963b532014-07-02 16:33:31 +02008705PIN CONTROLLER - RENESAS
8706M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Geert Uytterhoeven1a4ca6d2015-12-16 08:47:11 +01008707M: Geert Uytterhoeven <geert+renesas@glider.be>
Simon Horman4a121092016-01-18 10:04:33 +09008708L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart9963b532014-07-02 16:33:31 +02008709S: Maintained
8710F: drivers/pinctrl/sh-pfc/
8711
Doug Andersonb75e60d2013-06-16 15:17:46 -07008712PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008713M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8715L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8716S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308717F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008718
Tony Lindgren13cbd902015-12-10 14:27:32 -08008719PIN CONTROLLER - SINGLE
8720M: Tony Lindgren <tony@atomide.com>
8721M: Haojian Zhuang <haojian.zhuang@linaro.org>
8722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8723L: linux-omap@vger.kernel.org
8724S: Maintained
8725F: drivers/pinctrl/pinctrl-single.c
8726
Viresh Kumardeda8282012-03-28 22:27:07 +05308727PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008728M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308729L: spear-devel@list.st.com
8730L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8731W: http://www.st.com/spear
8732S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008733F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308734
Peter Osterlund249a6772005-09-27 21:45:30 -07008735PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008736M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008738F: drivers/block/pktcdvd.c
8739F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008740F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008741
GuanXuetaob31d8272011-01-16 00:35:49 +08008742PKUNITY SOC DRIVERS
8743M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8744W: http://mprc.pku.edu.cn/~guanxuetao/linux
8745S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008746T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008747F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008748F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008749F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008750F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008751
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008752PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008753M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008754L: linux-hwmon@vger.kernel.org
8755W: http://hwmon.wiki.kernel.org/
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008756W: http://www.roeck-us.net/linux/drivers/
8757T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8758S: Maintained
8759F: Documentation/hwmon/pmbus
8760F: drivers/hwmon/pmbus/
8761F: include/linux/i2c/pmbus.h
8762
Anil Ravindranath89a36812009-08-25 17:35:18 -07008763PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008764L: linux-scsi@vger.kernel.org
8765W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008766S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008767F: drivers/scsi/pmcraid.*
8768
jack wangdbf9bfe2009-10-14 16:19:21 +08008769PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008770M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008771M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308772L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008773L: linux-scsi@vger.kernel.org
8774S: Supported
8775F: drivers/scsi/pm8001/
8776
Linus Torvalds1da177e2005-04-16 15:20:36 -07008777POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008778M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008779L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008780T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008782F: fs/timerfd.c
8783F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008784F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008785
Rafael J. Wysocki7b06a6d2015-12-05 01:54:47 +01008786POWER MANAGEMENT CORE
8787M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8788L: linux-pm@vger.kernel.org
8789T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8790S: Supported
8791F: drivers/base/power/
8792F: include/linux/pm.h
8793F: include/linux/pm_*
8794F: include/linux/powercap.h
8795F: drivers/powercap/
8796
Anton Vorontsov3be86142007-07-15 04:43:36 +04008797POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008798M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008799M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008800M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008801L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008802T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008804F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008805F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008806X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008807
Mark Rutland514f1612015-07-31 15:46:20 +01008808POWER STATE COORDINATION INTERFACE (PSCI)
8809M: Mark Rutland <mark.rutland@arm.com>
8810M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8811L: linux-arm-kernel@lists.infradead.org
8812S: Maintained
8813F: drivers/firmware/psci.c
8814F: include/linux/psci.h
8815F: include/uapi/linux/psci.h
8816
Linus Torvalds1da177e2005-04-16 15:20:36 -07008817PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008818M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008820F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821
8822PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008823M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824L: linux-ppp@vger.kernel.org
8825S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008826F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827
8828PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008829M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008831F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008832F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008833
8834PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008835M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008836S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008837F: drivers/net/ppp/pppoe.c
8838F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839
James Chapmana6d23702007-06-27 15:53:17 -07008840PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008841M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008842S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008843F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008844F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008845F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008846
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008847PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008848M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008849W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8850L: linuxpps@ml.enneenne.com (subscribers-only)
8851S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008852F: Documentation/pps/
8853F: drivers/pps/
8854F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008855
Harry Wei71a6d0a2011-05-11 15:13:33 -07008856PPTP DRIVER
8857M: Dmitry Kozlov <xeb@mail.ru>
8858L: netdev@vger.kernel.org
8859S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008860F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008861W: http://sourceforge.net/projects/accel-pptp
8862
Linus Torvalds1da177e2005-04-16 15:20:36 -07008863PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008864M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008865L: kpreempt-tech@lists.sourceforge.net
8866W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008868F: Documentation/preempt-locking.txt
8869F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008870
8871PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008872M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008873L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008874W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008875S: Obsolete
Kalle Valoc12edfe2015-11-18 09:56:45 +02008876F: drivers/net/wireless/intersil/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008878PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008879M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008880L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008881L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008882S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008883F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008884
Geoff Levandf58a9d12006-11-23 00:46:51 +01008885PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008886M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008887L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008889F: arch/powerpc/boot/ps3*
8890F: arch/powerpc/include/asm/lv1call.h
8891F: arch/powerpc/include/asm/ps3*.h
8892F: arch/powerpc/platforms/ps3/
8893F: drivers/*/ps3*
8894F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008895F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008896F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008897F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008898
Jim Pariscffb4add2009-01-06 11:32:10 +00008899PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008900M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008901M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008902L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008903S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008904F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008905
Anton Vorontsov8defe592012-08-03 18:07:20 -07008906PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008907M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008908M: Colin Cross <ccross@android.com>
8909M: Kees Cook <keescook@chromium.org>
8910M: Tony Luck <tony.luck@intel.com>
8911S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08008912T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Anton Vorontsov8defe592012-08-03 18:07:20 -07008913F: fs/pstore/
8914F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008915F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008916F: drivers/acpi/apei/erst.c
8917
Richard Cochran7fbc4152012-03-10 01:55:53 +00008918PTP HARDWARE CLOCK SUPPORT
8919M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008920L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008921S: Maintained
8922W: http://linuxptp.sourceforge.net/
8923F: Documentation/ABI/testing/sysfs-ptp
8924F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008925F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008926F: drivers/net/phy/dp83640*
8927F: drivers/ptp/*
8928F: include/linux/ptp_cl*
8929
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008930PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008931M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008932M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008933S: Maintained
8934F: include/asm-generic/syscall.h
8935F: include/linux/ptrace.h
8936F: include/linux/regset.h
8937F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008938F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008939F: kernel/ptrace.c
8940
Michael Krufky83202042006-07-03 00:24:18 -07008941PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008942M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008943L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008944L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008945W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008946T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008948F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008949F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008950
Hans de Goede39532e62012-11-04 17:05:59 -03008951PWC WEBCAM DRIVER
8952M: Hans de Goede <hdegoede@redhat.com>
8953L: linux-media@vger.kernel.org
8954T: git git://linuxtv.org/media_tree.git
8955S: Maintained
8956F: drivers/media/usb/pwc/*
8957
Kamil Debski93c090b2014-08-20 11:29:23 +02008958PWM FAN DRIVER
8959M: Kamil Debski <k.debski@samsung.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008960L: linux-hwmon@vger.kernel.org
Kamil Debski93c090b2014-08-20 11:29:23 +02008961S: Supported
8962F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8963F: Documentation/hwmon/pwm-fan
8964F: drivers/hwmon/pwm-fan.c
8965
Thierry Reding200efed2012-03-27 13:16:18 +02008966PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008967M: Thierry Reding <thierry.reding@gmail.com>
8968L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008969S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008970T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008971F: Documentation/pwm.txt
8972F: Documentation/devicetree/bindings/pwm/
8973F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008974F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008975F: drivers/video/backlight/pwm_bl.c
8976F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008977
Eric Miao30ec2612008-06-12 15:21:41 -07008978PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008979M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008980M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008981M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008983T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008984T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06008986F: arch/arm/boot/dts/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008987F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008988F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008989F: drivers/pcmcia/pxa2xx*
Robert Jarzmik1403ead2015-11-21 19:04:48 +01008990F: drivers/pinctrl/pxa/
Joe Perches9df92e62012-01-10 15:09:06 -08008991F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008992F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008993F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008994F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008995F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996
Robert Jarzmikf3154a42015-12-18 22:41:34 +01008997PXA GPIO DRIVER
8998M: Robert Jarzmik <robert.jarzmik@free.fr>
8999L: linux-gpio@vger.kernel.org
9000S: Maintained
9001F: drivers/gpio/gpio-pxa.c
9002
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08009003PXA3xx NAND FLASH DRIVER
9004M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9005L: linux-mtd@lists.infradead.org
9006S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07009007F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08009008
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009009MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009010M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08009011M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009012L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009013T: git git://github.com/hzhuang1/linux.git
9014T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009015S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06009016F: arch/arm/boot/dts/mmp*
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009017F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009018
Pierre Ossman272f1332007-05-14 21:25:26 +02009019PXA MMCI DRIVER
9020S: Orphan
9021
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08009022PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009023M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08009024L: rtc-linux@googlegroups.com
9025S: Maintained
9026
Tadeusz Strukcea40012014-06-05 13:44:39 -07009027QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07009028M: Tadeusz Struk <tadeusz.struk@intel.com>
9029L: qat-linux@intel.com
9030S: Supported
9031F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07009032
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07009033QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04009034M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07009035L: linux-rdma@vger.kernel.org
9036S: Supported
9037F: drivers/infiniband/hw/qib/
9038
Jes Sorensen5e9772b2010-06-30 15:37:38 +02009039QLOGIC QLA1280 SCSI DRIVER
9040M: Michael Reed <mdr@sgi.com>
9041L: linux-scsi@vger.kernel.org
9042S: Maintained
9043F: drivers/scsi/qla1280.[ch]
9044
Linus Torvalds1da177e2005-04-16 15:20:36 -07009045QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04009046M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009047L: linux-scsi@vger.kernel.org
9048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009049F: Documentation/scsi/LICENSE.qla2xxx
9050F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009051
Ravi Anand883c98f2010-04-28 11:45:49 +05309052QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05009053M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05309054L: linux-scsi@vger.kernel.org
9055S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04009056F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05309057F: drivers/scsi/qla4xxx/
9058
Ron Mercer5a4faa872006-07-25 00:40:21 -07009059QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00009060M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009061M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07009062M: linux-driver@qlogic.com
9063L: netdev@vger.kernel.org
9064S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009065F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07009066F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07009067
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009068QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04009069M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009070L: netdev@vger.kernel.org
9071S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07009072F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009073
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009074QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04009075M: Harish Patil <harish.patil@qlogic.com>
9076M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9077M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07009078M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009079L: netdev@vger.kernel.org
9080S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07009081F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009082
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02009083QLOGIC QL4xxx ETHERNET DRIVER
9084M: Yuval Mintz <Yuval.Mintz@qlogic.com>
9085M: Ariel Elior <Ariel.Elior@qlogic.com>
9086M: everest-linux-l2@qlogic.com
9087L: netdev@vger.kernel.org
9088S: Supported
9089F: drivers/net/ethernet/qlogic/qed/
9090F: include/linux/qed/
9091F: drivers/net/ethernet/qlogic/qede/
9092
Linus Torvalds1da177e2005-04-16 15:20:36 -07009093QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009094M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009095W: http://www.alarsen.net/linux/qnx4fs/
9096S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07009097F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009098F: include/uapi/linux/qnx4_fs.h
9099F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009100
Antti Palosaari91952bc2012-10-01 12:28:46 -03009101QT1010 MEDIA DRIVER
9102M: Antti Palosaari <crope@iki.fi>
9103L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009104W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009105W: http://palosaari.fi/linux/
9106Q: http://patchwork.linuxtv.org/project/linux-media/list/
9107T: git git://linuxtv.org/anttip/media_tree.git
9108S: Maintained
9109F: drivers/media/tuners/qt1010*
9110
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05309111QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9112M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9113L: linux-wireless@vger.kernel.org
9114L: ath9k-devel@lists.ath9k.org
9115W: http://wireless.kernel.org/en/users/Drivers/ath9k
9116S: Supported
9117F: drivers/net/wireless/ath/ath9k/
9118
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03009119QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9120M: Kalle Valo <kvalo@qca.qualcomm.com>
9121L: ath10k@lists.infradead.org
9122W: http://wireless.kernel.org/en/users/Drivers/ath10k
Fengguang Wu9f273c22016-01-20 15:03:25 -08009123T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03009124S: Supported
9125F: drivers/net/wireless/ath/ath10k/
9126
Richard Kuo4f4567c2011-10-31 18:56:38 -05009127QUALCOMM HEXAGON ARCHITECTURE
9128M: Richard Kuo <rkuo@codeaurora.org>
9129L: linux-hexagon@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08009130T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
Richard Kuo4f4567c2011-10-31 18:56:38 -05009131S: Supported
9132F: arch/hexagon/
9133
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01009134QUALCOMM WCN36XX WIRELESS DRIVER
9135M: Eugene Krasnikov <k.eugene.e@gmail.com>
9136L: wcn36xx@lists.infradead.org
9137W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
9138T: git git://github.com/KrasnikovEugene/wcn36xx.git
9139S: Supported
9140F: drivers/net/wireless/ath/wcn36xx/
9141
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009142RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08009143M: Ilya Dryomov <idryomov@gmail.com>
9144M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06009145M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04009146L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07009147W: http://ceph.com/
9148T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04009149T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009150S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04009151F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009152F: drivers/block/rbd.c
9153F: drivers/block/rbd_types.h
9154
Linus Torvalds1da177e2005-04-16 15:20:36 -07009155RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009156M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009157L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009159F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009160F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009161
Hans de Goedec6c9b342012-11-04 17:03:58 -03009162RADIOSHARK RADIO DRIVER
9163M: Hans de Goede <hdegoede@redhat.com>
9164L: linux-media@vger.kernel.org
9165T: git git://linuxtv.org/media_tree.git
9166S: Maintained
9167F: drivers/media/radio/radio-shark.c
9168
9169RADIOSHARK2 RADIO DRIVER
9170M: Hans de Goede <hdegoede@redhat.com>
9171L: linux-media@vger.kernel.org
9172T: git git://linuxtv.org/media_tree.git
9173S: Maintained
9174F: drivers/media/radio/radio-shark2.c
9175F: drivers/media/radio/radio-tea5777.c
9176
Linus Torvalds1da177e2005-04-16 15:20:36 -07009177RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009178M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009179L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009180S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009181F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009182
John Crispina0fd81a2016-01-04 20:28:13 +01009183RALINK MIPS ARCHITECTURE
9184M: John Crispin <blogic@openwrt.org>
9185L: linux-mips@linux-mips.org
9186S: Maintained
9187F: arch/mips/ralink
9188
Randy Dunlape7839f22008-10-12 16:11:45 -07009189RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009190P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02009191M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01009192M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009193L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009194S: Maintained
Kalle Valo33aca942015-11-18 10:18:44 +02009195F: drivers/net/wireless/ralink/rt2x00/
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009196
Nick Piggin9db55792008-02-08 04:19:49 -08009197RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06009198M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08009199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009200F: Documentation/blockdev/ramdisk.txt
9201F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08009202
Matt Mackall9e95ce22005-04-16 15:25:56 -07009203RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07009204M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07009205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009206F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07009207
Matt Porter394b7012005-11-07 01:00:15 -08009208RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009209M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08009210M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08009211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009212F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08009213
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009214RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009215L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04009216S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009217F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009218
9219RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07009220M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009221M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009222L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009223S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009224T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07009225F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07009226F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009227
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009228RCUTORTURE TEST FRAMEWORK
9229M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009230M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009231R: Steven Rostedt <rostedt@goodmis.org>
9232R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009233R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009234L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009235S: Supported
9236T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9237F: tools/testing/selftests/rcutorture
9238
Florian Fainellic1f766b2008-02-06 22:39:44 +01009239RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07009240M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01009241S: Maintained
9242
Florian Fainellidb17f392007-12-19 11:30:30 +01009243RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009244M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01009245L: netdev@vger.kernel.org
9246S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07009247F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01009248
Andy Grovera09ed662009-02-24 15:30:41 +00009249RDS - RELIABLE DATAGRAM SOCKETS
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009250M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
9251L: netdev@vger.kernel.org
9252L: linux-rdma@vger.kernel.org
Kyle McMartinfbb5a552009-04-09 14:09:47 +00009253L: rds-devel@oss.oracle.com (moderated for non-subscribers)
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009254W: https://oss.oracle.com/projects/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00009255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009256F: net/rds/
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009257F: Documentation/networking/rds.txt
Andy Grovera09ed662009-02-24 15:30:41 +00009258
Dennis Dalessandro01946212016-01-06 09:50:24 -08009259RDMAVT - RDMA verbs software
9260M: Dennis Dalessandro <dennis.dalessandro@intel.com>
9261L: linux-rdma@vger.kernel.org
9262S: Supported
9263F: drivers/infiniband/sw/rdmavt
9264
Josh Triplett595182b2006-10-04 02:17:21 -07009265READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07009266M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009267M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009268R: Steven Rostedt <rostedt@goodmis.org>
9269R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009270R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009271L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009272W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07009273S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009274T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009275F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009276X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009277F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009278X: include/linux/srcu.h
9279F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07009280X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07009281
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009282REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009283M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07009284M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08009285L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08009286Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02009287T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009289F: Documentation/rtc.txt
9290F: drivers/rtc/
9291F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009292F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009293
Mark Brown0e400c52014-07-31 12:38:31 +01009294REALTEK AUDIO CODECS
9295M: Bard Liao <bardliao@realtek.com>
9296M: Oder Chiou <oder_chiou@realtek.com>
9297S: Maintained
9298F: sound/soc/codecs/rt*
9299F: include/sound/rt*.h
9300
Linus Torvalds1da177e2005-04-16 15:20:36 -07009301REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07009302L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009304F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009305
Mark Brownb83a3132011-05-11 19:59:58 +02009306REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01009307M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01009308L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02009309T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9310S: Supported
9311F: drivers/base/regmap/
9312F: include/linux/regmap.h
9313
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009314REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9315M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08009316M: Bjorn Andersson <bjorn.andersson@linaro.org>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03009317T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009318S: Maintained
9319F: drivers/remoteproc/
9320F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07009321F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009322
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009323REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9324M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08009325M: Bjorn Andersson <bjorn.andersson@linaro.org>
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009326T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9327S: Maintained
9328F: drivers/rpmsg/
9329F: Documentation/rpmsg.txt
9330F: include/linux/rpmsg.h
9331
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009332RENESAS ETHERNET DRIVERS
9333R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9334L: netdev@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09009335L: linux-renesas-soc@vger.kernel.org
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009336F: drivers/net/ethernet/renesas/
9337F: include/linux/sh_eth.h
9338
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009339RENESAS USB2 PHY DRIVER
9340M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Simon Horman4a121092016-01-18 10:04:33 +09009341L: linux-renesas-soc@vger.kernel.org
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009342S: Maintained
9343F: drivers/phy/phy-rcar-gen3-usb2.c
9344
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009345RESET CONTROLLER FRAMEWORK
9346M: Philipp Zabel <p.zabel@pengutronix.de>
Fengguang Wu9f273c22016-01-20 15:03:25 -08009347T: git git://git.pengutronix.de/git/pza/linux
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009348S: Maintained
9349F: drivers/reset/
9350F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01009351F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009352F: include/linux/reset.h
9353F: include/linux/reset-controller.h
9354
Ivo van Doorne08976452008-04-12 19:23:55 +02009355RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07009356M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02009357L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02009358W: http://wireless.kernel.org/
9359T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9360T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02009361S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08009362F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07009363F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02009364
Thomas Graf933685c2015-01-13 01:01:24 +01009365RHASHTABLE
9366M: Thomas Graf <tgraf@suug.ch>
9367L: netdev@vger.kernel.org
9368S: Maintained
9369F: lib/rhashtable.c
9370F: include/linux/rhashtable.h
9371
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009372RICOH SMARTMEDIA/XD DRIVER
9373M: Maxim Levitsky <maximlevitsky@gmail.com>
9374S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07009375F: drivers/mtd/nand/r852.c
9376F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009377
Maxim Levitsky92634122011-03-25 01:56:59 -07009378RICOH R5C592 MEMORYSTICK DRIVER
9379M: Maxim Levitsky <maximlevitsky@gmail.com>
9380S: Maintained
9381F: drivers/memstick/host/r592.*
9382
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02009383ROCCAT DRIVERS
9384M: Stefan Achatz <erazor_de@users.sourceforge.net>
9385W: http://sourceforge.net/projects/roccat/
9386S: Maintained
9387F: drivers/hid/hid-roccat*
9388F: include/linux/hid-roccat*
9389F: Documentation/ABI/*/sysfs-driver-hid-roccat*
9390
Jiri Pirko4b8ac962014-11-28 14:34:26 +01009391ROCKER DRIVER
9392M: Jiri Pirko <jiri@resnulli.us>
9393M: Scott Feldman <sfeldma@gmail.com>
9394L: netdev@vger.kernel.org
9395S: Supported
9396F: drivers/net/ethernet/rocker/
9397
Linus Torvalds1da177e2005-04-16 15:20:36 -07009398ROCKETPORT DRIVER
9399P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009400W: http://www.comtrol.com
9401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009402F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07009403F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009404
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07009405ROCKETPORT EXPRESS/INFINITY DRIVER
9406M: Kevin Cernekee <cernekee@gmail.com>
9407L: linux-serial@vger.kernel.org
9408S: Odd Fixes
9409F: drivers/tty/serial/rp2.*
9410
Linus Torvalds1da177e2005-04-16 15:20:36 -07009411ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009412M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009413L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02009414W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009416F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009417F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07009418F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009419
Antti Palosaari91952bc2012-10-01 12:28:46 -03009420RTL2830 MEDIA DRIVER
9421M: Antti Palosaari <crope@iki.fi>
9422L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009423W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009424W: http://palosaari.fi/linux/
9425Q: http://patchwork.linuxtv.org/project/linux-media/list/
9426T: git git://linuxtv.org/anttip/media_tree.git
9427S: Maintained
9428F: drivers/media/dvb-frontends/rtl2830*
9429
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009430RTL2832 MEDIA DRIVER
9431M: Antti Palosaari <crope@iki.fi>
9432L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009433W: https://linuxtv.org
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009434W: http://palosaari.fi/linux/
9435Q: http://patchwork.linuxtv.org/project/linux-media/list/
9436T: git git://linuxtv.org/anttip/media_tree.git
9437S: Maintained
9438F: drivers/media/dvb-frontends/rtl2832*
9439
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009440RTL2832_SDR MEDIA DRIVER
9441M: Antti Palosaari <crope@iki.fi>
9442L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009443W: https://linuxtv.org
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009444W: http://palosaari.fi/linux/
9445Q: http://patchwork.linuxtv.org/project/linux-media/list/
9446T: git git://linuxtv.org/anttip/media_tree.git
9447S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03009448F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009449
Larry Finger59840482008-11-12 17:13:09 -06009450RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04009451L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009452W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009453T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05009454S: Orphan
Kalle Valo62141722015-11-18 10:09:24 +02009455F: drivers/net/wireless/realtek/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04009456
Larry Finger59840482008-11-12 17:13:09 -06009457RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03009458M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009459M: Hin-Tak Leung <htl10@users.sourceforge.net>
9460M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009461L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009462W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009463T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009464S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009465F: drivers/net/wireless/realtek/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009466
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009467RTL8192CE WIRELESS DRIVER
9468M: Larry Finger <Larry.Finger@lwfinger.net>
9469M: Chaoming Li <chaoming_li@realsil.com.cn>
9470L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009471W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009472T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9473S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009474F: drivers/net/wireless/realtek/rtlwifi/
9475F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009476
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009477RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9478M: Jes Sorensen <Jes.Sorensen@redhat.com>
9479L: linux-wireless@vger.kernel.org
9480T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9481S: Maintained
9482F: drivers/net/wireless/realtek/rtl8xxxu/
9483
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009484S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009485M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009486L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009487S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009488F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009489
Linus Torvalds1da177e2005-04-16 15:20:36 -07009490S390
Joe Perches8b58be82009-07-29 15:04:30 -07009491M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9492M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009493L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009494W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08009495T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
Heiko Carstens5238da42006-02-11 17:56:01 -08009496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009497F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009498F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009499F: Documentation/s390/
9500F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009501
Sebastian Ott322986c2014-02-17 15:16:30 +01009502S390 COMMON I/O LAYER
9503M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9504M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9505L: linux-s390@vger.kernel.org
9506W: http://www.ibm.com/developerworks/linux/linux390/
9507S: Supported
9508F: drivers/s390/cio/
9509
9510S390 DASD DRIVER
9511M: Stefan Weinhuber <wein@de.ibm.com>
9512M: Stefan Haberland <stefan.haberland@de.ibm.com>
9513L: linux-s390@vger.kernel.org
9514W: http://www.ibm.com/developerworks/linux/linux390/
9515S: Supported
9516F: drivers/s390/block/dasd*
9517F: block/partitions/ibm.c
9518
Heiko Carstens5238da42006-02-11 17:56:01 -08009519S390 NETWORK DRIVERS
Ursula Braunf0c59af2015-12-11 12:27:52 +01009520M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009521L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009522W: http://www.ibm.com/developerworks/linux/linux390/
9523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009524F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009525
Sebastian Ott322986c2014-02-17 15:16:30 +01009526S390 PCI SUBSYSTEM
9527M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9528M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9529L: linux-s390@vger.kernel.org
9530W: http://www.ibm.com/developerworks/linux/linux390/
9531S: Supported
9532F: arch/s390/pci/
9533F: drivers/pci/hotplug/s390_pci_hpc.c
9534
Felix Beckfeed9b62009-03-26 15:24:23 +01009535S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009536M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009537L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009538W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009539S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009540F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009541
Heiko Carstens5238da42006-02-11 17:56:01 -08009542S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009543M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009544L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009545W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009547F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009548
Ursula Braundd96df22007-09-19 13:09:02 +02009549S390 IUCV NETWORK LAYER
Ursula Braunf0c59af2015-12-11 12:27:52 +01009550M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009551L: linux-s390@vger.kernel.org
9552W: http://www.ibm.com/developerworks/linux/linux390/
9553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009554F: drivers/s390/net/*iucv*
9555F: include/net/iucv/
9556F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009557
Gerald Schaefer8128f23c2015-08-27 15:33:03 +02009558S390 IOMMU (PCI)
9559M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9560L: linux-s390@vger.kernel.org
9561W: http://www.ibm.com/developerworks/linux/linux390/
9562S: Supported
9563F: drivers/iommu/s390-iommu.c
9564
Ben Dooks4dde7f72008-06-30 22:40:38 +01009565S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009566M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009567L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009568S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009569F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009570
Hans Verkuil1f15a222012-11-23 07:45:29 -03009571SAA6588 RDS RECEIVER DRIVER
9572M: Hans Verkuil <hverkuil@xs4all.nl>
9573L: linux-media@vger.kernel.org
9574T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009575W: https://linuxtv.org
Hans Verkuil1f15a222012-11-23 07:45:29 -03009576S: Odd Fixes
9577F: drivers/media/i2c/saa6588*
9578
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009579SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009580M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009581L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009582W: https://linuxtv.org
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009583T: git git://linuxtv.org/media_tree.git
9584S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009585F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009586F: drivers/media/pci/saa7134/
9587
Linus Torvalds1da177e2005-04-16 15:20:36 -07009588SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009589M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009590L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009591T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009592S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009593F: drivers/media/common/saa7146/
9594F: drivers/media/pci/saa7146/
9595F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009596
Corentin Chary92304a42011-12-05 12:38:35 -05009597SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009598M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009599L: platform-driver-x86@vger.kernel.org
9600S: Maintained
9601F: drivers/platform/x86/samsung-laptop.c
9602
Mark Brown4a109cc2010-09-24 10:50:46 +01009603SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009604M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009605L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9606S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009607F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009608
Jingoo Han0d89a282011-12-19 11:09:35 +09009609SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009610M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009611L: linux-fbdev@vger.kernel.org
9612S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009613F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009614
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009615SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009616M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009617M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009618L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009619L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009620S: Supported
9621F: drivers/mfd/sec*.c
9622F: drivers/regulator/s2m*.c
9623F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009624F: drivers/clk/clk-s2mps11.c
9625F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009626F: include/linux/mfd/samsung/
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009627F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9628F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
Krzysztof Kozlowski27383ca2015-12-04 10:10:04 +09009629F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009630F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009631
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009632SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9633M: Kyungmin Park <kyungmin.park@samsung.com>
9634M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9635L: linux-media@vger.kernel.org
9636Q: https://patchwork.linuxtv.org/project/linux-media/list/
9637S: Supported
9638F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009639
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009640SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9641M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9642L: linux-media@vger.kernel.org
9643L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9644S: Maintained
9645F: drivers/media/platform/s3c-camif/
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009646F: include/media/drv-intf/s3c_camif.h
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009647
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009648SAMSUNG S5C73M3 CAMERA DRIVER
9649M: Kyungmin Park <kyungmin.park@samsung.com>
9650M: Andrzej Hajda <a.hajda@samsung.com>
9651L: linux-media@vger.kernel.org
9652S: Supported
9653F: drivers/media/i2c/s5c73m3/*
9654
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009655SAMSUNG S5K5BAF CAMERA DRIVER
9656M: Kyungmin Park <kyungmin.park@samsung.com>
9657M: Andrzej Hajda <a.hajda@samsung.com>
9658L: linux-media@vger.kernel.org
9659S: Supported
9660F: drivers/media/i2c/s5k5baf.c
9661
Robert Baldygac04c6742015-08-20 17:26:02 +02009662SAMSUNG S3FWRN5 NFC DRIVER
9663M: Robert Baldyga <r.baldyga@samsung.com>
Robert Baldyga079c2652016-03-10 15:22:43 +01009664M: Krzysztof Opasiak <k.opasiak@samsung.com>
Robert Baldygac04c6742015-08-20 17:26:02 +02009665L: linux-nfc@lists.01.org (moderated for non-subscribers)
9666S: Supported
9667F: drivers/nfc/s3fwrn5
9668
Tomasz Figa310e39c2013-11-09 03:17:34 +01009669SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009670M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9671M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009672S: Supported
9673L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9674F: drivers/clk/samsung/
9675
Byungho An66890ed2014-03-25 12:11:07 -07009676SAMSUNG SXGBE DRIVERS
9677M: Byungho An <bh74.an@samsung.com>
9678M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009679M: Vipul Pandya <vipul.pandya@samsung.com>
9680S: Supported
9681L: netdev@vger.kernel.org
9682F: drivers/net/ethernet/samsung/sxgbe/
9683
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009684SAMSUNG THERMAL DRIVER
9685M: Lukasz Majewski <l.majewski@samsung.com>
9686L: linux-pm@vger.kernel.org
9687L: linux-samsung-soc@vger.kernel.org
9688S: Supported
Fengguang Wu9f273c22016-01-20 15:03:25 -08009689T: git https://github.com/lmajewski/linux-samsung-thermal.git
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009690F: drivers/thermal/samsung/
9691
Kamil Debskie296cd32014-08-21 11:33:37 +02009692SAMSUNG USB2 PHY DRIVER
9693M: Kamil Debski <k.debski@samsung.com>
9694L: linux-kernel@vger.kernel.org
9695S: Supported
9696F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9697F: Documentation/phy/samsung-usb2.txt
9698F: drivers/phy/phy-exynos4210-usb2.c
9699F: drivers/phy/phy-exynos4x12-usb2.c
9700F: drivers/phy/phy-exynos5250-usb2.c
9701F: drivers/phy/phy-s5pv210-usb2.c
9702F: drivers/phy/phy-samsung-usb2.c
9703F: drivers/phy/phy-samsung-usb2.h
9704
Alan Coxca749e22011-03-18 13:56:14 +00009705SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009706M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009707L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009708S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009709F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009710
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309711SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009712M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309713M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309714S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009715F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009716F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009717F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309718
Lars Persson058999c2015-07-28 12:01:50 +02009719SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9720M: Lars Persson <lars.persson@axis.com>
9721L: netdev@vger.kernel.org
9722S: Supported
9723F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9724F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9725
Wolfram Sangfc531d92015-10-15 15:50:15 +02009726SYNOPSYS DESIGNWARE I2C DRIVER
Wolfram Sangfc531d92015-10-15 15:50:15 +02009727M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Andy Shevchenkod0781b92016-03-08 11:19:24 +02009728R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9729R: Mika Westerberg <mika.westerberg@linux.intel.com>
Wolfram Sangfc531d92015-10-15 15:50:15 +02009730L: linux-i2c@vger.kernel.org
9731S: Maintained
9732F: drivers/i2c/busses/i2c-designware-*
9733F: include/linux/platform_data/i2c-designware.h
9734
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009735SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009736M: Jaehoon Chung <jh80.chung@samsung.com>
9737L: linux-mmc@vger.kernel.org
9738S: Maintained
9739F: include/linux/mmc/dw_mmc.h
9740F: drivers/mmc/host/dw_mmc*
9741
Alexander Shishkina961e692015-09-22 15:47:11 +03009742SYSTEM TRACE MODULE CLASS
9743M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9744S: Maintained
Alexander Shishkine787bc42016-03-31 16:30:15 +03009745T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
Alexander Shishkina961e692015-09-22 15:47:11 +03009746F: Documentation/trace/stm.txt
9747F: drivers/hwtracing/stm/
9748F: include/linux/stm.h
9749F: include/uapi/linux/stm.h
9750
Andreas Noever1db121d2014-07-10 18:58:04 +02009751THUNDERBOLT DRIVER
9752M: Andreas Noever <andreas.noever@gmail.com>
9753S: Maintained
9754F: drivers/thunderbolt/
9755
Sebastian Reichele35a49b2016-01-17 21:36:03 +01009756TI BQ27XXX POWER SUPPLY DRIVER
9757R: Andrew F. Davis <afd@ti.com>
9758F: include/linux/power/bq27xxx_battery.h
9759F: drivers/power/bq27xxx_battery.c
9760F: drivers/power/bq27xxx_battery_i2c.c
9761
John Stultz34db37c2015-11-13 13:07:31 -08009762TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
John Stultz50363732012-12-13 13:08:47 -05009763M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009764M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009765L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009766T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009767S: Supported
9768F: include/linux/clocksource.h
9769F: include/linux/time.h
9770F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009771F: include/uapi/linux/time.h
9772F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009773F: kernel/time/clocksource.c
9774F: kernel/time/time*.c
John Stultz34db37c2015-11-13 13:07:31 -08009775F: kernel/time/alarmtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01009776F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009777F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009778
Linus Torvalds1da177e2005-04-16 15:20:36 -07009779SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009780M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009782F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009783
9784SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009785M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009786M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009787L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009788T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009789S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009790F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009791F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009792F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009793F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009794
Chen Liqin6bcf6732009-06-13 15:24:33 +08009795SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009796M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009797M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009798W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009799S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009800F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009801
Sudeep Holla80f390e2015-05-14 11:26:11 +01009802SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9803M: Sudeep Holla <sudeep.holla@arm.com>
9804L: linux-arm-kernel@lists.infradead.org
9805S: Maintained
9806F: Documentation/devicetree/bindings/arm/arm,scpi.txt
Sudeep Hollacd52c2a2015-03-30 10:59:52 +01009807F: drivers/clk/clk-scpi.c
Sudeep Holla8def3102015-03-30 10:59:52 +01009808F: drivers/cpufreq/scpi-cpufreq.c
Sudeep Holla8cb7cf52015-03-30 10:59:52 +01009809F: drivers/firmware/arm_scpi.c
9810F: include/linux/scpi_protocol.h
Sudeep Holla80f390e2015-05-14 11:26:11 +01009811
Linus Torvalds1da177e2005-04-16 15:20:36 -07009812SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009813M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009814L: linux-scsi@vger.kernel.org
9815W: http://www.kernel.dk
9816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009817F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009818
Roland Dreierfb50a832010-10-07 09:54:53 -07009819SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009820M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009821L: linux-rdma@vger.kernel.org
9822S: Supported
9823W: http://www.openfabrics.org
9824Q: http://patchwork.kernel.org/project/linux-rdma/list/
9825T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9826F: drivers/infiniband/ulp/srp/
9827F: include/scsi/srp.h
9828
Linus Torvalds1da177e2005-04-16 15:20:36 -07009829SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009830M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009831L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009832W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009833S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009834F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009835F: drivers/scsi/sg.c
9836F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009837
9838SCSI SUBSYSTEM
James Bottomley7ee78952016-03-14 12:42:27 -07009839M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
James Bottomley0351b8f2015-04-01 09:09:36 +00009840T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Martin K. Petersenf4ab4212015-11-13 16:46:49 -05009841M: "Martin K. Petersen" <martin.petersen@oracle.com>
9842T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9843L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009845F: drivers/scsi/
9846F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009847
9848SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009849M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009850L: linux-scsi@vger.kernel.org
9851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009852F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009853F: drivers/scsi/st.*
9854F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009855
9856SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009857M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009858M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009859L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009860W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009862F: Documentation/networking/sctp.txt
9863F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009864F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009865F: include/net/sctp/
9866F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009867
9868SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009869M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009870S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009871F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009872F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009873F: drivers/watchdog/scx200_wdt.c
9874F: drivers/i2c/busses/scx200*
9875F: drivers/mtd/maps/scx200_docflash.c
9876F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009877
9878SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009879M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009881F: drivers/char/scx200_gpio.c
9882F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009883
9884SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009885M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009887F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009888
Sascha Sommer6a369132008-07-15 14:21:29 +02009889SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009890M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009891L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009893F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009894
Randy Dunlape7839f22008-10-12 16:11:45 -07009895SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Ulf Hanssonddfe9542016-02-11 15:14:59 +01009896M: Adrian Hunter <adrian.hunter@intel.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009897L: linux-mmc@vger.kernel.org
Ulf Hanssonddfe9542016-02-11 15:14:59 +01009898T: git git://git.infradead.org/users/ahunter/linux-sdhci.git
9899S: Maintained
9900F: drivers/mmc/host/sdhci*
9901F: include/linux/mmc/sdhci*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009902
Kees Cookc04f9d62014-07-18 11:28:33 -07009903SECURE COMPUTING
9904M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009905R: Andy Lutomirski <luto@amacapital.net>
9906R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009907T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9908S: Supported
9909F: kernel/seccomp.c
9910F: include/uapi/linux/seccomp.h
9911F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009912F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009913K: \bsecure_computing
9914K: \bTIF_SECCOMP\b
9915
Ben Dooks0d1bb412009-06-14 13:52:37 +01009916SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009917M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009918M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009919L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009920S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009921F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009922
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009923SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009924M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009925L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009926L: linux-mmc@vger.kernel.org
9927S: Maintained
9928F: drivers/mmc/host/sdhci-spear.c
9929
James Morris8711cca2008-12-04 03:19:45 +11009930SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009931M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009932M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009933L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009934T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009935W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009936S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009937F: security/
James Morris8711cca2008-12-04 03:19:45 +11009938
Linus Torvalds1da177e2005-04-16 15:20:36 -07009939SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009940M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009941S: Supported
9942
9943SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009944M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009945M: Stephen Smalley <sds@tycho.nsa.gov>
9946M: Eric Paris <eparis@parisplace.org>
9947L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009948W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009949T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009950S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009951F: include/linux/selinux*
9952F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009953F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009954
John Johansenc1c124e2010-07-29 14:48:09 -07009955APPARMOR SECURITY MODULE
9956M: John Johansen <john.johansen@canonical.com>
9957L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9958W: apparmor.wiki.kernel.org
9959T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9960S: Supported
9961F: security/apparmor/
9962
Kees Cook730daa12015-07-23 18:02:48 -07009963YAMA SECURITY MODULE
9964M: Kees Cook <keescook@chromium.org>
9965T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9966S: Supported
9967F: security/yama/
9968
Jiri Slabycef2cf02007-05-08 00:31:45 -07009969SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009970M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009972F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009973F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009974
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309975SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009976M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309977M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9978M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009979L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009980W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009981S: Supported
9982F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309983
Sathya Perla6938f852015-05-12 02:13:50 -04009984Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
Sathya Perlaaa7b4532016-02-02 08:10:10 -05009985M: Sathya Perla <sathya.perla@broadcom.com>
9986M: Ajit Khaparde <ajit.khaparde@broadcom.com>
9987M: Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
9988M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
9989M: Somnath Kotur <somnath.kotur@broadcom.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009990L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009991W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009992S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009993F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009994
Selvin Xavierd2928a82015-03-15 00:09:41 +05309995EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009996M: Selvin Xavier <selvin.xavier@avagotech.com>
9997M: Devesh Sharma <devesh.sharma@avagotech.com>
9998M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309999L: linux-rdma@vger.kernel.org
10000W: http://www.emulex.com
10001S: Supported
10002F: drivers/infiniband/hw/ocrdma/
10003
Ben Hutchings8ceee662008-04-27 12:55:59 +010010004SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +000010005M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +000010006M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +000010007L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +010010008S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -070010009F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +010010010
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010011SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -070010012M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010014F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010015
10016SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010017M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010018L: linux-ia64@vger.kernel.org
10019S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010020F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010021F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -070010022F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010023
Jack Steiner75312612008-08-15 00:40:42 -070010024SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -050010025M: Cliff Whickman <cpw@sgi.com>
10026M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -070010027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010028F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -070010029
Antti Palosaari46eacf32014-04-15 06:21:03 -030010030SI2157 MEDIA DRIVER
10031M: Antti Palosaari <crope@iki.fi>
10032L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010033W: https://linuxtv.org
Antti Palosaari46eacf32014-04-15 06:21:03 -030010034W: http://palosaari.fi/linux/
10035Q: http://patchwork.linuxtv.org/project/linux-media/list/
10036T: git git://linuxtv.org/anttip/media_tree.git
10037S: Maintained
10038F: drivers/media/tuners/si2157*
10039
Antti Palosaari75e2d5b2014-04-15 06:17:53 -030010040SI2168 MEDIA DRIVER
10041M: Antti Palosaari <crope@iki.fi>
10042L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010043W: https://linuxtv.org
Antti Palosaari75e2d5b2014-04-15 06:17:53 -030010044W: http://palosaari.fi/linux/
10045Q: http://patchwork.linuxtv.org/project/linux-media/list/
10046T: git git://linuxtv.org/anttip/media_tree.git
10047S: Maintained
10048F: drivers/media/dvb-frontends/si2168*
10049
Hans Verkuil49cc6292012-11-30 07:13:29 -030010050SI470X FM RADIO RECEIVER I2C DRIVER
10051M: Hans Verkuil <hverkuil@xs4all.nl>
10052L: linux-media@vger.kernel.org
10053T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010054W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -030010055S: Odd Fixes
10056F: drivers/media/radio/si470x/radio-si470x-i2c.c
10057
10058SI470X FM RADIO RECEIVER USB DRIVER
10059M: Hans Verkuil <hverkuil@xs4all.nl>
10060L: linux-media@vger.kernel.org
10061T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010062W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -030010063S: Maintained
10064F: drivers/media/radio/si470x/radio-si470x-common.c
10065F: drivers/media/radio/si470x/radio-si470x.h
10066F: drivers/media/radio/si470x/radio-si470x-usb.c
10067
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010068SI4713 FM RADIO TRANSMITTER I2C DRIVER
10069M: Eduardo Valentin <edubezval@gmail.com>
10070L: linux-media@vger.kernel.org
10071T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010072W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010073S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -030010074F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010075
10076SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10077M: Eduardo Valentin <edubezval@gmail.com>
10078L: linux-media@vger.kernel.org
10079T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010080W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010081S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -030010082F: drivers/media/radio/si4713/radio-platform-si4713.c
10083
10084SI4713 FM RADIO TRANSMITTER USB DRIVER
10085M: Hans Verkuil <hverkuil@xs4all.nl>
10086L: linux-media@vger.kernel.org
10087T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010088W: https://linuxtv.org
Dinesh Ram99995de2013-10-15 12:24:43 -030010089S: Maintained
10090F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010091
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010092SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010093M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010094L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010095W: https://linuxtv.org
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010096T: git git://linuxtv.org/media_tree.git
10097S: Odd fixes
10098F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010099F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010100F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -070010101F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010102
Hans de Goede6f15b602014-11-14 13:26:46 +010010103SIMPLEFB FB DRIVER
10104M: Hans de Goede <hdegoede@redhat.com>
10105L: linux-fbdev@vger.kernel.org
10106S: Maintained
Rob Herring2d799dd2015-11-05 13:40:40 -060010107F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
Hans de Goede6f15b602014-11-14 13:26:46 +010010108F: drivers/video/fbdev/simplefb.c
10109F: include/linux/platform_data/simplefb.h
10110
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010111SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010112L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -030010113S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010114F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010115
10116SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010117L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -030010118S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010119F: drivers/media/platform/sh_vou.c
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -020010120F: include/media/drv-intf/sh_vou.h
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010121
Len Brown6349d992009-08-14 15:07:14 -040010122SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -070010123M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -040010124L: sfi-devel@simplefirmware.org
10125W: http://simplefirmware.org/
10126T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010127S: Supported
Joe Perches943fc812011-03-22 16:34:36 -070010128F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -040010129F: drivers/sfi/
10130F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010131
Linus Torvalds1da177e2005-04-16 15:20:36 -070010132SIMTEC EB110ATX (Chalice CATS)
10133P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -080010134P: Vincent Sanders <vince@simtec.co.uk>
10135M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136W: http://www.simtec.co.uk/products/EB110ATX/
10137S: Supported
10138
10139SIMTEC EB2410ITX (BAST)
10140P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -080010141P: Vincent Sanders <vince@simtec.co.uk>
10142M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010143W: http://www.simtec.co.uk/products/EB2410ITX/
10144S: Supported
Joe Perches15dba382013-09-11 14:23:36 -070010145F: arch/arm/mach-s3c24xx/mach-bast.c
10146F: arch/arm/mach-s3c24xx/bast-ide.c
10147F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010148
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010149TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -080010150M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilman3cf2efd2016-02-24 14:57:36 -080010151M: Kevin Hilman <khilman@kernel.org>
Sekhar Noric9f46a82012-01-27 21:12:20 +053010152T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010153Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010154S: Supported
Joe Perches14430812013-09-11 14:23:50 -070010155F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +010010156F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010157
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010158TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010159M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010160L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010161W: https://linuxtv.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010162Q: http://patchwork.linuxtv.org/project/linux-media/list/
10163T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -030010164S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010165F: drivers/media/platform/davinci/
10166F: include/media/davinci/
10167
Benoit Parrot417d2e52014-12-09 16:43:44 -030010168TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010169M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -030010170L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010171W: https://linuxtv.org
Benoit Parrot417d2e52014-12-09 16:43:44 -030010172Q: http://patchwork.linuxtv.org/project/linux-media/list/
10173T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10174S: Maintained
10175F: drivers/media/platform/am437x/
10176
Benoit Parrotc4c02832015-03-20 18:03:52 -030010177OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010178M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -030010179L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010180W: https://linuxtv.org
Benoit Parrotc4c02832015-03-20 18:03:52 -030010181Q: http://patchwork.linuxtv.org/project/linux-media/list/
10182T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10183S: Maintained
10184F: drivers/media/i2c/ov2659.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010185F: include/media/i2c/ov2659.h
Benoit Parrotc4c02832015-03-20 18:03:52 -030010186
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +053010187SILICON MOTION SM712 FRAME BUFFER DRIVER
10188M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10189M: Teddy Wang <teddy.wang@siliconmotion.com>
10190M: Sudip Mukherjee <sudip@vectorindia.org>
10191L: linux-fbdev@vger.kernel.org
10192S: Maintained
10193F: drivers/video/fbdev/sm712*
10194F: Documentation/fb/sm712fb.txt
10195
Francois Romieu92aab3c2005-07-30 13:11:18 +020010196SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010197M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +020010198L: netdev@vger.kernel.org
10199S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010200F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +020010201
Linus Torvalds1da177e2005-04-16 15:20:36 -070010202SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010203M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010204W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -070010205L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010206S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010207F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010208
10209SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010210M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010211W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -030010212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010213F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090010214F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -070010215F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010216
10217SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010218M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219W: http://www.winischhofer.at/linuxsisusbvga.shtml
10220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010221F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222
Christoph Lameter415ad262007-07-26 10:40:56 -070010223SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -070010224M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +020010225M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -070010226M: David Rientjes <rientjes@google.com>
10227M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
10228M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -070010229L: linux-mm@kvack.org
10230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010231F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -070010232F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -070010233
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010234SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +080010235M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010236M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -070010237M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -070010238R: Steven Rostedt <rostedt@goodmis.org>
10239R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +010010240L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010241W: http://www.rdrop.com/users/paulmck/RCU/
10242S: Supported
10243T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -070010244F: include/linux/srcu.h
10245F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010246
Casey Schaufler66372842012-05-23 18:34:52 -070010247SMACK SECURITY MODULE
10248M: Casey Schaufler <casey@schaufler-ca.com>
10249L: linux-security-module@vger.kernel.org
10250W: http://schaufler-ca.com
10251T: git git://git.gitorious.org/smack-next/kernel.git
10252S: Maintained
10253F: Documentation/security/Smack.txt
10254F: security/smack/
10255
Kevin Hilman20651e02014-09-24 16:30:00 -070010256DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010257M: Kevin Hilman <khilman@kernel.org>
10258M: Nishanth Menon <nm@ti.com>
10259S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -070010260F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010261F: include/linux/power/smartreflex.h
10262L: linux-pm@vger.kernel.org
10263
Linus Torvalds1da177e2005-04-16 15:20:36 -070010264SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -040010265M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -040010266S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -070010267F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010268
Sakari Ailuse8e31622012-11-12 18:14:39 -030010269SMIA AND SMIA++ IMAGE SENSOR DRIVER
10270M: Sakari Ailus <sakari.ailus@iki.fi>
10271L: linux-media@vger.kernel.org
10272S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070010273F: drivers/media/i2c/smiapp/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010274F: include/media/i2c/smiapp.h
Sakari Ailuse8e31622012-11-12 18:14:39 -030010275F: drivers/media/i2c/smiapp-pll.c
10276F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -030010277F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -030010278F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -030010279
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010280SMM665 HARDWARE MONITOR DRIVER
10281M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010282L: linux-hwmon@vger.kernel.org
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010283S: Maintained
10284F: Documentation/hwmon/smm665
10285F: drivers/hwmon/smm665.c
10286
Steve Glendinning9df73052010-08-14 21:08:54 +020010287SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010288M: Steve Glendinning <steve.glendinning@shawell.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010289L: linux-hwmon@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010290S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +020010291F: Documentation/hwmon/emc2103
10292F: drivers/hwmon/emc2103.c
10293
Hans de Goedea98d5062011-03-21 17:59:36 +010010294SMSC SCH5627 HARDWARE MONITOR DRIVER
10295M: Hans de Goede <hdegoede@redhat.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010296L: linux-hwmon@vger.kernel.org
Hans de Goedea98d5062011-03-21 17:59:36 +010010297S: Supported
10298F: Documentation/hwmon/sch5627
10299F: drivers/hwmon/sch5627.c
10300
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010301SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070010302M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010303L: linux-hwmon@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010305F: Documentation/hwmon/smsc47b397
10306F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010307
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010308SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010309M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010310L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010312F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -070010313F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010314
Steve Glendinning2cb37722008-12-11 20:54:30 -080010315SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010316M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -080010317L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010318S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -070010319F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -080010320
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010321SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010322M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010323L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010324S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +090010325F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010326
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010327SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010328M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010329L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010330T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +020010331S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030010332F: include/media/soc*
10333F: drivers/media/i2c/soc_camera/
10334F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010335
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010336SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010337M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010339F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010340
Joe Perchese3994db2014-07-30 00:38:42 -030010341SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -030010342M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10343M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10344M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -030010345M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -030010346L: linux-media@vger.kernel.org
10347S: Supported
10348F: drivers/media/pci/solo6x10/
10349
Linus Torvalds1da177e2005-04-16 15:20:36 -070010350SOFTWARE RAID (Multiple Disks) SUPPORT
Shaohua Lic2f662e2016-01-20 14:00:45 -080010351M: Shaohua Li <shli@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010352L: linux-raid@vger.kernel.org
Shaohua Li0f9ce862016-03-07 09:41:09 -080010353T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
NeilBrown524418b2007-01-26 00:57:01 -080010354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010355F: drivers/md/
10356F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010357F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010358
Linus Torvalds1da177e2005-04-16 15:20:36 -070010359SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010360M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -070010361L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010362S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -070010363F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010364
Michael Buesch61e115a2007-09-18 15:12:50 -040010365SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +020010366M: Michael Buesch <m@bues.ch>
Michael Büsche7828b22016-01-18 17:53:03 +010010367L: linux-wireless@vger.kernel.org
Michael Buesch61e115a2007-09-18 15:12:50 -040010368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010369F: drivers/ssb/
10370F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -040010371
Linus Torvalds1da177e2005-04-16 15:20:36 -070010372SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010373M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -050010374L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +010010375W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070010376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010377F: Documentation/laptops/sony-laptop.txt
10378F: drivers/char/sonypi.c
10379F: drivers/platform/x86/sony-laptop.c
10380F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010381
Alex Dubovbaf85322008-02-09 10:20:54 -080010382SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010383M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -080010384W: http://tifmxx.berlios.de/
10385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010386F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -080010387
Maxim Levitsky0ab30492013-09-11 14:26:02 -070010388SONY MEMORYSTICK STANDARD SUPPORT
10389M: Maxim Levitsky <maximlevitsky@gmail.com>
10390S: Maintained
10391F: drivers/memstick/core/ms_block.*
10392
Linus Torvalds1da177e2005-04-16 15:20:36 -070010393SOUND
Joe Perches8b58be82009-07-29 15:04:30 -070010394M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -070010395M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -070010396L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -070010397W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +020010398T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -070010399T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +020010400Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010401S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -070010402F: Documentation/sound/
10403F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010404F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -070010405F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010406
Mark Brown33bbe142013-08-09 18:10:50 +010010407SOUND - COMPRESSED AUDIO
10408M: Vinod Koul <vinod.koul@intel.com>
10409L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10410T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10411S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +053010412F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +010010413F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +053010414F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +010010415F: sound/core/compress_offload.c
10416F: sound/soc/soc-compress.c
10417
Mark Brownbd903bd2008-11-19 19:16:05 +000010418SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +000010419M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010010420M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +000010421T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -070010422L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +010010423W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010424S: Supported
Mark Brown2820f612013-08-11 19:35:11 +010010425F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -070010426F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +010010427F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010428
Mark Brownd7f87612013-10-19 14:33:54 +010010429SOUND - DMAENGINE HELPERS
10430M: Lars-Peter Clausen <lars@metafoo.de>
10431S: Supported
10432F: include/sound/dmaengine_pcm.h
10433F: sound/core/pcm_dmaengine.c
10434F: sound/soc/soc-generic-dmaengine-pcm.c
10435
Olli Salonen990a6a92014-08-22 13:50:42 -030010436SP2 MEDIA DRIVER
10437M: Olli Salonen <olli.salonen@iki.fi>
10438L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010439W: https://linuxtv.org
Olli Salonen990a6a92014-08-22 13:50:42 -030010440Q: http://patchwork.linuxtv.org/project/linux-media/list/
10441S: Maintained
10442F: drivers/media/dvb-frontends/sp2*
10443
Sam Ravnborg473321f2009-01-04 15:47:49 -080010444SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -070010445M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010446L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010447Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -070010448T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10449T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010451F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -070010452F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010453
David S. Miller6404fcc2010-03-16 01:00:17 -070010454SPARC SERIAL DRIVERS
10455M: "David S. Miller" <davem@davemloft.net>
10456L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -070010457T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10458T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -070010459S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -050010460F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010461F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010462F: drivers/tty/serial/sunhv.c
10463F: drivers/tty/serial/sunsab.c
10464F: drivers/tty/serial/sunsab.h
10465F: drivers/tty/serial/sunsu.c
10466F: drivers/tty/serial/sunzilog.c
10467F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -070010468
Christopher Li389325b2012-04-05 14:25:14 -070010469SPARSE CHECKER
10470M: "Christopher Li" <sparse@chrisli.org>
10471L: linux-sparse@vger.kernel.org
10472W: https://sparse.wiki.kernel.org/
10473T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10474T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10475S: Maintained
10476F: include/linux/compiler.h
10477
viresh kumarfc0c1952010-04-01 12:31:21 +010010478SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010479M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -070010480M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010481L: spear-devel@list.st.com
10482L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010483W: http://www.st.com/spear
10484S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -060010485F: arch/arm/boot/dts/spear*
Joe Perches281e1922013-09-11 14:23:37 -070010486F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010487
10488SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010489M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010490L: spear-devel@list.st.com
10491L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010492W: http://www.st.com/spear
10493S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010494F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010495
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010496SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010497M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010498L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010499T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010500Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010502F: Documentation/spi/
10503F: drivers/spi/
10504F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010505F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010506
Jim Lewis2752e402006-09-29 02:01:19 -070010507SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010508M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e402006-09-29 02:01:19 -070010509L: netdev@vger.kernel.org
10510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010511F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010512F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -070010513
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010514SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010515M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010516L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010517W: http://www.ibm.com/developerworks/power/cell/
10518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010519F: Documentation/filesystems/spufs.txt
10520F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010521
Phillip Lougherfc555842009-01-05 08:46:29 +000010522SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010523M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010524L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10525W: http://squashfs.org.uk
Fengguang Wu9f273c22016-01-20 15:03:25 -080010526T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
Phillip Lougherfc555842009-01-05 08:46:29 +000010527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010528F: Documentation/filesystems/squashfs.txt
10529F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010530
Linus Torvalds1da177e2005-04-16 15:20:36 -070010531SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010532M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010534F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010535
Linus Torvalds26e9a392008-10-17 09:50:12 -070010536STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010537M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010538L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010539S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010540F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010541
Linus Torvalds26e9a392008-10-17 09:50:12 -070010542STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010543M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010544T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010545L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010547F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010548
Joe Perchesebd3d012011-07-05 09:42:02 -070010549STAGING - COMEDI
10550M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010551M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010552S: Odd Fixes
10553F: drivers/staging/comedi/
10554
Joe Perchesa0138162011-07-05 15:21:34 -070010555STAGING - FLARION FT1000 DRIVERS
10556M: Marek Belisko <marek.belisko@gmail.com>
10557S: Odd Fixes
10558F: drivers/staging/ft1000/
10559
Joe Perches6c1bb422011-07-05 09:42:07 -070010560STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010561M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010562L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010563S: Odd Fixes
10564F: drivers/staging/iio/
10565
Joe Perchesa0138162011-07-05 15:21:34 -070010566STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10567M: Jarod Wilson <jarod@wilsonet.com>
10568W: http://www.lirc.org/
10569S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010570F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010571
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010572STAGING - LUSTRE PARALLEL FILESYSTEM
10573M: Oleg Drokin <oleg.drokin@intel.com>
10574M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010575L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10576W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010577S: Maintained
10578F: drivers/staging/lustre
10579
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010580STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10581M: Marc Dietrich <marvin24@gmx.de>
10582L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010583L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010584S: Maintained
10585F: drivers/staging/nvec/
10586
Joe Perchesa0138162011-07-05 15:21:34 -070010587STAGING - REALTEK RTL8712U DRIVERS
10588M: Larry Finger <Larry.Finger@lwfinger.net>
10589M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10590S: Odd Fixes
10591F: drivers/staging/rtl8712/
10592
Jes Sorensen7591ba82014-04-26 18:54:48 +020010593STAGING - REALTEK RTL8723U WIRELESS DRIVER
10594M: Larry Finger <Larry.Finger@lwfinger.net>
10595M: Jes Sorensen <Jes.Sorensen@redhat.com>
10596L: linux-wireless@vger.kernel.org
10597S: Maintained
10598F: drivers/staging/rtl8723au/
10599
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010600STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10601M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10602M: Teddy Wang <teddy.wang@siliconmotion.com>
10603M: Sudip Mukherjee <sudip@vectorindia.org>
10604L: linux-fbdev@vger.kernel.org
10605S: Maintained
10606F: drivers/staging/sm750fb/
10607
Joe Perches510fa4082014-02-10 16:37:56 -080010608STAGING - SLICOSS
10609M: Lior Dotan <liodot@gmail.com>
10610M: Christopher Harrer <charrer@alacritech.com>
10611S: Odd Fixes
10612F: drivers/staging/slicoss/
10613
Joe Perchesa0138162011-07-05 15:21:34 -070010614STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10615M: William Hubbs <w.d.hubbs@gmail.com>
10616M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010617M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010618M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010619L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010620W: http://www.linux-speakup.org/
10621S: Odd Fixes
10622F: drivers/staging/speakup/
10623
Joe Perchesb3e871c2011-07-05 09:42:10 -070010624STAGING - VIA VT665X DRIVERS
10625M: Forest Bond <forest@alittletooquiet.net>
10626S: Odd Fixes
10627F: drivers/staging/vt665?/
10628
Johnny Kima30baec2015-05-11 14:30:57 +090010629STAGING - WILC1000 WIFI DRIVER
10630M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010631M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010632M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010633M: Tony Cho <tony.cho@atmel.com>
10634M: Glen Lee <glen.lee@atmel.com>
10635M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010636L: linux-wireless@vger.kernel.org
10637S: Supported
10638F: drivers/staging/wilc1000/
10639
Joe Perches709bcb02011-07-05 09:42:13 -070010640STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010641M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010642S: Odd Fixes
10643F: drivers/staging/xgifb/
10644
Mike Marciniszyn77241052015-07-30 15:17:43 -040010645HFI1 DRIVER
10646M: Mike Marciniszyn <infinipath@intel.com>
10647L: linux-rdma@vger.kernel.org
10648S: Supported
10649F: drivers/staging/rdma/hfi1
10650
Linus Torvalds1da177e2005-04-16 15:20:36 -070010651STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010652M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010653S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010654F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010655
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010656SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010657M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010658W: http://sammy.net/sun3/
10659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010660F: arch/m68k/kernel/*sun3*
10661F: arch/m68k/sun3*/
10662F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010663F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010664
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010665SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10666M: Hans de Goede <hdegoede@redhat.com>
10667L: linux-input@vger.kernel.org
10668S: Maintained
10669F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10670F: drivers/input/keyboard/sun4i-lradc-keys.c
10671
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010672SUNDANCE NETWORK DRIVER
10673M: Denis Kirjanov <kda@linux-powerpc.org>
10674L: netdev@vger.kernel.org
10675S: Maintained
10676F: drivers/net/ethernet/dlink/sundance.c
10677
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010678SUPERH
Rich Felker114bf372016-01-22 15:11:05 -080010679M: Yoshinori Sato <ysato@users.sourceforge.jp>
10680M: Rich Felker <dalias@libc.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010681L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010682Q: http://patchwork.kernel.org/project/linux-sh/list/
Rich Felker114bf372016-01-22 15:11:05 -080010683S: Maintained
Paul Mundt066069e2009-04-14 06:32:08 +090010684F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010685F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010686F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010687
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010688SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010689M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010690M: Len Brown <len.brown@intel.com>
10691M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010692L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010693S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010694F: Documentation/power/
10695F: arch/x86/kernel/acpi/
10696F: drivers/base/power/
10697F: kernel/power/
10698F: include/linux/suspend.h
10699F: include/linux/freezer.h
10700F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010701
10702SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010703M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010704L: linux-video@atrey.karlin.mff.cuni.cz
10705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010706F: Documentation/svga.txt
10707F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010708
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010709SWIOTLB SUBSYSTEM
10710M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10711L: linux-kernel@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010712T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010713S: Supported
10714F: lib/swiotlb.c
10715F: arch/*/kernel/pci-swiotlb.c
10716F: include/linux/swiotlb.h
10717
Jiri Pirko007f7902014-11-28 14:34:17 +010010718SWITCHDEV
10719M: Jiri Pirko <jiri@resnulli.us>
10720L: netdev@vger.kernel.org
10721S: Supported
10722F: net/switchdev/
10723F: include/net/switchdev.h
10724
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010725SYNOPSYS ARC ARCHITECTURE
10726M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta30b9dbe2015-11-14 12:58:53 +053010727L: linux-snps-arc@lists.infradead.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010728S: Supported
10729F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010730F: Documentation/devicetree/bindings/arc/*
Rob Herring2d799dd2015-11-05 13:40:40 -060010731F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010732F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010733T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010734
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010735SYNOPSYS ARC SDP platform support
10736M: Alexey Brodkin <abrodkin@synopsys.com>
10737S: Supported
10738F: arch/arc/plat-axs10x
10739F: arch/arc/boot/dts/ax*
10740F: Documentation/devicetree/bindings/arc/axs10*
10741
Lee Jones6c284c92015-05-12 14:13:58 +010010742SYSTEM CONFIGURATION (SYSCON)
10743M: Lee Jones <lee.jones@linaro.org>
10744M: Arnd Bergmann <arnd@arndb.de>
10745T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10746S: Supported
10747F: drivers/mfd/syscon.c
10748
Linus Torvalds1da177e2005-04-16 15:20:36 -070010749SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010750M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010752F: Documentation/filesystems/sysv-fs.txt
10753F: fs/sysv/
10754F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010755
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010756TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010757M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010758L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010759L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010760W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010761W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010762T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010763S: Supported
10764F: drivers/target/
10765F: include/target/
10766F: Documentation/target/
10767
Alan Cox4e688522008-04-30 00:52:11 -070010768TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010769M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010771F: Documentation/accounting/taskstats*
10772F: include/linux/taskstats*
10773F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010774
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010775TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010776M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010777L: netdev@vger.kernel.org
10778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010779F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010780F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010781F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010782
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010783TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010784M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10785M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010786W: http://tcp-lp-mod.sourceforge.net/
10787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010788F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010789
Antti Palosaari91952bc2012-10-01 12:28:46 -030010790TDA10071 MEDIA DRIVER
10791M: Antti Palosaari <crope@iki.fi>
10792L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010793W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010794W: http://palosaari.fi/linux/
10795Q: http://patchwork.linuxtv.org/project/linux-media/list/
10796T: git git://linuxtv.org/anttip/media_tree.git
10797S: Maintained
10798F: drivers/media/dvb-frontends/tda10071*
10799
10800TDA18212 MEDIA DRIVER
10801M: Antti Palosaari <crope@iki.fi>
10802L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010803W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010804W: http://palosaari.fi/linux/
10805Q: http://patchwork.linuxtv.org/project/linux-media/list/
10806T: git git://linuxtv.org/anttip/media_tree.git
10807S: Maintained
10808F: drivers/media/tuners/tda18212*
10809
10810TDA18218 MEDIA DRIVER
10811M: Antti Palosaari <crope@iki.fi>
10812L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010813W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010814W: http://palosaari.fi/linux/
10815Q: http://patchwork.linuxtv.org/project/linux-media/list/
10816T: git git://linuxtv.org/anttip/media_tree.git
10817S: Maintained
10818F: drivers/media/tuners/tda18218*
10819
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010820TDA18271 MEDIA DRIVER
10821M: Michael Krufky <mkrufky@linuxtv.org>
10822L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010823W: https://linuxtv.org
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010824W: http://github.com/mkrufky
10825Q: http://patchwork.linuxtv.org/project/linux-media/list/
10826T: git git://linuxtv.org/mkrufky/tuners.git
10827S: Maintained
10828F: drivers/media/tuners/tda18271*
10829
Michael Krufkye48307a2012-10-02 00:56:33 -030010830TDA827x MEDIA DRIVER
10831M: Michael Krufky <mkrufky@linuxtv.org>
10832L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010833W: https://linuxtv.org
Michael Krufkye48307a2012-10-02 00:56:33 -030010834W: http://github.com/mkrufky
10835Q: http://patchwork.linuxtv.org/project/linux-media/list/
10836T: git git://linuxtv.org/mkrufky/tuners.git
10837S: Maintained
10838F: drivers/media/tuners/tda8290.*
10839
Michael Krufky66cf9212012-10-02 00:56:28 -030010840TDA8290 MEDIA DRIVER
10841M: Michael Krufky <mkrufky@linuxtv.org>
10842L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010843W: https://linuxtv.org
Michael Krufky66cf9212012-10-02 00:56:28 -030010844W: http://github.com/mkrufky
10845Q: http://patchwork.linuxtv.org/project/linux-media/list/
10846T: git git://linuxtv.org/mkrufky/tuners.git
10847S: Maintained
10848F: drivers/media/tuners/tda8290.*
10849
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010850TDA9840 MEDIA DRIVER
10851M: Hans Verkuil <hverkuil@xs4all.nl>
10852L: linux-media@vger.kernel.org
10853T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010854W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010855S: Maintained
10856F: drivers/media/i2c/tda9840*
10857
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010858TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010859M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010860L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010861W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010862T: git git://linuxtv.org/media_tree.git
10863S: Odd fixes
10864F: drivers/media/tuners/tea5761.*
10865
10866TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010867M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010868L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010869W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010870T: git git://linuxtv.org/media_tree.git
10871S: Maintained
10872F: drivers/media/tuners/tea5767.*
10873
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010874TEA6415C MEDIA DRIVER
10875M: Hans Verkuil <hverkuil@xs4all.nl>
10876L: linux-media@vger.kernel.org
10877T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010878W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010879S: Maintained
10880F: drivers/media/i2c/tea6415c*
10881
10882TEA6420 MEDIA DRIVER
10883M: Hans Verkuil <hverkuil@xs4all.nl>
10884L: linux-media@vger.kernel.org
10885T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010886W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010887S: Maintained
10888F: drivers/media/i2c/tea6420*
10889
Jiri Pirko3d249d42011-11-11 22:16:48 +000010890TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010891M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010892L: netdev@vger.kernel.org
10893S: Supported
10894F: drivers/net/team/
10895F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010896F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010897
Vivien Didelot7d029122013-01-04 16:18:14 -050010898TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010899M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010900S: Maintained
10901F: arch/x86/platform/ts5500/
10902
Sean Young40ad4a32012-11-19 10:32:53 -030010903TECHNOTREND USB IR RECEIVER
10904M: Sean Young <sean@mess.org>
10905L: linux-media@vger.kernel.org
10906S: Maintained
10907F: drivers/media/rc/ttusbir.c
10908
Stephen Warrenadabdb02013-09-13 13:00:57 -060010909TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010910M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010911M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010912M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010913L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010914Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010915T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010916S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010917N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010918
Stephen Warrenadabdb02013-09-13 13:00:57 -060010919TEGRA CLOCK DRIVER
10920M: Peter De Schrijver <pdeschrijver@nvidia.com>
10921M: Prashant Gaikwad <pgaikwad@nvidia.com>
10922S: Supported
10923F: drivers/clk/tegra/
10924
10925TEGRA DMA DRIVER
10926M: Laxman Dewangan <ldewangan@nvidia.com>
10927S: Supported
10928F: drivers/dma/tegra20-apb-dma.c
10929
Stephen Warrenadabdb02013-09-13 13:00:57 -060010930TEGRA I2C DRIVER
10931M: Laxman Dewangan <ldewangan@nvidia.com>
10932S: Supported
10933F: drivers/i2c/busses/i2c-tegra.c
10934
10935TEGRA IOMMU DRIVERS
10936M: Hiroshi Doyu <hdoyu@nvidia.com>
10937S: Supported
10938F: drivers/iommu/tegra*
10939
10940TEGRA KBC DRIVER
10941M: Rakesh Iyer <riyer@nvidia.com>
10942M: Laxman Dewangan <ldewangan@nvidia.com>
10943S: Supported
10944F: drivers/input/keyboard/tegra-kbc.c
10945
Stephen Warrenadabdb02013-09-13 13:00:57 -060010946TEGRA PWM DRIVER
10947M: Thierry Reding <thierry.reding@gmail.com>
10948S: Supported
10949F: drivers/pwm/pwm-tegra.c
10950
10951TEGRA SERIAL DRIVER
10952M: Laxman Dewangan <ldewangan@nvidia.com>
10953S: Supported
10954F: drivers/tty/serial/serial-tegra.c
10955
10956TEGRA SPI DRIVER
10957M: Laxman Dewangan <ldewangan@nvidia.com>
10958S: Supported
10959F: drivers/spi/spi-tegra*
10960
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010961TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010962M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010963L: netdev@vger.kernel.org
10964S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010965F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010966
Alan Cox4e688522008-04-30 00:52:11 -070010967Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010968M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010969S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010970F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010971
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010972TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010973M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010974M: Max Filippov <jcmvbkbc@gmail.com>
10975L: linux-xtensa@linux-xtensa.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010976T: git git://github.com/czankel/xtensa-linux.git
Alan Cox4e688522008-04-30 00:52:11 -070010977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010978F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010979F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010980
Hans Verkuil5313ba62013-12-13 09:00:38 -030010981THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10982M: Hans Verkuil <hverkuil@xs4all.nl>
10983L: linux-media@vger.kernel.org
10984T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010985W: https://linuxtv.org
Hans Verkuil5313ba62013-12-13 09:00:38 -030010986S: Maintained
10987F: drivers/media/radio/radio-raremono.c
10988
Zhang Ruid3fb6952012-11-15 08:58:27 +080010989THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010990M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010991M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010992L: linux-pm@vger.kernel.org
10993T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10994T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10995Q: https://patchwork.kernel.org/project/linux-pm/list/
10996S: Supported
10997F: drivers/thermal/
10998F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010999F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080011000F: include/linux/cpu_cooling.h
11001F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080011002
Viresh Kumar64e05d82015-08-27 07:32:11 +053011003THERMAL/CPU_COOLING
11004M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
11005M: Viresh Kumar <viresh.kumar@linaro.org>
11006M: Javi Merino <javi.merino@arm.com>
11007L: linux-pm@vger.kernel.org
11008S: Supported
11009F: Documentation/thermal/cpu-cooling-api.txt
11010F: drivers/thermal/cpu_cooling.c
11011F: include/linux/cpu_cooling.h
11012
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050011013THINGM BLINK(1) USB RGB LED DRIVER
11014M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11015S: Maintained
11016F: drivers/hid/hid-thingm.c
11017
Alan Cox4e688522008-04-30 00:52:11 -070011018THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011019M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070011020L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -050011021L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011022W: http://ibm-acpi.sourceforge.net
11023W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070011024T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070011025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011026F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070011027
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011028TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010011029M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011030L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060011031L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040011032S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000011033F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011034
Benoit Parrotccf963d2016-01-06 21:37:25 -020011035TI VPE/CAL DRIVERS
11036M: Benoit Parrot <bparrot@ti.com>
11037L: linux-media@vger.kernel.org
11038W: http://linuxtv.org/
11039Q: http://patchwork.linuxtv.org/project/linux-media/list/
11040S: Maintained
11041F: drivers/media/platform/ti-vpe/
11042
Max Filippov0c7665c2015-01-12 10:20:46 +030011043TI CDCE706 CLOCK DRIVER
11044M: Max Filippov <jcmvbkbc@gmail.com>
11045S: Maintained
11046F: drivers/clk/clk-cdce706.c
11047
Tero Kristo49b6a5e2014-07-02 17:03:50 +030011048TI CLOCK DRIVER
11049M: Tero Kristo <t-kristo@ti.com>
11050L: linux-omap@vger.kernel.org
11051S: Maintained
11052F: drivers/clk/ti/
11053F: include/linux/clk/ti.h
11054
Alex Dubov4020f2d2006-10-04 02:15:37 -070011055TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011056M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011058F: drivers/misc/tifm*
11059F: drivers/mmc/host/tifm_sd.c
11060F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070011061
Santosh Shilimkare0c52402014-07-10 11:30:08 -040011062TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040011063M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040011064L: linux-kernel@vger.kernel.org
11065L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11066S: Maintained
11067F: drivers/soc/ti/*
11068T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11069
11070
M R Swami Reddy152ad442012-04-02 20:02:31 +053011071TI LM49xxx FAMILY ASoC CODEC DRIVERS
11072M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053011073M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053011074L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11075S: Maintained
11076F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053011077F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053011078
Kim, Milo0edd8072012-12-17 16:01:17 -080011079TI LP855x BACKLIGHT DRIVER
11080M: Milo Kim <milo.kim@ti.com>
11081S: Maintained
11082F: Documentation/backlight/lp855x-driver.txt
11083F: drivers/video/backlight/lp855x_bl.c
11084F: include/linux/platform_data/lp855x.h
11085
Kim, Milofaf13f62012-12-10 05:27:03 +000011086TI LP8727 CHARGER DRIVER
11087M: Milo Kim <milo.kim@ti.com>
11088S: Maintained
11089F: drivers/power/lp8727_charger.c
11090F: include/linux/platform_data/lp8727.h
11091
Kim, Milo22f12292012-12-10 05:27:55 +000011092TI LP8788 MFD DRIVER
11093M: Milo Kim <milo.kim@ti.com>
11094S: Maintained
11095F: drivers/iio/adc/lp8788_adc.c
11096F: drivers/leds/leds-lp8788.c
11097F: drivers/mfd/lp8788*.c
11098F: drivers/power/lp8788-charger.c
11099F: drivers/regulator/lp8788-*.c
11100F: include/linux/mfd/lp8788*.h
11101
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050011102TI NETCP ETHERNET DRIVER
11103M: Wingman Kwok <w-kwok2@ti.com>
11104M: Murali Karicheri <m-karicheri2@ti.com>
11105L: netdev@vger.kernel.org
11106S: Maintained
11107F: drivers/net/ethernet/ti/netcp*
11108
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070011109TI TAS571X FAMILY ASoC CODEC DRIVER
11110M: Kevin Cernekee <cernekee@chromium.org>
11111L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11112S: Odd Fixes
11113F: sound/soc/codecs/tas571x*
11114
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030011115TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030011116M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030011117L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11118S: Maintained
11119F: sound/soc/codecs/twl4030*
11120
Luciano Coelho90921012011-11-20 21:40:41 +020011121TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020011122L: linux-wireless@vger.kernel.org
11123W: http://wireless.kernel.org/en/users/Drivers/wl12xx
11124W: http://wireless.kernel.org/en/users/Drivers/wl1251
11125T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020011126S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020011127F: drivers/net/wireless/ti/
11128F: include/linux/wl12xx.h
11129
Per Lidene86eaa32006-01-12 16:45:18 +010011130TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070011131M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040011132M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050011133L: netdev@vger.kernel.org (core kernel code)
11134L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010011135W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010011136S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011137F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070011138F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010011139
Chris Metcalf867e3592010-05-28 23:09:12 -040011140TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050011141M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050011142W: http://www.ezchip.com/scm/
Fengguang Wu7fa129c2015-12-18 10:15:37 -050011143T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
Chris Metcalf867e3592010-05-28 23:09:12 -040011144S: Supported
11145F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040011146F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050011147F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040011148F: drivers/net/ethernet/tile/
11149F: drivers/rtc/rtc-tile.c
11150F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040011151F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040011152F: drivers/usb/host/*-tilegx.c
11153F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040011154
Linus Torvalds1da177e2005-04-16 15:20:36 -070011155TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011156M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080011157L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011158W: http://sourceforge.net/projects/tlan/
11159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011160F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070011161F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011162
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011163TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070011164M: Kentaro Takeda <takedakn@nttdata.co.jp>
11165M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090011166L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11167L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011168L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11169L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11170W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090011171T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011173F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011174
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030011175TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030011176M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050011177L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030011178S: Maintained
11179F: drivers/platform/x86/topstar-laptop.c
11180
Linus Torvalds1da177e2005-04-16 15:20:36 -070011181TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070011182M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -050011183L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070011184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011185F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011186
Azael Avalos0a63ca12015-03-06 18:14:42 -070011187TOSHIBA BLUETOOTH DRIVER
11188M: Azael Avalos <coproscefalo@gmail.com>
11189L: platform-driver-x86@vger.kernel.org
11190S: Maintained
11191F: drivers/platform/x86/toshiba_bluetooth.c
11192
11193TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11194M: Azael Avalos <coproscefalo@gmail.com>
11195L: platform-driver-x86@vger.kernel.org
11196S: Maintained
11197F: drivers/platform/x86/toshiba_haps.c
11198
Azael Avalos14991fc2015-09-28 20:32:28 -060011199TOSHIBA WMI HOTKEYS DRIVER
11200M: Azael Avalos <coproscefalo@gmail.com>
11201L: platform-driver-x86@vger.kernel.org
11202S: Maintained
11203F: drivers/platform/x86/toshiba-wmi.c
11204
Linus Torvalds1da177e2005-04-16 15:20:36 -070011205TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011206M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011207W: http://www.buzzard.org.uk/toshiba/
11208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011209F: drivers/char/toshiba.c
11210F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011211F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011212
Mats Randgaardd32d9862015-07-09 05:45:47 -030011213TOSHIBA TC358743 DRIVER
11214M: Mats Randgaard <matrandg@cisco.com>
11215L: linux-media@vger.kernel.org
11216S: Maintained
11217F: drivers/media/i2c/tc358743*
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020011218F: include/media/i2c/tc358743.h
Mats Randgaardd32d9862015-07-09 05:45:47 -030011219
Pierre Ossmand719f902009-03-24 21:06:09 +010011220TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010011221M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011222L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010011223S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011224F: drivers/mmc/host/tmio_mmc*
11225F: drivers/mmc/host/sh_mobile_sdhi.c
11226F: include/linux/mmc/tmio.h
11227F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010011228
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011229TMP401 HARDWARE MONITOR DRIVER
11230M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070011231L: linux-hwmon@vger.kernel.org
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011232S: Maintained
11233F: Documentation/hwmon/tmp401
11234F: drivers/hwmon/tmp401.c
11235
Hugh Dickins98f32602009-05-21 20:33:58 +010011236TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070011237M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010011238L: linux-mm@kvack.org
11239S: Maintained
11240F: include/linux/shmem_fs.h
11241F: mm/shmem.c
11242
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011243TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011244M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011245L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011246W: https://linuxtv.org
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011247T: git git://linuxtv.org/media_tree.git
11248S: Odd fixes
11249F: drivers/media/usb/tm6000/
11250
Hans Verkuilc65fde12014-08-10 05:16:39 -030011251TW68 VIDEO4LINUX DRIVER
11252M: Hans Verkuil <hverkuil@xs4all.nl>
11253L: linux-media@vger.kernel.org
11254T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011255W: https://linuxtv.org
Hans Verkuilc65fde12014-08-10 05:16:39 -030011256S: Odd Fixes
11257F: drivers/media/pci/tw68/
11258
Alan Cox4e688522008-04-30 00:52:11 -070011259TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020011260M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030011261M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030011262M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010011263R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010011264W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070011265L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Jarkko Sakkinend9912842016-03-01 08:48:41 +020011266Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
11267T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
Alan Cox4e688522008-04-30 00:52:11 -070011268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011269F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070011270
Ashley Lai1a0f1b22014-12-04 21:01:51 -060011271TPM IBM_VTPM DEVICE DRIVER
11272M: Ashley Lai <ashleydlai@gmail.com>
11273W: http://tpmdd.sourceforge.net
11274L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11275S: Maintained
11276F: drivers/char/tpm/tpm_ibmvtpm*
11277
Joe Perchesd6f005a2009-10-26 16:49:40 -070011278TRACING
11279M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070011280M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011281T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070011282S: Maintained
11283F: Documentation/trace/ftrace.txt
11284F: arch/*/*/*/ftrace.h
11285F: arch/*/kernel/ftrace.c
11286F: include/*/ftrace.h
11287F: include/linux/trace*.h
11288F: include/trace/
11289F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000011290F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070011291
Linus Torvalds1da177e2005-04-16 15:20:36 -070011292TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070011293M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070011294T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011295S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020011296K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070011297
Alan Cox4e688522008-04-30 00:52:11 -070011298TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080011299M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070011300M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080011301S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070011302T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030011303F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020011304F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011305F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010011306F: include/linux/serial_core.h
11307F: include/linux/serial.h
11308F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011309F: include/uapi/linux/serial_core.h
11310F: include/uapi/linux/serial.h
11311F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070011312
Antti Palosaari91952bc2012-10-01 12:28:46 -030011313TUA9001 MEDIA DRIVER
11314M: Antti Palosaari <crope@iki.fi>
11315L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011316W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030011317W: http://palosaari.fi/linux/
11318Q: http://patchwork.linuxtv.org/project/linux-media/list/
11319T: git git://linuxtv.org/anttip/media_tree.git
11320S: Maintained
11321F: drivers/media/tuners/tua9001*
11322
Grant Grundler740db6d2008-02-17 11:53:49 -070011323TULIP NETWORK DRIVERS
Grant Grundler740db6d2008-02-17 11:53:49 -070011324L: netdev@vger.kernel.org
Grant Grundlercf869eb2015-11-19 17:56:12 -080011325L: linux-parisc@vger.kernel.org
11326S: Orphan
Joe Perches0f04e2a2012-01-10 15:08:56 -080011327F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011328
11329TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000011330M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011331W: http://vtun.sourceforge.net/tun
11332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011333F: Documentation/networking/tuntap.txt
11334F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011335
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011336TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011337M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020011338M: Ralf Baechle <ralf@linux-mips.org>
11339L: linux-mips@linux-mips.org
11340Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011342F: drivers/tc/
11343F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011344
Linus Torvalds1da177e2005-04-16 15:20:36 -070011345U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011346M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011347L: linux-scsi@vger.kernel.org
11348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011349F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011351UBI FILE SYSTEM (UBIFS)
Richard Weinbergera7859932016-03-03 14:22:14 +010011352M: Richard Weinberger <richard@nod.at>
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011353M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030011354M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011355L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030011356T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011357W: http://www.linux-mtd.infradead.org/doc/ubifs.html
Richard Weinbergera7859932016-03-03 14:22:14 +010011358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011359F: Documentation/filesystems/ubifs.txt
11360F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011361
Greg Ungerere1632fa2015-06-19 10:40:03 +100011362UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070011363M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010011364W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100011365L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010011366L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100011367T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010011368S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100011369F: arch/m68k/coldfire/
11370F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070011371F: arch/m68k/*/*_no.*
11372F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010011373
Linus Torvalds1da177e2005-04-16 15:20:36 -070011374UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070011375M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011377F: Documentation/filesystems/udf.txt
11378F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011379
Alan Coxcc2020e2008-05-19 14:21:51 +010011380UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011381M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010011382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011383F: Documentation/filesystems/ufs.txt
11384F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010011385
David Herrmann0a09d3a2012-06-10 15:16:28 +020011386UHID USERSPACE HID IO DRIVER:
11387M: David Herrmann <dh.herrmann@googlemail.com>
11388L: linux-input@vger.kernel.org
11389S: Maintained
11390F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011391F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020011392
David Vrabel18332a82008-09-17 16:34:44 +010011393ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010011394L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010011395S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000011396F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070011397F: include/linux/uwb.h
11398F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010011399
GuanXuetaob31d8272011-01-16 00:35:49 +080011400UNICORE32 ARCHITECTURE:
11401M: Guan Xuetao <gxt@mprc.pku.edu.cn>
11402W: http://mprc.pku.edu.cn/~guanxuetao/linux
11403S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080011404T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080011405F: arch/unicore32/
11406
Tony Finchd8379ab2009-11-27 15:50:30 +000011407UNIFDEF
11408M: Tony Finch <dot@dotat.at>
11409W: http://dotat.at/prog/unifdef
11410S: Maintained
11411F: scripts/unifdef.c
11412
Linus Torvalds1da177e2005-04-16 15:20:36 -070011413UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011414M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011415W: http://www.kernel.dk
11416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011417F: Documentation/cdrom/
11418F: drivers/cdrom/cdrom.c
11419F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011420F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011421
Benjamin Romer56df0122014-03-07 13:02:21 -060011422UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070011423M: David Kershner <david.kershner@unisys.com>
11424L: sparmaintainer@unisys.com (Unisys internal)
11425S: Supported
11426F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060011427
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011428UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11429M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011430L: linux-scsi@vger.kernel.org
11431S: Supported
11432F: Documentation/scsi/ufs.txt
11433F: drivers/scsi/ufs/
11434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011435UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011436M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010011437M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011438W: http://www.linux-mtd.infradead.org/
11439L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020011440T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010011441S: Supported
Joe Perches80811492009-04-08 20:20:27 -070011442F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070011443F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011444F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011445
Linus Torvalds1da177e2005-04-16 15:20:36 -070011446USB ACM DRIVER
Oliver Neukumca1c3e62016-02-08 18:30:34 +010011447M: Oliver Neukum <oneukum@suse.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070011448L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011450F: Documentation/usb/acm.txt
11451F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011452
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020011453USB AR5523 WIRELESS DRIVER
11454M: Pontus Fuchs <pontus.fuchs@gmail.com>
11455L: linux-wireless@vger.kernel.org
11456S: Maintained
11457F: drivers/net/wireless/ath/ar5523/
11458
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011459USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000011460M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011461M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011462L: linux-usb@vger.kernel.org
11463L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011464S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011465F: drivers/usb/storage/uas.c
11466
Linus Torvalds1da177e2005-04-16 15:20:36 -070011467USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011468M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011471F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011472F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011473
Keith Packard66e3e592015-03-19 20:36:49 -070011474USB CHAOSKEY DRIVER
11475M: Keith Packard <keithp@keithp.com>
11476L: linux-usb@vger.kernel.org
11477S: Maintained
11478F: drivers/usb/misc/chaoskey.c
11479
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011480USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011481M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011482L: linux-usb@vger.kernel.org
11483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011484F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011485
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011486USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011487M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011488L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011489W: http://www.linux-usb.org/usbnet
11490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011491F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011492
Alan Coxcc2020e2008-05-19 14:21:51 +010011493USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011494M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011495L: rio500-users@lists.sourceforge.net
11496W: http://rio500.sourceforge.net
11497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011498F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011499
Linus Torvalds1da177e2005-04-16 15:20:36 -070011500USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011501M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011502L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011504F: Documentation/usb/ehci.txt
11505F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011506
David Brownell69ae9e32006-11-14 02:03:31 -080011507USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbia55f6282016-02-03 20:23:01 +020011508M: Felipe Balbi <balbi@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011509L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011510W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030011511T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011513F: drivers/usb/gadget/
11514F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011515
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011516USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011517M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +010011518R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011519L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011520T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011521S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011522F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011523F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011524
Olav Kongas959eea22005-11-03 17:38:14 +020011525USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011526M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011527L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011529F: drivers/usb/host/isp116x*
11530F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011531
Woojung.Huh@microchip.com146498e2016-02-25 23:33:16 +000011532USB LAN78XX ETHERNET DRIVER
11533M: Woojung Huh <woojung.huh@microchip.com>
11534M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11535L: netdev@vger.kernel.org
11536S: Maintained
11537F: drivers/net/usb/lan78xx.*
11538
Linus Torvalds1da177e2005-04-16 15:20:36 -070011539USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011540M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011541L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011542L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011543S: Maintained
11544W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011545F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011546
Clemens Ladischaf399172011-01-10 16:32:54 +010011547USB MIDI DRIVER
11548M: Clemens Ladisch <clemens@ladisch.de>
11549L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11550T: git git://git.alsa-project.org/alsa-kernel.git
11551S: Maintained
11552F: sound/usb/midi.*
11553
Joe Perches444ce9d2013-08-01 21:03:32 -070011554USB NETWORKING DRIVERS
11555L: linux-usb@vger.kernel.org
11556S: Odd Fixes
11557F: drivers/net/usb/
11558
Linus Torvalds1da177e2005-04-16 15:20:36 -070011559USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011560M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011561L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011563F: Documentation/usb/ohci.txt
11564F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011565
Peter Chen963ffa32015-02-15 12:22:59 +080011566USB OTG FSM (Finite State Machine)
Peter Chen60d77b3d2015-12-25 15:54:32 +080011567M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +080011568T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011569L: linux-usb@vger.kernel.org
11570S: Maintained
11571F: drivers/usb/common/usb-otg-fsm.c
11572
Valentina Manea563da3a2014-08-20 07:31:02 +030011573USB OVER IP DRIVER
11574M: Valentina Manea <valentina.manea.m@gmail.com>
11575M: Shuah Khan <shuah.kh@samsung.com>
11576L: linux-usb@vger.kernel.org
11577S: Maintained
Christian Lampartera6d6fc22016-02-24 19:30:35 +010011578F: Documentation/usb/usbip_protocol.txt
Valentina Manea563da3a2014-08-20 07:31:02 +030011579F: drivers/usb/usbip/
11580F: tools/usb/usbip/
11581
Linus Torvalds1da177e2005-04-16 15:20:36 -070011582USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011583M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011584L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011585L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011586T: git git://github.com/petkan/pegasus.git
11587W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011589F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011590
Felipe Balbid3ad5582012-05-21 16:24:49 +030011591USB PHY LAYER
Felipe Balbia55f6282016-02-03 20:23:01 +020011592M: Felipe Balbi <balbi@kernel.org>
Felipe Balbid3ad5582012-05-21 16:24:49 +030011593L: linux-usb@vger.kernel.org
11594T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11595S: Maintained
11596F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011597
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011598USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011599M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011600L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011601S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011602F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011603
Bjørn Mork4521b472015-12-03 19:24:23 +010011604USB QMI WWAN NETWORK DRIVER
11605M: Bjørn Mork <bjorn@mork.no>
11606L: netdev@vger.kernel.org
11607S: Maintained
11608F: Documentation/ABI/testing/sysfs-class-net-qmi
11609F: drivers/net/usb/qmi_wwan.c
11610
Linus Torvalds1da177e2005-04-16 15:20:36 -070011611USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011612M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011613L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011614L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011615T: git git://github.com/petkan/rtl8150.git
11616W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011618F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011619
Greg KHf896b792013-10-30 11:07:31 -070011620USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011621M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011622L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011624F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011625F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011626F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011627
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011628USB SMSC75XX ETHERNET DRIVER
11629M: Steve Glendinning <steve.glendinning@shawell.net>
11630L: netdev@vger.kernel.org
11631S: Maintained
11632F: drivers/net/usb/smsc75xx.*
11633
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011634USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011635M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011636L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011638F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011639
Linus Torvalds1da177e2005-04-16 15:20:36 -070011640USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011641M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011642L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011643W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011644T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011646F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011647F: drivers/usb/
11648F: include/linux/usb.h
11649F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011650
11651USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011652M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011653L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011655F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011656
David Brownell69ae9e32006-11-14 02:03:31 -080011657USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011658M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011659L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011660W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011662F: drivers/net/usb/usbnet.c
11663F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011664
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011665USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011666M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011667L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011668L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011669T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011670W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011671S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011672F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011673F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011674
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011675USB VISION DRIVER
11676M: Hans Verkuil <hverkuil@xs4all.nl>
11677L: linux-media@vger.kernel.org
11678T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011679W: https://linuxtv.org
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011680S: Odd Fixes
11681F: drivers/media/usb/usbvision/
11682
Laurent Pinchart8282da42012-10-04 02:32:42 +020011683USB WEBCAM GADGET
11684M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11685L: linux-usb@vger.kernel.org
11686S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011687F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011688F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011689
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011690USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011691M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011692L: linux-wireless@vger.kernel.org
11693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011694F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011695
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011696USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011697M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011698L: linux-usb@vger.kernel.org
11699S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011700F: drivers/usb/host/xhci*
11701F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011702
Linus Torvalds1da177e2005-04-16 15:20:36 -070011703USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011704L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011705W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011706S: Orphan
Kalle Valoed0ad062015-11-18 07:39:37 +020011707F: drivers/net/wireless/zydas/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011708
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011709USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011710M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011711L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011712L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011713T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011714W: http://royale.zerezo.com/zr364xx/
11715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011716F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011717F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011718
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011719ULPI BUS
11720M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11721L: linux-usb@vger.kernel.org
11722S: Maintained
11723F: drivers/usb/common/ulpi.c
11724F: include/linux/ulpi/
11725
Randy Dunlape7839f22008-10-12 16:11:45 -070011726USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011727M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011728M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011729L: user-mode-linux-devel@lists.sourceforge.net
11730L: user-mode-linux-user@lists.sourceforge.net
11731W: http://user-mode-linux.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -080011732T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011733S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011734F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011735F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011736F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011737F: fs/hostfs/
11738F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011739
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011740USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011741M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011742M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011743S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011744T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011745F: Documentation/DocBook/uio-howto.tmpl
11746F: drivers/uio/
11747F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011748
Karel Zak256cccb2012-06-01 10:13:09 +020011749UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011750M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011751L: util-linux@vger.kernel.org
11752W: http://en.wikipedia.org/wiki/Util-linux
11753T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011754S: Maintained
11755
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011756UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011757M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011758L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011759W: http://dev.gentoo.org/~spock/projects/uvesafb/
11760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011761F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011762F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011763
Stefan Agner456930d2015-09-02 18:06:33 -070011764VF610 NAND DRIVER
11765M: Stefan Agner <stefan@agner.ch>
11766L: linux-mtd@lists.infradead.org
11767S: Supported
11768F: drivers/mtd/nand/vf610_nfc.c
11769
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011770VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011771M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011773F: Documentation/filesystems/vfat.txt
11774F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011775
Alex Williamsoncba33452012-07-31 08:16:22 -060011776VFIO DRIVER
11777M: Alex Williamson <alex.williamson@redhat.com>
11778L: kvm@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011779T: git git://github.com/awilliam/linux-vfio.git
Alex Williamsoncba33452012-07-31 08:16:22 -060011780S: Maintained
11781F: Documentation/vfio.txt
11782F: drivers/vfio/
11783F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011784F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011785
Alex Williamsona714ea52015-06-18 11:59:22 -060011786VFIO PLATFORM DRIVER
11787M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11788L: kvm@vger.kernel.org
11789S: Maintained
11790F: drivers/vfio/platform/
11791
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011792VIDEOBUF2 FRAMEWORK
11793M: Pawel Osciak <pawel@osciak.com>
11794M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011795M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011796L: linux-media@vger.kernel.org
11797S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011798F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011799F: include/media/videobuf2-*
11800
Stephen Chandler Paul5523662e2015-10-24 13:10:29 -070011801VIRTUAL SERIO DEVICE DRIVER
11802M: Stephen Chandler Paul <thatslyude@gmail.com>
11803S: Maintained
11804F: drivers/input/serio/userio.c
11805F: include/uapi/linux/userio.h
11806
Amit Shah9a824462010-03-23 18:23:09 +053011807VIRTIO CONSOLE DRIVER
11808M: Amit Shah <amit.shah@redhat.com>
11809L: virtualization@lists.linux-foundation.org
11810S: Maintained
11811F: drivers/char/virtio_console.c
11812F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011813F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011814
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011815VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011816M: "Michael S. Tsirkin" <mst@redhat.com>
11817L: virtualization@lists.linux-foundation.org
11818S: Maintained
11819F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011820F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011821F: drivers/net/virtio_net.c
11822F: drivers/block/virtio_blk.c
11823F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011824F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011825
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011826VIRTIO DRIVERS FOR S390
11827M: Christian Borntraeger <borntraeger@de.ibm.com>
11828M: Cornelia Huck <cornelia.huck@de.ibm.com>
11829L: linux-s390@vger.kernel.org
11830L: virtualization@lists.linux-foundation.org
11831L: kvm@vger.kernel.org
11832S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011833F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011834
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011835VIRTIO GPU DRIVER
11836M: David Airlie <airlied@linux.ie>
11837M: Gerd Hoffmann <kraxel@redhat.com>
11838L: dri-devel@lists.freedesktop.org
11839L: virtualization@lists.linux-foundation.org
11840S: Maintained
11841F: drivers/gpu/drm/virtio/
11842F: include/uapi/linux/virtio_gpu.h
11843
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011844VIRTIO HOST (VHOST)
11845M: "Michael S. Tsirkin" <mst@redhat.com>
11846L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011847L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011848L: netdev@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011849T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011850S: Maintained
11851F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011852F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011853
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011854VIRTIO INPUT DRIVER
11855M: Gerd Hoffmann <kraxel@redhat.com>
11856S: Maintained
11857F: drivers/virtio/virtio_input.c
11858F: include/uapi/linux/virtio_input.h
11859
Linus Torvalds1da177e2005-04-16 15:20:36 -070011860VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011861S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011862F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011863
Harald Weltef0bf7f62009-06-17 20:22:39 +020011864VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011865M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011866M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011867S: Maintained
11868F: drivers/mmc/host/via-sdmmc.c
11869
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011870VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011871M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011872L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011873S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011874F: include/linux/via-core.h
11875F: include/linux/via-gpio.h
11876F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011877F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011878
Francois Romieu01f20732007-01-26 00:57:17 -080011879VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011880M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011881L: netdev@vger.kernel.org
11882S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011883F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011884
Alex Williamsonf73f8172015-09-18 22:29:39 +080011885VIRT LIB
11886M: Alex Williamson <alex.williamson@redhat.com>
11887M: Paolo Bonzini <pbonzini@redhat.com>
11888L: kvm@vger.kernel.org
11889S: Supported
11890F: virt/lib/
11891
Hans Verkuil77911fd2014-12-10 04:22:37 -030011892VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011893M: Hans Verkuil <hverkuil@xs4all.nl>
11894L: linux-media@vger.kernel.org
11895T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011896W: https://linuxtv.org
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011897S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011898F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011899
Patrick McHardybe7f8272007-10-23 20:26:36 -070011900VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011901M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011902L: netdev@vger.kernel.org
11903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011904F: drivers/net/macvlan.c
11905F: include/linux/if_*vlan.h
11906F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011907
Florian Fainelli55e331c2009-06-16 15:33:53 -070011908VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011909M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011910L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011911S: Maintained
11912F: drivers/vlynq/vlynq.c
11913F: include/linux/vlynq.h
11914
Martyn Welch390beae2012-05-03 17:52:36 +010011915VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011916M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011917M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011918M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11919L: devel@driverdev.osuosl.org
11920S: Maintained
11921T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11922F: Documentation/vme_api.txt
11923F: drivers/staging/vme/
11924F: drivers/vme/
11925F: include/linux/vme*
11926
Alok Kataria4488e092013-09-04 14:23:41 +053011927VMWARE HYPERVISOR INTERFACE
11928M: Alok Kataria <akataria@vmware.com>
11929L: virtualization@lists.linux-foundation.org
11930S: Supported
11931F: arch/x86/kernel/cpu/vmware.c
11932
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011933VMWARE BALLOON DRIVER
11934M: Xavier Deguillard <xdeguillard@vmware.com>
11935M: Philip Moltmann <moltmann@vmware.com>
11936M: "VMware, Inc." <pv-drivers@vmware.com>
11937L: linux-kernel@vger.kernel.org
11938S: Maintained
11939F: drivers/misc/vmw_balloon.c
11940
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011941VMWARE VMMOUSE SUBDRIVER
11942M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11943M: "VMware, Inc." <pv-drivers@vmware.com>
11944L: linux-input@vger.kernel.org
11945S: Maintained
11946F: drivers/input/mouse/vmmouse.c
11947F: drivers/input/mouse/vmmouse.h
11948
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011949VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011950M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011951M: "VMware, Inc." <pv-drivers@vmware.com>
11952L: netdev@vger.kernel.org
11953S: Maintained
11954F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011955
Alok Kataria851b1642009-10-13 14:51:05 -070011956VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011957M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011958M: VMware PV-Drivers <pv-drivers@vmware.com>
11959L: linux-scsi@vger.kernel.org
11960S: Maintained
11961F: drivers/scsi/vmw_pvscsi.c
11962F: drivers/scsi/vmw_pvscsi.h
11963
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011964VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011965M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011966M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011967L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011968W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011969T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011971F: drivers/regulator/
11972F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011973
David Ahern081958e2015-08-25 10:26:22 -070011974VRF
11975M: David Ahern <dsa@cumulusnetworks.com>
11976M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11977L: netdev@vger.kernel.org
11978S: Maintained
11979F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011980F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011981
Juerg Haefligerab413192006-09-24 20:54:04 +020011982VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011983M: Juerg Haefliger <juergh@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070011984L: linux-hwmon@vger.kernel.org
Juerg Haefligerab413192006-09-24 20:54:04 +020011985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011986F: Documentation/hwmon/vt1211
11987F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011988
Roger Lucas1de9e372005-11-26 20:20:05 +010011989VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011990M: Roger Lucas <vt8231@hiddenengine.co.uk>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070011991L: linux-hwmon@vger.kernel.org
Roger Lucas1de9e372005-11-26 20:20:05 +010011992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011993F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011994
Tony Olech88095e72011-05-14 16:48:13 -040011995VUB300 USB to SDIO/SD/MMC bridge chip
11996M: Tony Olech <tony.olech@elandigitalsystems.com>
11997L: linux-mmc@vger.kernel.org
11998L: linux-usb@vger.kernel.org
11999S: Supported
12000F: drivers/mmc/host/vub300.c
12001
Linus Torvalds1da177e2005-04-16 15:20:36 -070012002W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070012003M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012005F: Documentation/w1/
12006F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012007
Charles Spirakis13927072006-07-05 18:05:15 +020012008W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012009M: Marc Hulsman <m.hulsman@tudelft.nl>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012010L: linux-hwmon@vger.kernel.org
Marc Hulsman25845c22008-06-08 10:59:41 -040012011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012012F: Documentation/hwmon/w83791d
12013F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020012014
Rudolf Marek61db0112006-12-12 18:18:30 +010012015W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012016M: Rudolf Marek <r.marek@assembler.cz>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012017L: linux-hwmon@vger.kernel.org
Rudolf Marek61db0112006-12-12 18:18:30 +010012018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012019F: Documentation/hwmon/w83793
12020F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010012021
Jean Delvaree3760b42010-10-28 20:31:49 +020012022W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070012023M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012024L: linux-hwmon@vger.kernel.org
Jean Delvaree3760b42010-10-28 20:31:49 +020012025S: Maintained
12026F: drivers/hwmon/w83795.c
12027
Linus Torvalds1da177e2005-04-16 15:20:36 -070012028W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012029M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012031F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070012032
Hans de Goedeb4e05922014-07-20 13:35:44 -070012033WACOM PROTOCOL 4 SERIAL TABLETS
12034M: Julian Squires <julian@cipht.net>
12035M: Hans de Goede <hdegoede@redhat.com>
12036L: linux-input@vger.kernel.org
12037S: Maintained
12038F: drivers/input/tablet/wacom_serial4.c
12039
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012040WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070012041M: Wim Van Sebroeck <wim@iguana.be>
Guenter Roeck1f32f832015-12-05 22:18:25 -080012042R: Guenter Roeck <linux@roeck-us.net>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000012043L: linux-watchdog@vger.kernel.org
12044W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010012045T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012047F: Documentation/watchdog/
12048F: drivers/watchdog/
12049F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012050F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012051
Linus Torvalds1da177e2005-04-16 15:20:36 -070012052WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012053M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012054L: linux-scsi@vger.kernel.org
12055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012056F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070012057
David Herrmannb22e00f2011-09-06 13:50:40 +020012058WIIMOTE HID DRIVER
12059M: David Herrmann <dh.herrmann@googlemail.com>
12060L: linux-input@vger.kernel.org
12061S: Maintained
12062F: drivers/hid/hid-wiimote*
12063
David Härdemane258b802009-09-21 17:04:53 -070012064WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070012065M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070012066S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070012067F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070012068
William Breathitt Grayc36a4832016-02-28 23:54:46 -050012069WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12070M: William Breathitt Gray <vilhelm.gray@gmail.com>
12071L: linux-watchdog@vger.kernel.org
12072S: Maintained
12073F: drivers/watchdog/ebc-c384_wdt.c
12074
William Breathitt Gray9c26df92016-01-20 13:45:33 -050012075WINSYSTEMS WS16C48 GPIO DRIVER
12076M: William Breathitt Gray <vilhelm.gray@gmail.com>
12077L: linux-gpio@vger.kernel.org
12078S: Maintained
12079F: drivers/gpio/gpio-ws16c48.c
12080
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012081WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070012082M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012083M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070012084L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012085S: Supported
12086W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070012087F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070012088F: include/linux/wimax/debug.h
12089F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012090F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070012091F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012092
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012093WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012094M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012096F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012097
Linus Torvalds1da177e2005-04-16 15:20:36 -070012098WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012099M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070012100L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030012101W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070012102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012103F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070012104
Mark Brown055bcbc2010-08-13 14:18:12 +010012105WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010012106L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010012107T: git https://github.com/CirrusLogic/linux-drivers.git
12108W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010012109S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080012110F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000012111F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12112F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12113F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010012114F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010012115F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012116F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010012117F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010012118F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012119F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050012120F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090012121F: drivers/input/misc/wm831x-on.c
12122F: drivers/input/touchscreen/wm831x-ts.c
12123F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012124F: drivers/mfd/arizona*
12125F: drivers/mfd/wm*.c
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000012126F: drivers/mfd/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010012127F: drivers/power/wm83*.c
12128F: drivers/rtc/rtc-wm83*.c
12129F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010012130F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010012131F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010012132F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010012133F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010012134F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080012135F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090012136F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010012137F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010012138F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010012139F: sound/soc/codecs/wm*
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000012140F: sound/soc/codecs/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010012141
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010012142WORKQUEUE
12143M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080012144R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010012145T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12146S: Maintained
12147F: include/linux/workqueue.h
12148F: kernel/workqueue.c
12149F: Documentation/workqueue.txt
12150
Linus Torvalds1da177e2005-04-16 15:20:36 -070012151X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000012152M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012153L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000012154S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070012155F: Documentation/networking/x25*
12156F: include/net/x25*
12157F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012158
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070012159X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070012160M: Thomas Gleixner <tglx@linutronix.de>
12161M: Ingo Molnar <mingo@redhat.com>
12162M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080012163M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010012164L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010012165T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070012166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012167F: Documentation/x86/
12168F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070012169
Matthew Garrettd0944852010-02-11 10:40:13 -050012170X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070012171M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd0944852010-02-11 10:40:13 -050012172L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070012173T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -050012174S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070012175F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010012176F: drivers/platform/olpc/
Matthew Garrettd0944852010-02-11 10:40:13 -050012177
Ingo Molnarc1f5c542011-06-18 22:51:13 +020012178X86 MCE INFRASTRUCTURE
12179M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010012180M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020012181L: linux-edac@vger.kernel.org
12182S: Maintained
12183F: arch/x86/kernel/cpu/mcheck/*
12184
Borislav Petkov79ebdc92015-10-20 11:54:49 +020012185X86 MICROCODE UPDATE SUPPORT
12186M: Borislav Petkov <bp@alien8.de>
12187S: Maintained
12188F: arch/x86/kernel/cpu/microcode/*
12189
Andy Lutomirskif0905c52014-12-12 16:25:47 -080012190X86 VDSO
12191M: Andy Lutomirski <luto@amacapital.net>
12192L: linux-kernel@vger.kernel.org
12193T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12194S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020012195F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080012196
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012197XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020012198M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012199L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012200W: https://linuxtv.org
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012201T: git git://linuxtv.org/media_tree.git
12202S: Maintained
12203F: drivers/media/tuners/tuner-xc2028.*
12204
Ian Campbellc4468082011-04-27 15:26:46 -070012205XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070012206M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040012207M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
12208M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012209L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000012210T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070012211S: Supported
12212F: arch/x86/xen/
12213F: drivers/*/xen-*front.c
12214F: drivers/xen/
12215F: arch/x86/include/asm/xen/
12216F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012217F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070012218
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012219XEN HYPERVISOR ARM
12220M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012221L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012222S: Supported
12223F: arch/arm/xen/
12224F: arch/arm/include/asm/xen/
12225
Stefano Stabellinib475e832013-06-04 16:13:23 +000012226XEN HYPERVISOR ARM64
12227M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012228L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000012229S: Supported
12230F: arch/arm64/xen/
12231F: arch/arm64/include/asm/xen/
12232
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012233XEN NETWORK BACKEND DRIVER
Wei Liu83860402013-09-26 12:41:53 +010012234M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012235L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012236L: netdev@vger.kernel.org
12237S: Supported
12238F: drivers/net/xen-netback/*
12239
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012240XEN PCI SUBSYSTEM
12241M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012242L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020012243S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012244F: arch/x86/pci/*xen*
12245F: drivers/pci/*xen*
12246
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012247XEN BLOCK SUBSYSTEM
12248M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010012249M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012250L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12251S: Supported
12252F: drivers/block/xen-blkback/*
12253F: drivers/block/xen*
12254
Juergen Gross15d03602014-08-28 06:44:13 +020012255XEN PVSCSI DRIVERS
12256M: Juergen Gross <jgross@suse.com>
12257L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12258L: linux-scsi@vger.kernel.org
12259S: Supported
12260F: drivers/scsi/xen-scsifront.c
12261F: drivers/xen/xen-scsiback.c
12262F: include/xen/interface/io/vscsiif.h
12263
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012264XEN SWIOTLB SUBSYSTEM
12265M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012266L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012267S: Supported
12268F: arch/x86/xen/*swiotlb*
12269F: drivers/xen/*swiotlb*
12270
Linus Torvalds1da177e2005-04-16 15:20:36 -070012271XFS FILESYSTEM
12272P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090012273M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000012274M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100012275L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070012276W: http://oss.sgi.com/projects/xfs
Fengguang Wu9f273c22016-01-20 15:03:25 -080012277T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012278S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070012279F: Documentation/filesystems/xfs.txt
12280F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012281
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012282XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000012283M: Anirudha Sarangi <anirudh@xilinx.com>
12284M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012285S: Maintained
12286F: drivers/net/ethernet/xilinx/xilinx_axienet*
12287
Peter Korsgaard238b8722006-12-06 20:35:17 -080012288XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012289M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080012290L: linux-serial@vger.kernel.org
12291S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012292F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080012293
Laurent Pinchartdf330512013-05-15 11:36:19 -030012294XILINX VIDEO IP CORES
12295M: Hyun Kwon <hyun.kwon@xilinx.com>
12296M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12297L: linux-media@vger.kernel.org
12298T: git git://linuxtv.org/media_tree.git
12299S: Supported
12300F: Documentation/devicetree/bindings/media/xilinx/
12301F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030012302F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030012303
Eli Billauer74316942014-09-09 09:38:01 +030012304XILLYBUS DRIVER
12305M: Eli Billauer <eli.billauer@gmail.com>
12306L: linux-kernel@vger.kernel.org
12307S: Supported
12308F: drivers/char/xillybus/
12309
Max Filippovf620e4b2014-03-12 21:55:26 +040012310XTENSA XTFPGA PLATFORM SUPPORT
12311M: Max Filippov <jcmvbkbc@gmail.com>
12312L: linux-xtensa@linux-xtensa.org
12313S: Maintained
12314F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030012315F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040012316
Linus Torvalds1da177e2005-04-16 15:20:36 -070012317YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012318M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012319L: linux-hams@vger.kernel.org
12320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012321F: drivers/net/hamradio/yam*
12322F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012323
Henkaf64a5e2005-10-12 15:02:56 +020012324YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012325M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020012326L: usbb2k-api-dev@nongnu.org
12327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012328F: Documentation/input/yealink.txt
12329F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020012330
Linus Torvalds1da177e2005-04-16 15:20:36 -070012331Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012332M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012333W: http://yaina.de/jreuter/
12334W: http://www.qsl.net/dl1bke/
12335L: linux-hams@vger.kernel.org
12336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012337F: Documentation/networking/z8530drv.txt
12338F: drivers/net/hamradio/*scc.c
12339F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012340
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012341ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0bb181c2016-02-02 16:57:23 -080012342M: Seth Jennings <sjenning@redhat.com>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012343L: linux-mm@kvack.org
12344S: Maintained
12345F: mm/zbud.c
12346F: include/linux/zbud.h
12347
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012348ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012349M: Daniel Drake <dsd@gentoo.org>
12350M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012351W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070012352L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012353L: zd1211-devs@lists.sourceforge.net (subscribers-only)
12354S: Maintained
Kalle Valo69483002015-11-18 09:27:32 +020012355F: drivers/net/wireless/zydas/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012356
Dan Streetman20263022015-06-30 14:59:57 -070012357ZPOOL COMPRESSED PAGE STORAGE API
12358M: Dan Streetman <ddstreet@ieee.org>
12359L: linux-mm@kvack.org
12360S: Maintained
12361F: mm/zpool.c
12362F: include/linux/zpool.h
12363
Linus Torvalds1da177e2005-04-16 15:20:36 -070012364ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070012365L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030012366L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070012367W: http://mjpeg.sourceforge.net/driver-zoran/
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012368T: hg https://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030012369S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030012370F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012371
Minchan Kim6920f2c2014-01-30 15:45:56 -080012372ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12373M: Minchan Kim <minchan@kernel.org>
12374M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070012375R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080012376L: linux-kernel@vger.kernel.org
12377S: Maintained
12378F: drivers/block/zram/
12379F: Documentation/blockdev/zram.txt
12380
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012381ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012382M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012383S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012384F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012385
Minchan Kimeae70d02014-01-30 15:45:57 -080012386ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12387M: Minchan Kim <minchan@kernel.org>
12388M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070012389R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080012390L: linux-mm@kvack.org
12391S: Maintained
12392F: mm/zsmalloc.c
12393F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070012394F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080012395
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012396ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0bb181c2016-02-02 16:57:23 -080012397M: Seth Jennings <sjenning@redhat.com>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012398L: linux-mm@kvack.org
12399S: Maintained
12400F: mm/zswap.c
12401
Linus Torvalds1da177e2005-04-16 15:20:36 -070012402THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070012403M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070012404L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080012405Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040012406T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012407S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070012408F: *
12409F: */