blob: 61a323a6b2cfe7348c63f49eadcd858100dc8a03 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
Akash Shende6f9e2452015-02-16 15:59:48 -080037 (scripts/checkpatch.pl) to catch trivial style violations.
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070038 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Stephen Hemminger08602d72015-06-03 13:32:02 -070054 of the Linux Foundation certificate of contribution and should
55 include a Signed-off-by: line. The current version of this
56 "Developer's Certificate of Origin" (DCO) is listed in the file
Randy Dunlap45003712007-08-30 23:56:37 -070057 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
Paul E. McKenneyeafbaac2014-06-02 09:06:37 -070073 R: Designated reviewer: FullName <address@domain>
74 These reviewers should be CCed on patches.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070075 L: Mailing list that is relevant to this area
76 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080077 Q: Patchwork web based patch tracking system site
Joe Perchescea83212014-03-03 15:38:38 -080078 T: SCM tree type and location.
79 Type is one of: git, hg, quilt, stgit, topgit
Joe Perchesc7c4fb12009-10-26 16:49:48 -070080 S: Status, one of the following:
81 Supported: Someone is actually paid to look after this.
82 Maintained: Someone actually looks after it.
83 Odd Fixes: It has a maintainer but they don't have time to do
84 much other than throw the odd patch in. See below..
85 Orphan: No current maintainer [but maybe you could take the
86 role as you write your new code].
87 Obsolete: Old code. Something tagged obsolete generally means
88 it has been replaced by a better system and you
89 should be using that.
90 F: Files and directories with wildcard patterns.
91 A trailing slash includes all files and subdirectory files.
92 F: drivers/net/ all files in and below drivers/net
93 F: drivers/net/* all files in drivers/net, but not below
94 F: */net/* all files in "any top level directory"/net
95 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070096 N: Files and directories with regex patterns.
97 N: [^a-z]tegra all files whose path contains the word tegra
98 One pattern per line. Multiple N: lines acceptable.
Joe Perches6ab88e02014-01-23 15:54:22 -080099 scripts/get_maintainer.pl has different behavior for files that
100 match F: pattern and matches of N: patterns. By default,
101 get_maintainer will not look at git log history when an F: pattern
102 match occurs. When an N: match occurs, git log history is used
103 to also notify the people that have git commit signatures.
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 X: Files and directories that are NOT maintained, same rules as F:
105 Files exclusions are tested before file matches.
106 Can be useful for excluding a specific subdirectory, for instance:
107 F: net/
108 X: net/ipv6/
109 matches all files in and below net excluding net/ipv6/
110 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700111 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700113 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700115 matches patches or files that contain one or more of the words
116 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119Note: For the hard of thinking, this list is meant to remain in alphabetical
120order. If you could add yourselves to it in alphabetical order that would be
121so much easier [Ed]
122
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700123Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700125 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700126
Steffen Klasserta6d89912007-08-10 14:05:27 -07001273C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700128M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700129L: netdev@vger.kernel.org
130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700131F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700132F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700135M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700136L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700138F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
adam radfordc4de0ce2010-03-08 12:40:36 -08001403WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800143W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800145F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
14753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700148M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149L: linux-scsi@vger.kernel.org
150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700151F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Alexander Aring68d96dc2014-07-11 10:24:19 +02001536LOWPAN GENERIC (BTLE/IEEE 802.15.4)
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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-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 Chehabb5dcee222015-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Reinecke64624d4f2007-10-19 10:32:29 +0200534AIC7XXX / AIC79XX SCSI DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700535M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke64624d4f2007-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 Reinecke64624d4f2007-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 Dunlape2d1d6c02008-10-12 16:11:31 -0700548AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700549M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Guo8bcb97652011-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 Lunn4cfab57e2014-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 Gala916f743d2015-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 Stuebner00250b5292014-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übner541555e92014-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übner541555e92014-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übner541555e92014-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 Mundtd48d38e82010-02-08 12:50:24 +09001592ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001593M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e82010-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 Mundtd48d38e82010-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 Mundtd48d38e82010-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. Brown1bbd70892010-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. Brown1bbd70892010-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 Kirsher679ec0ef2011-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 Kalluriae9b56e32015-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 Chehabb5dcee222015-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 Garrettd09448532010-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 Kirsher2b133ad62011-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 Kirsher9f2f381f2011-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 Dunlape2d1d6c02008-10-12 16:11:31 -07002179B43 WIRELESS DRIVER
Randy Dunlape2d1d6c02008-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 Perches8a72ed6f2015-04-15 16:17:39 -07002183S: Odd Fixes
Kalle Valo58619b12015-11-17 19:49:23 +02002184F: drivers/net/wireless/broadcom/b43/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07002185
2186B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-10-12 16:11:31 -07002191S: Maintained
Kalle Valo423e3ce2015-11-17 19:49:26 +02002192F: drivers/net/wireless/broadcom/b43legacy/
Randy Dunlape2d1d6c02008-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 Han70d14fcf32014-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Kirsher7b35f0332011-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 Branden9209bec4f2014-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 Branden9209bec4f2014-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 Branden9209bec4f2014-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 Howellsa5432f5a2009-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 Howellsa5432f5a2009-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 Dunlape2d1d6c02008-10-12 16:11:31 -07002700CAN NETWORK LAYER
Oliver Hartkopp8d15d3862010-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 Dunlape2d1d6c02008-10-12 16:11:31 -07002707S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002708F: Documentation/networking/can.txt
Oliver Hartkopp8d15d3862010-03-06 08:31:50 +00002709F: net/can/
Oliver Hartkopp8d15d3862010-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 Dunlape2d1d6c02008-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 Hartkopp8d15d3862010-03-06 08:31:50 +00002724F: drivers/net/can/
2725F: include/linux/can/dev.h
Oliver Hartkopp8d15d3862010-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 Whitcroft0a920b5b2007-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 Whitcroft0a920b5b2007-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 Garrettd09448532010-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Garrettd09448532010-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-10-12 16:11:31 -07003053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003054F: fs/configfs/
3055F: include/linux/configfs.h
Randy Dunlape2d1d6c02008-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 Weiner5d1ea48b2014-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 Verkuil6d8425b12008-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 Verkuil6d8425b12008-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 Verkuil6d8425b12008-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 Dunlape2d1d6c02008-10-12 16:11:31 -07003412DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-10-12 16:11:31 -07003421S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003422F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c02008-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 Meloa89d030e2011-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 Garrettd09448532010-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 Warzecha90563ec42005-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 Warzecha90563ec42005-09-06 15:17:15 -07003491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003492F: Documentation/dcdbas.txt
3493F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec42005-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 Zimmerman197ba5f42014-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 Dunlape2d1d6c02008-10-12 16:11:31 -07003541
3542DEVICE NUMBER REGISTRY
Joe Perches8a6e2532010-03-05 13:43:11 -08003543M: Torben Mathiasen <device@lanana.org>
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Perches5c4a97d12013-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 R255278852011-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 Jones85a00d9b2010-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 Jones85a00d9b2010-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 Leitaoaa8a9e252010-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 Leitaoaa8a9e252010-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 Leitaoaa8a9e252010-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>
stephen hemminger34302842016-04-05 13:43:53 -07004305L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-10-12 16:11:31 -07004457L: linux-fsdevel@vger.kernel.org
4458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004459F: fs/*
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Tull3c0ed7d562015-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 Tull3c0ed7d562015-10-07 20:49:23 +01004535S: Maintained
4536F: drivers/fpga/
4537F: include/linux/fpga/fpga-mgr.h
4538W: http://www.rocketboards.org
4539
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-10-12 16:11:31 -07004543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004544F: arch/x86/math-emu/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07004545
4546FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c02008-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 Dunlape2d1d6c02008-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 Qiang7aa1aa6e2015-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 Howellsa5432f5a2009-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 Howellsa5432f5a2009-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 Garrettd09448532010-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 Kim4da621b62011-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 Chehabb5dcee222015-11-10 12:01:44 -02004737F: include/media/i2c/m5mols.h
Heungjun Kim4da621b62011-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 Dunlape2d1d6c02008-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>
Bjorn Anderssond7586842016-03-21 22:43:54 -07005045L: linux-remoteproc@vger.kernel.org
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005046S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005047T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005048F: Documentation/hwspinlock.txt
5049F: drivers/hwspinlock/hwspinlock_*
5050F: include/linux/hwspinlock.h
5051
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005053L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005055F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
Antti Palosaari91952bc2012-10-01 12:28:46 -03005057HD29L2 MEDIA DRIVER
5058M: Antti Palosaari <crope@iki.fi>
5059L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005060W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03005061W: http://palosaari.fi/linux/
5062Q: http://patchwork.linuxtv.org/project/linux-media/list/
5063T: git git://linuxtv.org/anttip/media_tree.git
5064S: Maintained
5065F: drivers/media/dvb-frontends/hd29l2*
5066
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005067HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Bracea0a268a2016-02-23 15:21:44 -06005068M: Don Brace <don.brace@microsemi.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005069L: iss_storagedev@hp.com
Don Bracea0a268a2016-02-23 15:21:44 -06005070L: esc.storagedev@microsemi.com
Don Brace693373d2014-10-15 22:32:41 +00005071L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005072S: Supported
5073F: Documentation/scsi/hpsa.txt
5074F: drivers/scsi/hpsa*.[ch]
5075F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005076F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005077
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005078HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace516fdce2016-03-08 16:05:51 -06005079M: Don Brace <don.brace@microsemi.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005080L: iss_storagedev@hp.com
Don Brace516fdce2016-03-08 16:05:51 -06005081L: esc.storagedev@microsemi.com
Don Brace693373d2014-10-15 22:32:41 +00005082L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005084F: Documentation/blockdev/cciss.txt
5085F: drivers/block/cciss*
5086F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005087F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005088
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02005090L: linux-fsdevel@vger.kernel.org
5091S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005092F: Documentation/filesystems/hfs.txt
5093F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08005095HFSPLUS FILESYSTEM
5096L: linux-fsdevel@vger.kernel.org
5097S: Orphan
5098F: Documentation/filesystems/hfsplus.txt
5099F: fs/hfsplus/
5100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005102M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103L: linux-nvidia@lists.surfsouth.com
5104W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5105S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005106F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005108HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02005109M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01005110M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02005111L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005112S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005113F: arch/x86/power/
5114F: drivers/base/power/
5115F: kernel/power/
5116F: include/linux/suspend.h
5117F: include/linux/freezer.h
5118F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07005119F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005120
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005121HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005122M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +01005123R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04005124L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005125T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005127F: drivers/hid/
5128F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005129F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005130
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005131HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02005132M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005133M: Jonathan Cameron <jic23@kernel.org>
5134M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5135L: linux-input@vger.kernel.org
5136L: linux-iio@vger.kernel.org
5137S: Maintained
5138F: Documentation/hid/hid-sensor*
5139F: drivers/hid/hid-sensor-*
5140F: drivers/iio/*/hid-*
5141F: include/linux/hid-sensor-*
5142
Ingo Molnar38bed542007-02-22 09:09:34 +01005143HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07005144M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005145L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005146T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01005147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005148F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02005149F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01005150F: kernel/time/clockevents.c
5151F: kernel/time/tick*.*
5152F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07005153F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07005154F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01005155
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07005158S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005159F: drivers/net/hamradio/dmascc.c
5160F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005162HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005164W: http://www.highpoint-tech.com
5165S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005166F: Documentation/scsi/hptiop.txt
5167F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005170M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171L: linux-hippi@sunsite.dk
5172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005173F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005174F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005175F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005176F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
John Garry16c6c252015-11-18 00:50:59 +08005178HISILICON SAS Controller
5179M: John Garry <john.garry@huawei.com>
5180W: http://www.hisilicon.com
5181S: Supported
5182F: drivers/scsi/hisi_sas/
5183F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5184
Jouni Malinenff1d2762005-05-12 22:54:16 -04005185HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005186M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005187L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005188L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005189W: http://hostap.epitest.fi/
5190S: Maintained
Kalle Valoeb4f98d2015-11-18 09:42:58 +02005191F: drivers/net/wireless/intersil/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005192
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005193HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05005194L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005195S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005196F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005197
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005198HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005199M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005200S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005201F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005202
Joe Perches7d2c86b2009-04-07 20:59:01 -07005203HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005204M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005206F: Documentation/timers/hpet.txt
5207F: drivers/char/hpet.c
5208F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005209F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005210
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005211HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005212S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005213F: arch/x86/kernel/hpet.c
5214F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005217M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005220F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005222HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005223M: Sebastian Reichel <sre@kernel.org>
5224T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005225S: Maintained
5226F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005227F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005228F: drivers/hsi/
5229F: include/linux/hsi/
5230F: include/uapi/linux/hsi/
5231
Joe Perches7d2c86b2009-04-07 20:59:01 -07005232HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005233M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005234W: http://www.pharscape.org
5235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005236F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005237
Arvid Brodin19990e22013-11-29 23:36:00 +01005238HSR NETWORK PROTOCOL
5239M: Arvid Brodin <arvid.brodin@alten.se>
5240L: netdev@vger.kernel.org
5241S: Maintained
5242F: net/hsr/
5243
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005244HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005245M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005246L: linux-input@vger.kernel.org
5247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005248F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005249
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005251M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005253F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005255Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005256M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005257M: Haiyang Zhang <haiyangz@microsoft.com>
5258L: devel@linuxdriverproject.org
5259S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005260F: arch/x86/include/asm/mshyperv.h
5261F: arch/x86/include/uapi/asm/hyperv.h
5262F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005263F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005264F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005265F: drivers/input/serio/hyperv-keyboard.c
Jake Oshins4daace02016-02-16 21:56:23 +00005266F: drivers/pci/host/pci-hyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005267F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005268F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005269F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005270F: include/linux/hyperv.h
5271F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005272F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005273
Peter Rosin7724fd02016-03-14 23:52:43 +01005274I2C MUXES
5275M: Peter Rosin <peda@axentia.se>
5276L: linux-i2c@vger.kernel.org
5277S: Maintained
5278F: Documentation/i2c/muxes/
5279F: Documentation/devicetree/bindings/i2c/i2c-mux*
5280F: drivers/i2c/i2c-mux.c
5281F: drivers/i2c/muxes/
5282F: include/linux/i2c-mux.h
5283
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005284I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005285M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005286L: linux-i2c@vger.kernel.org
5287S: Maintained
5288F: Documentation/i2c/busses/i2c-parport
5289F: Documentation/i2c/busses/i2c-parport-light
5290F: drivers/i2c/busses/i2c-parport.c
5291F: drivers/i2c/busses/i2c-parport-light.c
5292
5293I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005294M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005295L: linux-i2c@vger.kernel.org
5296S: Maintained
5297F: Documentation/i2c/busses/i2c-ali1535
5298F: Documentation/i2c/busses/i2c-ali1563
5299F: Documentation/i2c/busses/i2c-ali15x3
5300F: Documentation/i2c/busses/i2c-amd756
5301F: Documentation/i2c/busses/i2c-amd8111
5302F: Documentation/i2c/busses/i2c-i801
5303F: Documentation/i2c/busses/i2c-nforce2
5304F: Documentation/i2c/busses/i2c-piix4
5305F: Documentation/i2c/busses/i2c-sis5595
5306F: Documentation/i2c/busses/i2c-sis630
5307F: Documentation/i2c/busses/i2c-sis96x
5308F: Documentation/i2c/busses/i2c-via
5309F: Documentation/i2c/busses/i2c-viapro
5310F: drivers/i2c/busses/i2c-ali1535.c
5311F: drivers/i2c/busses/i2c-ali1563.c
5312F: drivers/i2c/busses/i2c-ali15x3.c
5313F: drivers/i2c/busses/i2c-amd756.c
5314F: drivers/i2c/busses/i2c-amd756-s4882.c
5315F: drivers/i2c/busses/i2c-amd8111.c
5316F: drivers/i2c/busses/i2c-i801.c
5317F: drivers/i2c/busses/i2c-isch.c
5318F: drivers/i2c/busses/i2c-nforce2.c
5319F: drivers/i2c/busses/i2c-nforce2-s4985.c
5320F: drivers/i2c/busses/i2c-piix4.c
5321F: drivers/i2c/busses/i2c-sis5595.c
5322F: drivers/i2c/busses/i2c-sis630.c
5323F: drivers/i2c/busses/i2c-sis96x.c
5324F: drivers/i2c/busses/i2c-via.c
5325F: drivers/i2c/busses/i2c-viapro.c
5326
Neil Hormancb7f07a2013-02-10 11:59:03 -05005327I2C/SMBUS ISMT DRIVER
5328M: Seth Heasley <seth.heasley@intel.com>
5329M: Neil Horman <nhorman@tuxdriver.com>
5330L: linux-i2c@vger.kernel.org
5331F: drivers/i2c/busses/i2c-ismt.c
5332F: Documentation/i2c/busses/i2c-ismt
5333
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005334I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005335M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005336L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005337S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005338F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005339
Jean Delvare5b543962005-08-15 19:51:02 +02005340I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005341M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005342L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005343W: https://i2c.wiki.kernel.org/
5344Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005345T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005347F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005348F: Documentation/i2c/
5349F: drivers/i2c/
Wolfram Sang630bc462015-10-29 08:25:48 +01005350F: drivers/i2c/*/
Joe Perches679655d2009-04-07 20:44:32 -07005351F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005352F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005353F: include/uapi/linux/i2c.h
5354F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
Wolfram Sang4560d672014-08-19 10:08:35 -05005356I2C ACPI SUPPORT
5357M: Mika Westerberg <mika.westerberg@linux.intel.com>
5358L: linux-i2c@vger.kernel.org
5359L: linux-acpi@vger.kernel.org
5360S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005361
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005362I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005363M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005364L: linux-i2c@vger.kernel.org
5365S: Maintained
5366F: Documentation/i2c/busses/i2c-taos-evm
5367F: drivers/i2c/busses/i2c-taos-evm.c
5368
Till Harbaume8c76ee2007-05-01 23:26:35 +02005369I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005370M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005371L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005372W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005374F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005375
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005377M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005379F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380
5381i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005382M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005383T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384S: Maintained
5385
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005387M: Tony Luck <tony.luck@intel.com>
5388M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005390T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005392F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005394IBM Power VMX Cryptographic instructions
5395M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005396M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005397L: linux-crypto@vger.kernel.org
5398S: Supported
5399F: drivers/crypto/vmx/Makefile
5400F: drivers/crypto/vmx/Kconfig
5401F: drivers/crypto/vmx/vmx.c
5402F: drivers/crypto/vmx/aes*
5403F: drivers/crypto/vmx/ghash*
5404F: drivers/crypto/vmx/ppc-xlate.pl
5405
Kent Yoder956c2032012-09-07 04:17:01 +08005406IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005407M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005408M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005409L: linux-crypto@vger.kernel.org
5410S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005411F: drivers/crypto/nx/Makefile
5412F: drivers/crypto/nx/Kconfig
5413F: drivers/crypto/nx/nx-aes*
5414F: drivers/crypto/nx/nx-sha*
5415F: drivers/crypto/nx/nx.*
5416F: drivers/crypto/nx/nx_csbcpb.h
5417F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005418
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005419IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005420M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005421S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005422F: drivers/crypto/nx/Makefile
5423F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005424F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005425F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005426F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005427F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005428
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005430M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005432F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433
Santiago Leon9d348af2010-09-03 18:29:53 +00005434IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005435M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005436L: netdev@vger.kernel.org
5437S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005438F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005439
Thomas Falcon032c5e82015-12-21 11:26:06 -06005440IBM Power SRIOV Virtual NIC Device Driver
5441M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5442M: John Allen <jallen@linux.vnet.ibm.com>
5443L: netdev@vger.kernel.org
5444S: Supported
5445F: drivers/net/ethernet/ibm/ibmvnic.*
5446
Nathan Fontenote6babec2014-04-09 13:32:06 -05005447IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005448M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005449L: linux-scsi@vger.kernel.org
5450S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005451F: drivers/scsi/ibmvscsi/ibmvscsi*
5452F: drivers/scsi/ibmvscsi/viosrp.h
5453
5454IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005455M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005456L: linux-scsi@vger.kernel.org
5457S: Supported
5458F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005459
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005461S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005462F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005464ICH LPC AND GPIO DRIVER
5465M: Peter Tyser <ptyser@xes-inc.com>
5466S: Maintained
5467F: drivers/mfd/lpc_ich.c
5468F: drivers/gpio/gpio-ich.c
5469
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005470IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005473Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005474T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005476F: Documentation/ide/
5477F: drivers/ide/
5478F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
Ike Panhc6cb8c132011-08-25 22:28:45 +08005480IDEAPAD LAPTOP EXTRAS DRIVER
5481M: Ike Panhc <ike.pan@canonical.com>
5482L: platform-driver-x86@vger.kernel.org
5483W: http://launchpad.net/ideapad-laptop
5484S: Maintained
5485F: drivers/platform/x86/ideapad-laptop.c
5486
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005487IDEAPAD LAPTOP SLIDEBAR DRIVER
5488M: Andrey Moiseev <o2g.org.ru@gmail.com>
5489L: linux-input@vger.kernel.org
5490W: https://github.com/o2genum/ideapad-slidebar
5491S: Maintained
5492F: drivers/input/misc/ideapad_slidebar.c
5493
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005494IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005495M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005496L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005498F: Documentation/cdrom/ide-cd
5499F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500
Andy Henroid27471fd2008-10-09 11:45:22 -07005501IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005502M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005503L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005504S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005505F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005506
Sergey Lapin02cf2282009-06-08 12:18:50 +00005507IEEE 802.15.4 SUBSYSTEM
Alexander Aringaff3eaa2016-02-19 09:59:10 +01005508M: Alexander Aring <aar@pengutronix.de>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305509L: linux-wpan@vger.kernel.org
Alexander Aringaff3eaa2016-02-19 09:59:10 +01005510W: http://wpan.cakelab.org/
5511T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5512T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005513S: Maintained
5514F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005515F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005516F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005517F: include/linux/nl802154.h
5518F: include/linux/ieee802154.h
5519F: include/net/nl802154.h
5520F: include/net/mac802154.h
5521F: include/net/af_ieee802154.h
5522F: include/net/cfg802154.h
5523F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305524F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005525
Sean Youngb1c97192014-10-23 17:58:22 -03005526IGORPLUG-USB IR RECEIVER
5527M: Sean Young <sean@mess.org>
5528L: linux-media@vger.kernel.org
5529S: Maintained
5530F: drivers/media/rc/igorplugusb.c
5531
Sean Young40ad4a32012-11-19 10:32:53 -03005532IGUANAWORKS USB IR TRANSCEIVER
5533M: Sean Young <sean@mess.org>
5534L: linux-media@vger.kernel.org
5535S: Maintained
5536F: drivers/media/rc/iguanair.c
5537
Ameya Palande9545f862012-01-10 09:00:58 -08005538IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005539M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005540R: Hartmut Knaack <knaack.h@gmx.de>
5541R: Lars-Peter Clausen <lars@metafoo.de>
5542R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005543L: linux-iio@vger.kernel.org
5544S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005545F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005546F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005547F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005548F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005549
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005550IKANOS/ADI EAGLE ADSL USB DRIVER
5551M: Matthieu Castet <castet.matthieu@free.fr>
5552M: Stanislaw Gruszka <stf_xl@wp.pl>
5553S: Maintained
5554F: drivers/usb/atm/ueagle-atm.c
5555
Guenter Roecke89ab512013-03-08 08:13:09 -08005556INA209 HARDWARE MONITOR DRIVER
5557M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005558L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08005559S: Maintained
5560F: Documentation/hwmon/ina209
5561F: Documentation/devicetree/bindings/i2c/ina209.txt
5562F: drivers/hwmon/ina209.c
5563
5564INA2XX HARDWARE MONITOR DRIVER
5565M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07005566L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08005567S: Maintained
5568F: Documentation/hwmon/ina2xx
5569F: drivers/hwmon/ina2xx.c
5570F: include/linux/platform_data/ina2xx.h
5571
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005572INDUSTRY PACK SUBSYSTEM (IPACK)
5573M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5574M: Jens Taprogge <jens.taprogge@taprogge.org>
5575M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5576L: industrypack-devel@lists.sourceforge.net
5577W: http://industrypack.sourceforge.net
5578S: Maintained
5579F: drivers/ipack/
5580
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005581INGENIC JZ4780 DMA Driver
5582M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5583S: Maintained
5584F: drivers/dma/dma-jz4780.c
5585
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005586INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005587M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005588M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005589L: linux-ima-devel@lists.sourceforge.net
5590L: linux-ima-user@lists.sourceforge.net
5591L: linux-security-module@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08005592T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005594F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005595
James Hogan9a4ea5a2014-11-17 09:17:49 -03005596IMGTEC IR DECODER DRIVER
5597M: James Hogan <james.hogan@imgtec.com>
5598S: Maintained
5599F: drivers/media/rc/img-ir/
5600
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005602L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005603S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005604F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005607M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005608M: Sean Hefty <sean.hefty@intel.com>
5609M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005610L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005611W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005612Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005613T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005615F: Documentation/infiniband/
5616F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005617F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005618F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005619F: include/uapi/rdma/
5620F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Robert Lovec9f04f52005-07-15 12:21:07 -04005622INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005623M: John McCutchan <john@johnmccutchan.com>
5624M: Robert Love <rlove@rlove.org>
5625M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005627F: Documentation/filesystems/inotify.txt
5628F: fs/notify/inotify/
5629F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005630F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005631
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005632INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005633M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005634L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005635Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005636T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005638F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005639F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005640F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005641F: include/linux/input/
Andreas Färbere52d8392016-03-10 17:19:28 -08005642F: Documentation/devicetree/bindings/input/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005643
Henrik Rydberg3267a872010-06-24 19:10:40 -07005644INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005645M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005646L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005647S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005648F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005649F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005650K: \b(ABS|SYN)_MT_
5651
Jie Yang97fa99a2015-02-02 16:55:27 +08005652INTEL ASoC BDW/HSW DRIVERS
5653M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005654L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005655S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005656F: sound/soc/intel/common/sst-dsp*
5657F: sound/soc/intel/common/sst-firmware.c
5658F: sound/soc/intel/boards/broadwell.c
5659F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005660
Dave Jiang4ac13e12011-07-29 17:16:55 -07005661INTEL C600 SERIES SAS CONTROLLER DRIVER
5662M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005663M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005664L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005665T: git git://git.code.sf.net/p/intel-sas/isci
5666S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005667F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005668
Alex Hungecc83e52015-12-18 23:31:10 +08005669INTEL HID EVENT DRIVER
5670M: Alex Hung <alex.hung@canonical.com>
5671L: platform-driver-x86@vger.kernel.org
5672S: Maintained
5673F: drivers/platform/x86/intel-hid.c
5674
Len Brown26717172010-03-08 14:07:30 -05005675INTEL IDLE DRIVER
5676M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005677L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005678T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005679S: Supported
5680F: drivers/idle/intel_idle.c
5681
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005682INTEL PSTATE DRIVER
Srinivas Pandruvada58ac1f62015-11-02 09:45:46 -08005683M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5684M: Len Brown <lenb@kernel.org>
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005685L: linux-pm@vger.kernel.org
5686S: Supported
5687F: drivers/cpufreq/intel_pstate.c
5688
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005689INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005690M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005691L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005693F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005694F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005695
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005698L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005699S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005700F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305702INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005703M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005704L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005705W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005707F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305708
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005709INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005710M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005711R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005712L: dmaengine@vger.kernel.org
5713Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5714S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005715F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005716
David Woodhouse6c8909b2008-10-18 16:12:17 +01005717INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005718M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005719L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005720T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005721S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005722F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005723F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005724
Dan Williamsb3e5f262007-08-07 10:26:35 -07005725INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005726R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005727S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005728F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005729
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005730INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005731M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005733F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5734F: arch/arm/mach-ixp4xx/include/mach/npe.h
5735F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5736F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005737F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005738F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005739
Michael Buesch844dd052006-06-26 00:24:59 -07005740INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005741M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005743F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005744
Jeff Kirsher2f302322015-03-25 17:01:03 -07005745INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005746M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005747R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5748R: Shannon Nelson <shannon.nelson@intel.com>
5749R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5750R: Don Skidmore <donald.c.skidmore@intel.com>
Jeff Kirsher6e80a182015-11-10 11:09:06 -08005751R: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005752R: John Ronciak <john.ronciak@intel.com>
5753R: Mitch Williams <mitch.a.williams@intel.com>
Jiri Benceff471b2016-04-05 16:39:37 +02005754L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005755W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005756W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005757Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5758T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5759T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005761F: Documentation/networking/e100.txt
5762F: Documentation/networking/e1000.txt
5763F: Documentation/networking/e1000e.txt
5764F: Documentation/networking/igb.txt
5765F: Documentation/networking/igbvf.txt
5766F: Documentation/networking/ixgb.txt
5767F: Documentation/networking/ixgbe.txt
5768F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005769F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005770F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005771F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005772F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773
Faisal Latif6e4de862016-01-20 13:40:16 -06005774INTEL RDMA RNIC DRIVER
5775M: Faisal Latif <faisal.latif@intel.com>
5776R: Chien Tin Tung <chien.tin.tung@intel.com>
5777R: Mustafa Ismail <mustafa.ismail@intel.com>
5778R: Shiraz Saleem <shiraz.saleem@intel.com>
5779R: Tatyana Nikolova <tatyana.e.nikolova@intel.com>
5780L: linux-rdma@vger.kernel.org
5781S: Supported
5782F: drivers/infiniband/hw/i40iw/
5783
Linus Walleij0963d59b2013-10-19 15:39:17 +02005784INTEL-MID GPIO DRIVER
5785M: David Cohen <david.a.cohen@linux.intel.com>
5786L: linux-gpio@vger.kernel.org
5787S: Maintained
5788F: drivers/gpio/gpio-intel-mid.c
5789
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005790INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5791M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005792L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005794F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005795F: Documentation/networking/README.ipw2200
Kalle Valo367a10922015-11-17 20:24:59 +02005796F: drivers/net/wireless/intel/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005797
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005798INTEL(R) TRACE HUB
5799M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5800S: Supported
5801F: Documentation/trace/intel_th.txt
5802F: drivers/hwtracing/intel_th/
5803
Shane Wang4bd96a72010-03-10 14:36:10 +08005804INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Wei, Gang74b18e12015-12-02 07:07:20 +00005805M: Ning Sun <ning.sun@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005806L: tboot-devel@lists.sourceforge.net
5807W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005808T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005809S: Supported
5810F: Documentation/intel_txt.txt
5811F: include/linux/tboot.h
5812F: arch/x86/kernel/tboot.c
5813
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005814INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005815M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005816M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005817L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005818S: Supported
5819W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005820F: Documentation/wimax/README.i2400m
5821F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005822F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005823
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005824INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5825M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005826L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005827S: Supported
Kalle Valo7ac9a362015-11-17 20:37:11 +02005828F: drivers/net/wireless/intel/iwlegacy/
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005829
Zhu Yib481de92007-09-25 17:54:57 -07005830INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005831M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005832M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005833M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005834L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005835W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005836T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005837S: Supported
Kalle Valoe705c122015-11-17 20:57:38 +02005838F: drivers/net/wireless/intel/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005839
Tomas Winklerde8fe022012-05-09 16:39:02 +03005840INTEL MANAGEMENT ENGINE (mei)
5841M: Tomas Winkler <tomas.winkler@intel.com>
5842L: linux-kernel@vger.kernel.org
5843S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005844F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005845F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005846F: drivers/misc/mei/*
Tomas Winkler222818c2016-01-08 00:49:22 +02005847F: drivers/watchdog/mei_wdt.c
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005848F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005849
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005850INTEL MIC DRIVERS (mic)
5851M: Sudeep Dutt <sudeep.dutt@intel.com>
5852M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5853S: Supported
5854W: https://github.com/sudeepdutt/mic
5855W: http://software.intel.com/en-us/mic-developer
5856F: include/linux/mic_bus.h
5857F: include/linux/scif.h
5858F: include/uapi/linux/mic_common.h
5859F: include/uapi/linux/mic_ioctl.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005860F: include/uapi/linux/scif_ioctl.h
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005861F: drivers/misc/mic/
5862F: drivers/dma/mic_x100_dma.c
5863F: drivers/dma/mic_x100_dma.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005864F: Documentation/mic/
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005865
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005866INTEL PMC/P-Unit IPC DRIVER
qipeng.zha0a8b8352015-06-27 00:32:15 +08005867M: Zha Qipeng<qipeng.zha@intel.com>
5868L: platform-driver-x86@vger.kernel.org
5869S: Maintained
5870F: drivers/platform/x86/intel_pmc_ipc.c
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005871F: drivers/platform/x86/intel_punit_ipc.c
qipeng.zha0a8b8352015-06-27 00:32:15 +08005872F: arch/x86/include/asm/intel_pmc_ipc.h
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005873F: arch/x86/include/asm/intel_punit_ipc.h
qipeng.zha0a8b8352015-06-27 00:32:15 +08005874
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305875INTEL TELEMETRY DRIVER
5876M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5877L: platform-driver-x86@vger.kernel.org
5878S: Maintained
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305879F: arch/x86/include/asm/intel_telemetry.h
Souvik Kumar Chakravartyf1fc3cd2016-01-21 09:30:50 +05305880F: drivers/platform/x86/intel_telemetry*
Ralf Baechlecb109a02007-08-30 23:56:30 -07005881
Joe Perches8b58be82009-07-29 15:04:30 -07005882IOC3 ETHERNET DRIVER
Ralf Baechled39e0722010-10-19 18:32:41 +01005883M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlecb109a02007-08-30 23:56:30 -07005884L: linux-mips@linux-mips.org
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005885S: Maintained
Ralf Baechlecb109a02007-08-30 23:56:30 -07005886F: drivers/net/ethernet/sgi/ioc3-eth.c
Stephen Warren0b6e8562013-09-13 13:10:27 -06005887
5888IOC3 SERIAL DRIVER
5889M: Pat Gefre <pfg@sgi.com>
5890L: linux-serial@vger.kernel.org
5891S: Maintained
5892F: drivers/tty/serial/ioc3_serial.c
5893
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005894IOMMU DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: Joerg Roedel <joro@8bytes.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896L: iommu@lists.linux-foundation.org
Joe Perches679655d2009-04-07 20:44:32 -07005897T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898S: Maintained
Francois Romieu1202d6f2007-09-17 17:13:55 -07005899F: drivers/iommu/
Joe Perches8b58be82009-07-29 15:04:30 -07005900
5901IP MASQUERADING
Francois Romieu1202d6f2007-09-17 17:13:55 -07005902M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5903S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005904F: net/ipv4/netfilter/ipt_MASQUERADE.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07005905
Corey Minyard4409ebe2006-04-20 02:43:12 -07005906IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005907M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005908L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005909W: http://openipmi.sourceforge.net/
5910S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005911F: Documentation/IPMI.txt
5912F: drivers/char/ipmi/
5913F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005914F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005915
Kenneth Westfield2d800892015-03-03 16:21:50 -08005916QCOM AUDIO (ASoC) DRIVERS
5917M: Patrick Lai <plai@codeaurora.org>
5918M: Banajit Goswami <bgoswami@codeaurora.org>
5919L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5920S: Supported
5921F: sound/soc/qcom/
5922
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005923IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005924M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005925L: linux-scsi@vger.kernel.org
5926W: http://www.adaptec.com/
5927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005928F: drivers/scsi/ips*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005929
5930IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005931M: Wensong Zhang <wensong@linux-vs.org>
5932M: Simon Horman <horms@verge.net.au>
5933M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005934L: netdev@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005935L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005937T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5938T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
Joe Perches679655d2009-04-07 20:44:32 -07005939F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005940F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005941F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005942F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943
Randy Dunlape7839f22008-10-12 16:11:45 -07005944IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005945M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005946M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005947S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005948F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005949
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005950IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005951M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005952L: netdev@vger.kernel.org
5953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005954F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005955F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005956F: net/ipx/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005957
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005959M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005960L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005961L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005963S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005964T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005965F: Documentation/networking/irda.txt
5966F: drivers/net/irda/
5967F: include/net/irda/
5968F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005970IRQ SUBSYSTEM
5971M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005972L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005973S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005974T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005975F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005976
5977IRQCHIP DRIVERS
5978M: Thomas Gleixner <tglx@linutronix.de>
5979M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005980M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005981L: linux-kernel@vger.kernel.org
5982S: Maintained
5983T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5984T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005985F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005986F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005987
Grant Likely7ab3a832012-02-14 14:06:47 -07005988IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005989M: Jiang Liu <jiang.liu@linux.intel.com>
5990M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005991S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005992T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005993F: Documentation/IRQ-domain.txt
5994F: include/linux/irqdomain.h
5995F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005996F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005997
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07005998ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005999M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006001F: Documentation/isapnp.txt
6002F: drivers/pnp/isapnp/
6003F: include/linux/isapnp.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006004
Hans Verkuild39b84202012-11-23 07:07:02 -03006005ISA RADIO MODULE
6006M: Hans Verkuil <hverkuil@xs4all.nl>
6007L: linux-media@vger.kernel.org
6008T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006009W: https://linuxtv.org
Hans Verkuild39b84202012-11-23 07:07:02 -03006010S: Maintained
6011F: drivers/media/radio/radio-isa*
6012
Harry Wei71a6d0a2011-05-11 15:13:33 -07006013iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6014M: Peter Jones <pjones@redhat.com>
6015M: Konrad Rzeszutek Wilk <konrad@kernel.org>
6016S: Maintained
6017F: drivers/firmware/iscsi_ibft*
6018
Mike Christie14816b1e2007-11-28 16:22:06 -08006019ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07006020M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08006021L: open-iscsi@googlegroups.com
6022W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07006023T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08006024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006025F: drivers/scsi/*iscsi*
6026F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08006027
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006028ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6029M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03006030M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006031M: Roi Dayan <roid@mellanox.com>
6032L: linux-rdma@vger.kernel.org
6033S: Supported
6034W: http://www.openfabrics.org
6035W: www.open-iscsi.org
6036Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07006037F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00006038
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02006039ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6040M: Sagi Grimberg <sagig@mellanox.com>
6041T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6042L: linux-rdma@vger.kernel.org
6043L: target-devel@vger.kernel.org
6044S: Supported
6045W: http://www.linux-iscsi.org
6046F: drivers/infiniband/ulp/isert
6047
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006049M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07006050L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07006051L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07006053T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006055F: Documentation/isdn/
6056F: drivers/isdn/
6057F: include/linux/isdn.h
6058F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006059F: include/uapi/linux/isdn.h
6060F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061
6062ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07006063M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07006064L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065W: http://www.melware.de
6066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006067F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
Jean Delvared6248702010-03-05 22:17:20 +01006069IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006070M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006071L: linux-hwmon@vger.kernel.org
Jean Delvared6248702010-03-05 22:17:20 +01006072S: Maintained
6073F: Documentation/hwmon/it87
6074F: drivers/hwmon/it87.c
6075
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006076IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006077M: Antti Palosaari <crope@iki.fi>
6078L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006079W: https://linuxtv.org
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006080W: http://palosaari.fi/linux/
6081Q: http://patchwork.linuxtv.org/project/linux-media/list/
6082T: git git://linuxtv.org/anttip/media_tree.git
6083S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03006084F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006085
Hans Verkuil91821ff2007-12-02 09:35:33 -03006086IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03006087M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08006088L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006089L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006090T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03006091W: http://www.ivtvdriver.org
6092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006093F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006094F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006095F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03006096
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006097IX2505V MEDIA DRIVER
6098M: Malcolm Priestley <tvboxspy@gmail.com>
6099L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006100W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006101Q: http://patchwork.linuxtv.org/project/linux-media/list/
6102S: Maintained
6103F: drivers/media/dvb-frontends/ix2505v*
6104
Guenter Roeck4453d732010-08-09 17:21:08 -07006105JC42.4 TEMPERATURE SENSOR DRIVER
6106M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006107L: linux-hwmon@vger.kernel.org
Guenter Roeck4453d732010-08-09 17:21:08 -07006108S: Maintained
6109F: drivers/hwmon/jc42.c
6110F: Documentation/hwmon/jc42
6111
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006112JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06006113M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006114L: jfs-discussion@lists.sourceforge.net
6115W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07006116T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05006117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006118F: Documentation/filesystems/jfs.txt
6119F: fs/jfs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006120
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006121JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006122M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006123L: netdev@vger.kernel.org
6124S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07006125F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006126
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006128M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04006129L: linux-mtd@lists.infradead.org
6130W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006132F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006133F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134
Theodore Ts'od183e112011-05-26 09:53:09 -04006135JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6136M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02006137M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04006138L: linux-ext4@vger.kernel.org
6139S: Maintained
6140F: fs/jbd2/
6141F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07006142
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03006143JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6144M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6145L: linux-media@vger.kernel.org
6146S: Maintained
6147F: drivers/media/platform/rcar_jpu.c
6148
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006149JSM Neo PCI based serial card
Gabriel Krisman Bertazidf247082016-02-08 10:20:59 -02006150M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006151L: linux-serial@vger.kernel.org
6152S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006153F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006154
Clemens Ladischaf399172011-01-10 16:32:54 +01006155K10TEMP HARDWARE MONITORING DRIVER
6156M: Clemens Ladisch <clemens@ladisch.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006157L: linux-hwmon@vger.kernel.org
Clemens Ladischaf399172011-01-10 16:32:54 +01006158S: Maintained
6159F: Documentation/hwmon/k10temp
6160F: drivers/hwmon/k10temp.c
6161
Rudolf Marek4660cb32006-10-08 22:01:26 +02006162K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006163M: Rudolf Marek <r.marek@assembler.cz>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006164L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006166F: Documentation/hwmon/k8temp
6167F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168
Andrey Ryabinin0ba1d912016-03-25 14:22:17 -07006169KASAN
6170M: Andrey Ryabinin <aryabinin@virtuozzo.com>
6171R: Alexander Potapenko <glider@google.com>
6172R: Dmitry Vyukov <dvyukov@google.com>
6173L: kasan-dev@googlegroups.com
6174S: Maintained
6175F: arch/*/include/asm/kasan.h
6176F: arch/*/mm/kasan_init*
6177F: Documentation/kasan.txt
6178F: include/linux/kasan.h
6179F: lib/test_kasan.c
6180F: mm/kasan/
6181F: scripts/Makefile.kasan
6182
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01006184M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006185L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08006186T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01006187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006188F: Documentation/kbuild/kconfig-language.txt
6189F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190
Vivek Goyalea6c2082006-05-20 14:59:55 -07006191KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07006192M: Vivek Goyal <vgoyal@redhat.com>
6193M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07006194L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07006195W: http://lse.sourceforge.net/kdump/
6196S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006197F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07006198
Hans Verkuilf41bf022012-11-23 07:04:36 -03006199KEENE FM RADIO TRANSMITTER DRIVER
6200M: Hans Verkuil <hverkuil@xs4all.nl>
6201L: linux-media@vger.kernel.org
6202T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006203W: https://linuxtv.org
Hans Verkuilf41bf022012-11-23 07:04:36 -03006204S: Maintained
6205F: drivers/media/radio/radio-keene*
6206
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07006208M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08006209L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006211F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212
Michal Marek70fb7ba2010-01-29 14:22:43 +01006213KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07006214M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07006215T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6216T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006217L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08006218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006219F: Documentation/kbuild/
6220F: Makefile
6221F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01006222F: scripts/basic/
6223F: scripts/mk*
6224F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
6226KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006227L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006228W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006229S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006231KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006232M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f62015-08-24 16:44:40 -04006233M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006234L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235W: http://nfs.sourceforge.net/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006236T: git git://linux-nfs.org/~bfields/linux.git
NeilBrown98fac23f2007-01-26 00:56:57 -08006237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006238F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006239F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006240F: fs/lockd/
6241F: fs/nfs_common/
6242F: net/sunrpc/
6243F: include/linux/lockd/
6244F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006245F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
Shuah Khan13b122b2014-10-13 15:51:21 -07006247KERNEL SELFTEST FRAMEWORK
6248M: Shuah Khan <shuahkh@osg.samsung.com>
Shuah Khan64f00852016-02-17 13:11:32 -08006249L: linux-kselftest@vger.kernel.org
Shuah Khan13b122b2014-10-13 15:51:21 -07006250T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6251S: Maintained
6252F: tools/testing/selftests
6253
Avi Kivity426d62e2006-12-13 00:34:03 -08006254KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006255M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006256M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006257L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306258W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306259T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006260S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006261F: Documentation/*/kvm*.txt
6262F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006263F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006264F: arch/x86/kernel/kvm.c
6265F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006266F: arch/*/include/asm/kvm*
6267F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006268F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006269F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006270
Joerg Roedelad8003d2008-09-10 20:01:07 +02006271KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c82012-10-29 19:08:21 +01006272M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006273L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006274W: http://www.linux-kvm.org/
Joerg Roedel7de609c82012-10-29 19:08:21 +01006275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006277F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006278
Hollis Blanchard513014b2008-04-16 23:28:08 -05006279KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006280M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006281L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006282W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006283T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006284S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006285F: arch/powerpc/include/asm/kvm*
6286F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006287
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006288KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006289M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006290M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006291L: linux-s390@vger.kernel.org
6292W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006293T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006295F: Documentation/s390/kvm.txt
6296F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006297F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006298
Christoffer Dalla7494742013-01-20 18:42:26 -05006299KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006300M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006301M: Marc Zyngier <marc.zyngier@arm.com>
6302L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006303L: kvmarm@lists.cs.columbia.edu
6304W: http://systems.cs.columbia.edu/projects/kvm-arm
Fengguang Wu1b1ebe82015-12-18 15:51:44 +08006305T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006306S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006307F: arch/arm/include/uapi/asm/kvm*
6308F: arch/arm/include/asm/kvm*
6309F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006310F: virt/kvm/arm/
6311F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006312
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006313KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006314M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006315M: Marc Zyngier <marc.zyngier@arm.com>
6316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6317L: kvmarm@lists.cs.columbia.edu
6318S: Maintained
6319F: arch/arm64/include/uapi/asm/kvm*
6320F: arch/arm64/include/asm/kvm*
6321F: arch/arm64/kvm/
6322
James Hoganbfd3d532015-12-16 23:49:41 +00006323KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6324M: James Hogan <james.hogan@imgtec.com>
6325L: linux-mips@linux-mips.org
6326S: Supported
6327F: arch/mips/include/uapi/asm/kvm*
6328F: arch/mips/include/asm/kvm*
6329F: arch/mips/kvm/
6330
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006331KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006332M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006333W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006334L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006336F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006337F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006338F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006339
David Howellse9714612010-03-29 23:42:09 +01006340KEYS/KEYRINGS:
6341M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006342L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006343S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006344F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006345F: include/linux/key.h
6346F: include/linux/key-type.h
6347F: include/keys/
6348F: security/keys/
6349
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006350KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006351M: David Safford <safford@us.ibm.com>
6352M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006353L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006354L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006355S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006356F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006357F: include/keys/trusted-type.h
6358F: security/keys/trusted.c
6359F: security/keys/trusted.h
6360
6361KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006362M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6363M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006364L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006365L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006366S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006367F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006368F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006369F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006370
Jason Wessel5b778da2010-05-20 21:04:28 -05006371KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006372M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006373W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006374L: kgdb-bugreport@lists.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -08006375T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006377F: Documentation/DocBook/kgdb.tmpl
6378F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006379F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006380F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006381F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006382F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006383
Pekka Enberg456db8c2008-04-28 22:47:29 +03006384KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006385M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006386M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006387S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006388F: Documentation/kmemcheck.txt
6389F: arch/x86/include/asm/kmemcheck.h
6390F: arch/x86/mm/kmemcheck/
6391F: include/linux/kmemcheck.h
6392F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006393
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006394KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006395M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006396S: Maintained
6397F: Documentation/kmemleak.txt
6398F: include/linux/kmemleak.h
6399F: mm/kmemleak.c
6400F: mm/kmemleak-test.c
6401
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006402KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006403M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6404M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6405M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu353def942016-03-31 22:33:23 +09006406M: Masami Hiramatsu <mhiramat@kernel.org>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006408F: Documentation/kprobes.txt
6409F: include/linux/kprobes.h
6410F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006411
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006412KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006413M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006414W: http://miguelojeda.es/auxdisplay.htm
6415W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006417F: Documentation/auxdisplay/ks0108
6418F: drivers/auxdisplay/ks0108.c
6419F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006420
David Ahern1b69c6d2015-09-29 20:07:11 -07006421L3MDEV
6422M: David Ahern <dsa@cumulusnetworks.com>
6423L: netdev@vger.kernel.org
6424S: Maintained
6425F: net/l3mdev
6426F: include/net/l3mdev.h
6427
John Crispin9ca44352016-01-04 20:28:12 +01006428LANTIQ MIPS ARCHITECTURE
6429M: John Crispin <blogic@openwrt.org>
6430L: linux-mips@linux-mips.org
6431S: Maintained
6432F: arch/mips/lantiq
6433
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006436S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006437F: Documentation/networking/lapb-module.txt
6438F: include/*/lapb.h
6439F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440
6441LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006442M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443L: linux-scsi@vger.kernel.org
6444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006445F: Documentation/scsi/53c700.txt
6446F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447
Richard Purdie263de9b2006-05-15 09:44:16 -07006448LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006449M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006450M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006451L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006452T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006454F: drivers/leds/
6455F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006456
Jean Delvareb0461a42011-06-15 15:08:46 -07006457LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006458M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006459S: Maintained
6460F: Documentation/misc-devices/eeprom
6461F: drivers/misc/eeprom/eeprom.c
6462
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006464M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465L: legousb-devel@lists.sourceforge.net
6466W: http://legousb.sourceforge.net/
6467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006468F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469
Michael Krufky055616a2012-10-02 00:56:06 -03006470LG2160 MEDIA DRIVER
6471M: Michael Krufky <mkrufky@linuxtv.org>
6472L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006473W: https://linuxtv.org
Michael Krufky055616a2012-10-02 00:56:06 -03006474W: http://github.com/mkrufky
6475Q: http://patchwork.linuxtv.org/project/linux-media/list/
6476T: git git://linuxtv.org/mkrufky/tuners.git
6477S: Maintained
6478F: drivers/media/dvb-frontends/lg2160.*
6479
Michael Krufky6f0e7722012-10-02 00:56:00 -03006480LGDT3305 MEDIA DRIVER
6481M: Michael Krufky <mkrufky@linuxtv.org>
6482L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006483W: https://linuxtv.org
Michael Krufky6f0e7722012-10-02 00:56:00 -03006484W: http://github.com/mkrufky
6485Q: http://patchwork.linuxtv.org/project/linux-media/list/
6486T: git git://linuxtv.org/mkrufky/tuners.git
6487S: Maintained
6488F: drivers/media/dvb-frontends/lgdt3305.*
6489
Rusty Russell568a17f2007-10-25 14:12:24 +10006490LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006491M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006492L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006493W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006494S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006495F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006496F: arch/x86/lguest/
6497F: drivers/lguest/
6498F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006499F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006500
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006501LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6502M: Tejun Heo <tj@kernel.org>
6503L: linux-ide@vger.kernel.org
6504T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6505S: Maintained
6506F: drivers/ata/
6507F: include/linux/ata.h
6508F: include/linux/libata.h
6509
6510LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006511M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006512L: linux-ide@vger.kernel.org
6513T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6514S: Maintained
6515F: include/linux/pata_arasan_cf_data.h
6516F: drivers/ata/pata_arasan_cf.c
6517
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006518LIBATA PATA DRIVERS
6519M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6520M: Tejun Heo <tj@kernel.org>
6521L: linux-ide@vger.kernel.org
6522T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6523S: Maintained
6524F: drivers/ata/pata_*.c
6525F: drivers/ata/ata_generic.c
6526
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006527LIBATA SATA AHCI PLATFORM devices support
6528M: Hans de Goede <hdegoede@redhat.com>
6529M: Tejun Heo <tj@kernel.org>
6530L: linux-ide@vger.kernel.org
6531T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6532S: Maintained
6533F: drivers/ata/ahci_platform.c
6534F: drivers/ata/libahci_platform.c
6535F: include/linux/ahci_platform.h
6536
6537LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6538M: Mikael Pettersson <mikpelinux@gmail.com>
6539L: linux-ide@vger.kernel.org
6540T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6541S: Maintained
6542F: drivers/ata/sata_promise.*
6543
Sasha Levin1acd4372013-06-13 18:41:24 -04006544LIBLOCKDEP
6545M: Sasha Levin <sasha.levin@oracle.com>
6546S: Maintained
6547F: tools/lib/lockdep/
6548
Dan Williamsbc301962015-06-25 04:48:19 -04006549LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6550M: Dan Williams <dan.j.williams@intel.com>
6551L: linux-nvdimm@lists.01.org
6552Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006553T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
Dan Williamsbc301962015-06-25 04:48:19 -04006554S: Supported
6555F: drivers/nvdimm/*
6556F: include/linux/nd.h
6557F: include/linux/libnvdimm.h
6558F: include/uapi/linux/ndctl.h
6559
6560LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6561M: Ross Zwisler <ross.zwisler@linux.intel.com>
6562L: linux-nvdimm@lists.01.org
6563Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6564S: Supported
6565F: drivers/nvdimm/blk.c
6566F: drivers/nvdimm/region_devs.c
6567F: drivers/acpi/nfit*
6568
6569LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6570M: Vishal Verma <vishal.l.verma@intel.com>
6571L: linux-nvdimm@lists.01.org
6572Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6573S: Supported
6574F: drivers/nvdimm/btt*
6575
6576LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6577M: Ross Zwisler <ross.zwisler@linux.intel.com>
6578L: linux-nvdimm@lists.01.org
6579Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6580S: Supported
6581F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006582F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006583F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006584
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006585LIGHTNVM PLATFORM SUPPORT
6586M: Matias Bjorling <mb@lightnvm.io>
6587W: http://github/OpenChannelSSD
Matias Bjørling4ead1a22015-11-16 15:34:35 +01006588L: linux-block@vger.kernel.org
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006589S: Maintained
6590F: drivers/lightnvm/
6591F: include/linux/lightnvm.h
6592F: include/uapi/linux/lightnvm.h
6593
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006595M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596W: http://www.ibm.com/linux/ltc/projects/ppc
6597S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006598F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006600LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006601M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6602M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006603M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006605L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006606Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006607T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006609F: Documentation/powerpc/
6610F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611
6612LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006613M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006615L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006617F: arch/powerpc/platforms/powermac/
6618F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619
Grant Likely77a76362008-07-12 12:11:43 -06006620LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006621M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006622L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006623T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006625F: arch/powerpc/platforms/512x/
6626F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627
6628LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006629M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006630M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006632L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006634F: arch/powerpc/platforms/40x/
6635F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636
Grant Likely260c02a2007-10-02 12:15:34 +10006637LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006638L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006639S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006640F: arch/powerpc/*/*virtex*
6641F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642
Tom Rinie93adf12005-07-26 12:49:53 -07006643LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006644M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006645W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006646L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006647S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006648F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006649
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wood44451d42015-12-31 12:57:26 -06006651M: Scott Wood <oss@buserror.net>
Joe Perches8b58be82009-07-29 15:04:30 -07006652M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006653W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006654L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006655T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006656S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006657F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006658F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659
Olof Johanssonab06ff32006-09-06 14:44:54 -05006660LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006661M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006662L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006663S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006664F: arch/powerpc/platforms/pasemi/
6665F: drivers/*/*pasemi*
6666F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006667
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006669M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006670L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671S: Supported
6672
Harry Weia23ce6d2011-02-11 16:52:20 +01006673LIS3LV02D ACCELEROMETER DRIVER
6674M: Eric Piel <eric.piel@tremplin-utc.net>
6675S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006676F: Documentation/misc-devices/lis3lv02d
6677F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006678F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006679
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006680LIVE PATCHING
6681M: Josh Poimboeuf <jpoimboe@redhat.com>
Josh Poimboeuf06e1c172016-03-16 10:03:36 -05006682M: Jessica Yu <jeyu@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006683M: Jiri Kosina <jikos@kernel.org>
Josh Poimboeuf06e1c172016-03-16 10:03:36 -05006684M: Miroslav Benes <mbenes@suse.cz>
6685R: Petr Mladek <pmladek@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006686S: Maintained
6687F: kernel/livepatch/
6688F: include/linux/livepatch.h
6689F: arch/x86/include/asm/livepatch.h
6690F: arch/x86/kernel/livepatch.c
6691F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006692F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006693L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006694T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006695
Kees Cookea861d72016-02-26 15:12:25 -08006696LINUX KERNEL DUMP TEST MODULE (LKDTM)
6697M: Kees Cook <keescook@chromium.org>
6698S: Maintained
6699F: drivers/misc/lkdtm.c
6700
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006701LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006702M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006704F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006705F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006706F: include/net/llc*
6707F: net/llc/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07006708
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006709LM73 HARDWARE MONITOR DRIVER
6710M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006711L: linux-hwmon@vger.kernel.org
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006712S: Maintained
6713F: drivers/hwmon/lm73.c
6714
Jean Delvare156e2d12011-07-25 21:46:11 +02006715LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006716M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006717L: linux-hwmon@vger.kernel.org
Jean Delvare156e2d12011-07-25 21:46:11 +02006718S: Maintained
6719F: Documentation/hwmon/lm78
6720F: drivers/hwmon/lm78.c
6721
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006723M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006724L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006726F: Documentation/hwmon/lm83
6727F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
6729LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006730M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006731L: linux-hwmon@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006733F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006734F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006735F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006736
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006737LM95234 HARDWARE MONITOR DRIVER
6738M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006739L: linux-hwmon@vger.kernel.org
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006740S: Maintained
6741F: Documentation/hwmon/lm95234
6742F: drivers/hwmon/lm95234.c
6743
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006744LME2510 MEDIA DRIVER
6745M: Malcolm Priestley <tvboxspy@gmail.com>
6746L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006747W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006748Q: http://patchwork.linuxtv.org/project/linux-media/list/
6749S: Maintained
6750F: drivers/media/usb/dvb-usb-v2/lmedm04*
6751
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006752LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006753M: Peter Zijlstra <peterz@infradead.org>
6754M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006755L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006756T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006757S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006758F: Documentation/locking/lockdep*.txt
6759F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006760F: include/linux/lockdep.h
Joe Perches7486d6da2013-11-14 14:59:45 -08006761F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006762
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006763LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006764M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006765L: linux-ntfs-dev@lists.sourceforge.net
6766W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006768F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006769F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770
Joern Engelef6ada32009-11-20 22:17:12 +01006771LogFS
6772M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306773M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006774L: logfs@logfs.org
6775W: logfs.org
6776S: Maintained
6777F: fs/logfs/
6778
Roland Stiggeb62d7942013-04-02 19:37:11 +02006779LPC32XX MACHINE SUPPORT
6780M: Roland Stigge <stigge@antcom.de>
6781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6782S: Maintained
6783F: arch/arm/mach-lpc32xx/
6784
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006785LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Suganath prabu Subramani9495e832016-02-18 14:09:46 +05306786M: Sathya Prakash <sathya.prakash@broadcom.com>
6787M: Chaitra P B <chaitra.basappa@broadcom.com>
6788M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
6789L: MPT-FusionLinux.pdl@broadcom.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006790L: linux-scsi@vger.kernel.org
Suganath prabu Subramani9495e832016-02-18 14:09:46 +05306791W: http://www.avagotech.com/support/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006792S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006793F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306794F: drivers/scsi/mpt2sas/
6795F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006796
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006798M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799L: linux-scsi@vger.kernel.org
6800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006801F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802
Guenter Roecke5f5c992010-06-25 11:59:54 -07006803LTC4261 HARDWARE MONITOR DRIVER
6804M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006805L: linux-hwmon@vger.kernel.org
Guenter Roecke5f5c992010-06-25 11:59:54 -07006806S: Maintained
6807F: Documentation/hwmon/ltc4261
6808F: drivers/hwmon/ltc4261.c
6809
Mike Frysinger81365c32008-10-29 14:01:12 -07006810LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006811M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006812M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006813M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006814M: Jan Stancek <jstancek@redhat.com>
6815M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6816M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006817L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006818W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006819T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006820S: Maintained
6821
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006822M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006823W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006824S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006825F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006826
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006828M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829L: linux-m68k@lists.linux-m68k.org
6830W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006831T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006833F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006834F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835
6836M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006837M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006839L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006841F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842
6843M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006844M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845W: http://www.tazenda.demon.co.uk/phil/linux-hp
6846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006847F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848
Antti Palosaari74425542013-11-06 14:03:32 -03006849M88DS3103 MEDIA DRIVER
6850M: Antti Palosaari <crope@iki.fi>
6851L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006852W: https://linuxtv.org
Antti Palosaari74425542013-11-06 14:03:32 -03006853W: http://palosaari.fi/linux/
6854Q: http://patchwork.linuxtv.org/project/linux-media/list/
6855T: git git://linuxtv.org/anttip/media_tree.git
6856S: Maintained
6857F: drivers/media/dvb-frontends/m88ds3103*
6858
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006859M88RS2000 MEDIA DRIVER
6860M: Malcolm Priestley <tvboxspy@gmail.com>
6861L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006862W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006863Q: http://patchwork.linuxtv.org/project/linux-media/list/
6864S: Maintained
6865F: drivers/media/dvb-frontends/m88rs2000*
6866
Alexey Klimov07a092f2012-11-12 02:57:32 -03006867MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006868M: Alexey Klimov <klimov.linux@gmail.com>
6869L: linux-media@vger.kernel.org
6870T: git git://linuxtv.org/media_tree.git
6871S: Maintained
6872F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006873
Jiri Benc64a327a2007-05-05 11:47:08 -07006874MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006875M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006876L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006877W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006878T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6879T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006881F: Documentation/networking/mac80211-injection.txt
6882F: include/net/mac80211.h
6883F: net/mac80211/
Johannes Berg2af8c4d2016-02-26 10:50:34 +01006884F: drivers/net/wireless/mac80211_hwsim.[ch]
Jiri Benc64a327a2007-05-05 11:47:08 -07006885
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006886MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006887M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006888L: netdev@vger.kernel.org
6889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006890F: drivers/net/macvlan.c
6891F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006892
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306893MAILBOX API
6894M: Jassi Brar <jassisinghbrar@gmail.com>
6895L: linux-kernel@vger.kernel.org
6896S: Maintained
6897F: drivers/mailbox/
6898F: include/linux/mailbox_client.h
6899F: include/linux/mailbox_controller.h
6900
Michael Kerriskfaf16682005-07-31 22:34:47 -07006901MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006902M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006903W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006904L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006905S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006906
Russell King8427def2014-02-28 22:40:53 +00006907MARVELL ARMADA DRM SUPPORT
6908M: Russell King <rmk+kernel@arm.linux.org.uk>
6909S: Maintained
6910F: drivers/gpu/drm/armada/
6911
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006912MARVELL 88E6352 DSA support
6913M: Guenter Roeck <linux@roeck-us.net>
6914S: Maintained
6915F: drivers/net/dsa/mv88e6352.c
6916
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006917MARVELL CRYPTO DRIVER
6918M: Boris Brezillon <boris.brezillon@free-electrons.com>
6919M: Arnaud Ebalard <arno@natisbad.org>
6920F: drivers/crypto/marvell/
6921S: Maintained
6922L: linux-crypto@vger.kernel.org
6923
stephen hemminger44c14c12012-04-02 12:59:47 +00006924MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6925M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006926M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006927L: netdev@vger.kernel.org
6928S: Maintained
6929F: drivers/net/ethernet/marvell/sk*
6930
Stefano Brivio74cda162007-11-19 20:27:46 +01006931MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006932L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006933S: Orphan
Kalle Valof988d642015-11-17 21:07:19 +02006934F: drivers/net/wireless/marvell/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006935
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006936MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006937M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006938L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006939S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006940F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006941F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006943MARVELL MVNETA ETHERNET DRIVER
6944M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6945L: netdev@vger.kernel.org
6946S: Maintained
6947F: drivers/net/ethernet/marvell/mvneta.*
6948
Bing Zhaofcad5842011-07-13 13:11:58 -07006949MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006950M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306951M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006952L: linux-wireless@vger.kernel.org
6953S: Maintained
Kalle Valo277b0242015-11-17 21:14:51 +02006954F: drivers/net/wireless/marvell/mwifiex/
Bing Zhaofcad5842011-07-13 13:11:58 -07006955
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006956MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006957M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006958L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006959S: Odd Fixes
Kalle Valode60f1d2015-11-17 21:18:12 +02006960F: drivers/net/wireless/marvell/mwl8k.c
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006961
Pierre Ossman2a695672009-03-16 19:52:26 +01006962MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006963M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006964S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006965F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006966
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006968L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006969S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006970F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006971F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972
Guenter Roeckca462082012-06-01 23:28:23 -07006973MAX16065 HARDWARE MONITOR DRIVER
6974M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006975L: linux-hwmon@vger.kernel.org
Guenter Roeckca462082012-06-01 23:28:23 -07006976S: Maintained
6977F: Documentation/hwmon/max16065
6978F: drivers/hwmon/max16065.c
6979
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006980MAX20751 HARDWARE MONITOR DRIVER
6981M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006982L: linux-hwmon@vger.kernel.org
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006983S: Maintained
6984F: Documentation/hwmon/max20751
6985F: drivers/hwmon/max20751.c
6986
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006987MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006988M: "Hans J. Koch" <hjk@hansjkoch.de>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006989L: linux-hwmon@vger.kernel.org
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006991F: Documentation/hwmon/max6650
6992F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006993
Guenter Roecke89ab512013-03-08 08:13:09 -08006994MAX6697 HARDWARE MONITOR DRIVER
6995M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07006996L: linux-hwmon@vger.kernel.org
Guenter Roecke89ab512013-03-08 08:13:09 -08006997S: Maintained
6998F: Documentation/hwmon/max6697
6999F: Documentation/devicetree/bindings/i2c/max6697.txt
7000F: drivers/hwmon/max6697.c
7001F: include/linux/platform_data/max6697.h
7002
Krzysztof Kozlowskif8f847b52015-01-20 11:00:56 +01007003MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7004M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
7005L: linux-pm@vger.kernel.org
7006S: Supported
7007F: drivers/power/max14577_charger.c
7008F: drivers/power/max77693_charger.c
7009
Javier Martinez Canillas38114052015-07-17 10:17:58 +02007010MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7011M: Javier Martinez Canillas <javier@osg.samsung.com>
7012L: linux-kernel@vger.kernel.org
7013S: Supported
Javier Martinez Canillas96173cc2016-02-12 01:14:23 -03007014F: drivers/*/*max77802*.c
Javier Martinez Canillas38114052015-07-17 10:17:58 +02007015F: Documentation/devicetree/bindings/*/*max77802.txt
7016F: include/dt-bindings/*/*max77802.h
7017
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007018MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7019M: Chanwoo Choi <cw00.choi@samsung.com>
7020M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
7021L: linux-kernel@vger.kernel.org
7022S: Supported
7023F: drivers/*/max14577.c
Javier Martinez Canillas0998a432016-02-15 11:24:58 -03007024F: drivers/*/max77686*.c
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007025F: drivers/*/max77693.c
7026F: drivers/extcon/extcon-max14577.c
7027F: drivers/extcon/extcon-max77693.c
7028F: drivers/rtc/rtc-max77686.c
7029F: drivers/clk/clk-max77686.c
7030F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02007031F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08007032F: Documentation/devicetree/bindings/mfd/max77693.txt
7033F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
7034F: include/linux/mfd/max14577*.h
7035F: include/linux/mfd/max77686*.h
7036F: include/linux/mfd/max77693*.h
7037
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03007038MAXIRADIO FM RADIO RECEIVER DRIVER
7039M: Hans Verkuil <hverkuil@xs4all.nl>
7040L: linux-media@vger.kernel.org
7041T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007042W: https://linuxtv.org
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03007043S: Maintained
7044F: drivers/media/radio/radio-maxiradio*
7045
Peter Rosinc05dc2c2015-09-23 16:26:23 +02007046MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7047M: Peter Rosin <peda@axentia.se>
7048L: linux-iio@vger.kernel.org
7049S: Maintained
7050F: drivers/iio/potentiometer/mcp4531.c
7051
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03007052MEDIA DRIVERS FOR RENESAS - VSP1
7053M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7054L: linux-media@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09007055L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03007056T: git git://linuxtv.org/media_tree.git
7057S: Supported
7058F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
7059F: drivers/media/platform/vsp1/
7060
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03007061MEDIA DRIVERS FOR ASCOT2E
7062M: Sergey Kozlov <serjk@netup.ru>
7063L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007064W: https://linuxtv.org
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03007065W: http://netup.tv/
7066T: git git://linuxtv.org/media_tree.git
7067S: Supported
7068F: drivers/media/dvb-frontends/ascot2e*
7069
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03007070MEDIA DRIVERS FOR CXD2841ER
7071M: Sergey Kozlov <serjk@netup.ru>
7072L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007073W: https://linuxtv.org
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03007074W: http://netup.tv/
7075T: git git://linuxtv.org/media_tree.git
7076S: Supported
7077F: drivers/media/dvb-frontends/cxd2841er*
7078
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03007079MEDIA DRIVERS FOR HORUS3A
7080M: Sergey Kozlov <serjk@netup.ru>
7081L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007082W: https://linuxtv.org
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03007083W: http://netup.tv/
7084T: git git://linuxtv.org/media_tree.git
7085S: Supported
7086F: drivers/media/dvb-frontends/horus3a*
7087
Kozlov Sergeye0252732015-07-28 11:33:02 -03007088MEDIA DRIVERS FOR LNBH25
7089M: Sergey Kozlov <serjk@netup.ru>
7090L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007091W: https://linuxtv.org
Kozlov Sergeye0252732015-07-28 11:33:02 -03007092W: http://netup.tv/
7093T: git git://linuxtv.org/media_tree.git
7094S: Supported
7095F: drivers/media/dvb-frontends/lnbh25*
7096
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03007097MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7098M: Sergey Kozlov <serjk@netup.ru>
7099L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007100W: https://linuxtv.org
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03007101W: http://netup.tv/
7102T: git git://linuxtv.org/media_tree.git
7103S: Supported
7104F: drivers/media/pci/netup_unidvb/*
7105
Joe Perches127c49a2009-04-08 08:34:04 -07007106MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02007107M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07007108P: LinuxTV.org Project
7109L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007110W: https://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007111Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007112T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07007113S: Maintained
7114F: Documentation/dvb/
7115F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007116F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007117F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007118F: drivers/staging/media/
Mauro Carvalho Chehabeb4b0ec2015-11-16 08:35:53 -02007119F: include/linux/platform_data/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007120F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007121F: include/uapi/linux/dvb/
7122F: include/uapi/linux/videodev2.h
7123F: include/uapi/linux/media.h
7124F: include/uapi/linux/v4l2-*
7125F: include/uapi/linux/meye.h
7126F: include/uapi/linux/ivtv*
7127F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007128
John Crispin0c272fc2016-03-08 11:29:57 +01007129MEDIATEK ETHERNET DRIVER
7130M: Felix Fietkau <nbd@openwrt.org>
7131M: John Crispin <blogic@openwrt.org>
7132L: netdev@vger.kernel.org
7133S: Maintained
7134F: drivers/net/ethernet/mediatek/
7135
Jakub Kicinskic869f772015-05-26 11:16:00 +02007136MEDIATEK MT7601U WIRELESS LAN DRIVER
7137M: Jakub Kicinski <kubakici@wp.pl>
7138L: linux-wireless@vger.kernel.org
7139S: Maintained
7140F: drivers/net/wireless/mediatek/mt7601u/
7141
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307142MEGARAID SCSI/SAS DRIVERS
7143M: Kashyap Desai <kashyap.desai@avagotech.com>
7144M: Sumit Saxena <sumit.saxena@avagotech.com>
7145M: Uday Lingala <uday.lingala@avagotech.com>
7146L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02007147L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307148W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007150F: Documentation/scsi/megaraid.txt
7151F: drivers/scsi/megaraid.*
7152F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007153
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007154MELLANOX ETHERNET DRIVER (mlx4_en)
Or Gerlitze7523a492015-11-17 18:25:07 +02007155M: Eugenia Emantayev <eugenia@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007156L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007157S: Supported
7158W: http://www.mellanox.com
7159Q: http://patchwork.ozlabs.org/project/netdev/list/
7160F: drivers/net/ethernet/mellanox/mlx4/en_*
7161
Or Gerlitze7523a492015-11-17 18:25:07 +02007162MELLANOX ETHERNET DRIVER (mlx5e)
7163M: Saeed Mahameed <saeedm@mellanox.com>
7164L: netdev@vger.kernel.org
7165S: Supported
7166W: http://www.mellanox.com
7167Q: http://patchwork.ozlabs.org/project/netdev/list/
7168F: drivers/net/ethernet/mellanox/mlx5/core/en_*
7169
Jiri Pirko93c1edb2015-07-29 23:33:46 +02007170MELLANOX ETHERNET SWITCH DRIVERS
7171M: Jiri Pirko <jiri@mellanox.com>
7172M: Ido Schimmel <idosch@mellanox.com>
7173L: netdev@vger.kernel.org
7174S: Supported
7175W: http://www.mellanox.com
7176Q: http://patchwork.ozlabs.org/project/netdev/list/
7177F: drivers/net/ethernet/mellanox/mlxsw/
7178
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07007179MEMBARRIER SUPPORT
7180M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7181M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7182L: linux-kernel@vger.kernel.org
7183S: Supported
7184F: kernel/membarrier.c
7185F: include/uapi/linux/membarrier.h
7186
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007187MEMORY MANAGEMENT
7188L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007189W: http://www.linux-mm.org
7190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007191F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08007192F: include/linux/gfp.h
7193F: include/linux/mmzone.h
7194F: include/linux/memory_hotplug.h
7195F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07007196F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007197
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04007198MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07007199M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08007200M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007202W: http://www.linux-mtd.infradead.org/
7203Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08007204T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07007205T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007207F: drivers/mtd/
7208F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007209F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007211MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007212M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007213L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007214S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007215F: drivers/watchdog/mena21_wdt.c
7216
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007217MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007218M: Johannes Thumshirn <morbidrsa@gmail.com>
7219S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007220F: drivers/mcb/
7221F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02007222F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007223
Andreas Werner48b490d2014-09-15 09:36:30 +02007224MEN F21BMC (Board Management Controller)
7225M: Andreas Werner <andreas.werner@men.de>
7226S: Supported
7227F: drivers/mfd/menf21bmc.c
7228F: drivers/watchdog/menf21bmc_wdt.c
7229F: drivers/leds/leds-menf21bmc.c
7230F: drivers/hwmon/menf21bmc_hwmon.c
7231F: Documentation/hwmon/menf21bmc
7232
James Hogan12285942012-10-10 12:59:49 +01007233METAG ARCHITECTURE
7234M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01007235L: linux-metag@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08007236T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
James Hoganf23d0e22015-11-09 18:40:59 +00007237S: Odd Fixes
James Hogan12285942012-10-10 12:59:49 +01007238F: arch/metag/
7239F: Documentation/metag/
7240F: Documentation/devicetree/bindings/metag/
Rob Herring2d799dd2015-11-05 13:40:40 -06007241F: Documentation/devicetree/bindings/interrupt-controller/img,*
James Hogana2c5d4e2012-10-09 10:54:39 +01007242F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01007243F: drivers/irqchip/irq-metag.c
7244F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01007245F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01007246
Michal Simekc6375b02009-03-27 14:25:52 +01007247MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07007248M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01007249W: http://www.monstr.eu/fdt/
7250T: git git://git.monstr.eu/linux-2.6-microblaze.git
7251S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02007252F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253
Chen Yu2508a452015-08-18 23:30:25 +08007254MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7255M: Chen Yu <yu.c.chen@intel.com>
7256L: platform-driver-x86@vger.kernel.org
7257S: Supported
7258F: drivers/platform/x86/surfacepro3_button.c
7259
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007261M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007263F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264
7265MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07007266M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01007268W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00007269T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007270Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007272F: Documentation/mips/
7273F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007274
Hans Verkuil08b76202012-11-23 07:15:42 -03007275MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7276M: Hans Verkuil <hverkuil@xs4all.nl>
7277L: linux-media@vger.kernel.org
7278T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007279W: https://linuxtv.org
Hans Verkuil08b76202012-11-23 07:15:42 -03007280S: Odd Fixes
7281F: drivers/media/radio/radio-miropcm20*
7282
Or Gerlitzc09befc2015-12-23 18:30:58 +02007283MELLANOX MLX4 core VPI driver
7284M: Yishai Hadas <yishaih@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007285L: netdev@vger.kernel.org
7286L: linux-rdma@vger.kernel.org
7287W: http://www.mellanox.com
7288Q: http://patchwork.ozlabs.org/project/netdev/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007289S: Supported
7290F: drivers/net/ethernet/mellanox/mlx4/
7291F: include/linux/mlx4/
7292
7293MELLANOX MLX4 IB driver
7294M: Yishai Hadas <yishaih@mellanox.com>
7295L: linux-rdma@vger.kernel.org
7296W: http://www.mellanox.com
Eli Cohene126ba92013-07-07 17:25:49 +03007297Q: http://patchwork.kernel.org/project/linux-rdma/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007298S: Supported
7299F: drivers/infiniband/hw/mlx4/
7300F: include/linux/mlx4/
7301
Or Gerlitz595a4d82015-12-23 18:30:57 +02007302MELLANOX MLX5 core VPI driver
7303M: Matan Barak <matanb@mellanox.com>
7304M: Leon Romanovsky <leonro@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007305L: netdev@vger.kernel.org
7306L: linux-rdma@vger.kernel.org
7307W: http://www.mellanox.com
7308Q: http://patchwork.ozlabs.org/project/netdev/list/
Eli Cohene126ba92013-07-07 17:25:49 +03007309S: Supported
7310F: drivers/net/ethernet/mellanox/mlx5/core/
7311F: include/linux/mlx5/
7312
Or Gerlitz595a4d82015-12-23 18:30:57 +02007313MELLANOX MLX5 IB driver
7314M: Matan Barak <matanb@mellanox.com>
7315M: Leon Romanovsky <leonro@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007316L: linux-rdma@vger.kernel.org
7317W: http://www.mellanox.com
7318Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchesb75f0052014-03-03 15:38:37 -08007319S: Supported
Joe Perchesb75f0052014-03-03 15:38:37 -08007320F: drivers/infiniband/hw/mlx5/
Or Gerlitz595a4d82015-12-23 18:30:57 +02007321F: include/linux/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007322
Crt Mori764589b2015-08-17 19:34:33 +02007323MELEXIS MLX90614 DRIVER
7324M: Crt Mori <cmo@melexis.com>
7325L: linux-iio@vger.kernel.org
7326W: http://www.melexis.com
7327S: Supported
7328F: drivers/iio/temperature/mlx90614.c
7329
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007330MN88472 MEDIA DRIVER
7331M: Antti Palosaari <crope@iki.fi>
7332L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007333W: https://linuxtv.org
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007334W: http://palosaari.fi/linux/
7335Q: http://patchwork.linuxtv.org/project/linux-media/list/
7336T: git git://linuxtv.org/anttip/media_tree.git
7337S: Maintained
7338F: drivers/staging/media/mn88472/
7339F: drivers/media/dvb-frontends/mn88472.h
7340
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007341MN88473 MEDIA DRIVER
7342M: Antti Palosaari <crope@iki.fi>
7343L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007344W: https://linuxtv.org
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007345W: http://palosaari.fi/linux/
7346Q: http://patchwork.linuxtv.org/project/linux-media/list/
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007347S: Maintained
Antti Palosaari877ba502016-02-05 08:04:48 +02007348F: drivers/media/dvb-frontends/mn88473*
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007349
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007351M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007353F: include/linux/module.h
7354F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355
7356MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007358S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007359F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007360F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007361F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362
Jiri Slabyb9705b602008-04-30 00:53:48 -07007363MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007364M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007366F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007367F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007368
Alexey Klimov889b2f82012-11-16 17:43:59 -03007369MR800 AVERMEDIA USB FM RADIO DRIVER
7370M: Alexey Klimov <klimov.linux@gmail.com>
7371L: linux-media@vger.kernel.org
7372T: git git://linuxtv.org/media_tree.git
7373S: Maintained
7374F: drivers/media/radio/radio-mr800.c
7375
Alan Ottd7155692014-08-16 17:09:03 -04007376MRF24J40 IEEE 802.15.4 RADIO DRIVER
7377M: Alan Ott <alan@signal11.us>
7378L: linux-wpan@vger.kernel.org
7379S: Maintained
7380F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007381F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007382
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007383MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007384M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007385L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007387F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007388
Anisse Astier0f1006b2009-12-17 11:28:49 +01007389MSI WMI SUPPORT
Matthew Garrettd09448532010-02-11 10:40:13 -05007390L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007391S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007392F: drivers/platform/x86/msi-wmi.c
7393
Antti Palosaari19a628a02014-02-02 23:51:30 -03007394MSI001 MEDIA DRIVER
7395M: Antti Palosaari <crope@iki.fi>
7396L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007397W: https://linuxtv.org
Antti Palosaari19a628a02014-02-02 23:51:30 -03007398W: http://palosaari.fi/linux/
7399Q: http://patchwork.linuxtv.org/project/linux-media/list/
7400T: git git://linuxtv.org/anttip/media_tree.git
7401S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007402F: drivers/media/tuners/msi001*
Antti Palosaari19a628a02014-02-02 23:51:30 -03007403
Antti Palosaari75705892014-07-13 21:35:47 -03007404MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007405M: Antti Palosaari <crope@iki.fi>
7406L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007407W: https://linuxtv.org
Antti Palosaari2c572132014-02-02 23:55:12 -03007408W: http://palosaari.fi/linux/
7409Q: http://patchwork.linuxtv.org/project/linux-media/list/
7410T: git git://linuxtv.org/anttip/media_tree.git
7411S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007412F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007413
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007414MSYSTEMS DISKONCHIP G3 MTD DRIVER
7415M: Robert Jarzmik <robert.jarzmik@free.fr>
7416L: linux-mtd@lists.infradead.org
7417S: Maintained
7418F: drivers/mtd/devices/docg3*
7419
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007420MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007421M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7422L: linux-media@vger.kernel.org
7423T: git git://linuxtv.org/media_tree.git
7424S: Maintained
7425F: drivers/media/i2c/mt9m032.c
Mauro Carvalho Chehabb5dcee222015-11-10 12:01:44 -02007426F: include/media/i2c/mt9m032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007427
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007428MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007429M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7430L: linux-media@vger.kernel.org
7431T: git git://linuxtv.org/media_tree.git
7432S: Maintained
7433F: drivers/media/i2c/mt9p031.c
Mauro Carvalho Chehabb5dcee222015-11-10 12:01:44 -02007434F: include/media/i2c/mt9p031.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007435
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007436MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007437M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7438L: linux-media@vger.kernel.org
7439T: git git://linuxtv.org/media_tree.git
7440S: Maintained
7441F: drivers/media/i2c/mt9t001.c
Mauro Carvalho Chehabb5dcee222015-11-10 12:01:44 -02007442F: include/media/i2c/mt9t001.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007443
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007444MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007445M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7446L: linux-media@vger.kernel.org
7447T: git git://linuxtv.org/media_tree.git
7448S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007449F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007450F: drivers/media/i2c/mt9v032.c
Mauro Carvalho Chehabb5dcee222015-11-10 12:01:44 -02007451F: include/media/i2c/mt9v032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007452
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007453MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007454M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007455T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007456S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007457F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007458F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007459
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007460MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007461M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007462L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007463T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007465F: drivers/mmc/
7466F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007467F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007468
David Brownell15a05802007-08-08 09:12:54 -07007469MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007470S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007471F: drivers/mmc/host/mmc_spi.c
7472F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007473
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007475M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007477F: Documentation/sound/oss/MultiSound
7478F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479
Jiri Slabyd7354102006-12-08 02:38:35 -08007480MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007481S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007482F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007483F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007484
Felipe Balbi550a7372008-07-24 12:27:36 +03007485MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbi3b243512016-02-19 11:04:55 +02007486M: Bin Liu <b-liu@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007487L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007488T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007490F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007491
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007492MXL5007T MEDIA DRIVER
7493M: Michael Krufky <mkrufky@linuxtv.org>
7494L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007495W: https://linuxtv.org
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007496W: http://github.com/mkrufky
7497Q: http://patchwork.linuxtv.org/project/linux-media/list/
7498T: git git://linuxtv.org/mkrufky/tuners.git
7499S: Maintained
7500F: drivers/media/tuners/mxl5007t.*
7501
Brice Goglin2d3cf582008-05-17 12:45:36 +02007502MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007503M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007504L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007505W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007506S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007507F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007508
Boris BREZILLON9df4f912016-03-09 21:57:24 +01007509NAND FLASH SUBSYSTEM
7510M: Boris Brezillon <boris.brezillon@free-electrons.com>
7511R: Richard Weinberger <richard@nod.at>
7512L: linux-mtd@lists.infradead.org
7513W: http://www.linux-mtd.infradead.org/
7514Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
7515T: git git://github.com/linux-nand/linux.git
7516S: Maintained
7517F: drivers/mtd/nand/
7518F: include/linux/mtd/nand*.h
7519
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007521S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007522F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523
Daniel Mack23dc05a2011-05-18 11:28:38 +02007524NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7525M: Daniel Mack <zonque@gmail.com>
7526S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007527L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007528W: http://www.native-instruments.com
7529F: sound/usb/caiaq/
7530
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007532M: Petr Vandrovec <petr@vandrovec.name>
7533S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007534F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535
Finn Thaina79b0322014-05-05 15:35:30 +10007536NCR 5380 SCSI DRIVERS
7537M: Finn Thain <fthain@telegraphics.com.au>
7538M: Michael Schmitz <schmitzmic@gmail.com>
7539L: linux-scsi@vger.kernel.org
7540S: Maintained
7541F: Documentation/scsi/g_NCR5380.txt
7542F: drivers/scsi/NCR5380.*
7543F: drivers/scsi/arm/cumana_1.c
7544F: drivers/scsi/arm/oak.c
7545F: drivers/scsi/atari_NCR5380.c
7546F: drivers/scsi/atari_scsi.*
7547F: drivers/scsi/dmx3191d.c
7548F: drivers/scsi/dtc.*
7549F: drivers/scsi/g_NCR5380.*
7550F: drivers/scsi/g_NCR5380_mmio.c
7551F: drivers/scsi/mac_scsi.*
7552F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007553F: drivers/scsi/sun3_scsi.*
7554F: drivers/scsi/sun3_scsi_vme.c
7555F: drivers/scsi/t128.*
7556
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007558M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559L: linux-scsi@vger.kernel.org
7560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007561F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007563NCT6775 HARDWARE MONITOR DRIVER
7564M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07007565L: linux-hwmon@vger.kernel.org
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007566S: Maintained
7567F: Documentation/hwmon/nct6775
7568F: drivers/hwmon/nct6775.c
7569
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007570NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007571M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007572L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007573W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007574S: Supported
7575F: drivers/infiniband/hw/nes/
7576
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007577NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007578M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger34302842016-04-05 13:43:53 -07007579L: netem@lists.linux-foundation.org (moderated for non-subscribers)
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007581F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007582
Jon Masonb2f5a052010-07-15 08:47:27 +00007583NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007584M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007585L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007587F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007588F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007589F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007590
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007591NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007592M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007593M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007594M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007595L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007596L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597W: http://www.netfilter.org/
7598W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007599Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7600T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7601T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007603F: include/linux/netfilter*
7604F: include/linux/netfilter/
7605F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007606F: include/uapi/linux/netfilter*
7607F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007608F: net/*/netfilter.c
7609F: net/*/netfilter/
7610F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007611F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612
Paul Moore4cc67732006-09-25 15:57:13 -07007613NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007614M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007615W: http://netlabel.sf.net
7616L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007617S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007618F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007619F: include/net/netlabel.h
7620F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007621
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007623M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007625W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007627F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007628F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007629F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630
Jakub Kicinski4c352362015-12-01 14:55:22 +00007631NETRONOME ETHERNET DRIVERS
7632M: Jakub Kicinski <jakub.kicinski@netronome.com>
Jakub Kicinski4c352362015-12-01 14:55:22 +00007633L: oss-drivers@netronome.com
7634S: Maintained
7635F: drivers/net/ethernet/netronome/
7636
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007637NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007638M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007640L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007641T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007642F: Documentation/blockdev/nbd.txt
7643F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007644F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645
Neil Horman6e436502009-10-05 03:56:55 +00007646NETWORK DROP MONITOR
7647M: Neil Horman <nhorman@tuxdriver.com>
7648L: netdev@vger.kernel.org
7649S: Maintained
7650W: https://fedorahosted.org/dropwatch/
7651F: net/core/drop_monitor.c
7652
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007654M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007655L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007656W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007657Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007658T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7659T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007661F: net/
7662F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007663F: include/linux/in.h
7664F: include/linux/net.h
7665F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007666F: include/uapi/linux/in.h
7667F: include/uapi/linux/net.h
7668F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007669F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007670F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007671F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007672F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007673F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674
7675NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007676M: "David S. Miller" <davem@davemloft.net>
7677M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007678M: James Morris <jmorris@namei.org>
7679M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7680M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007681L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007682T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007684F: net/ipv4/
7685F: net/ipv6/
7686F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007687F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688
David S. Miller73b76562012-10-16 14:08:40 -04007689NETWORKING [IPSEC]
7690M: Steffen Klassert <steffen.klassert@secunet.com>
7691M: Herbert Xu <herbert@gondor.apana.org.au>
7692M: "David S. Miller" <davem@davemloft.net>
7693L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007694T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7695T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007696S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007697F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007698F: net/xfrm/
7699F: net/key/
7700F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007701F: net/ipv4/esp4.c
7702F: net/ipv4/ah4.c
7703F: net/ipv4/ipcomp.c
7704F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007705F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007706F: net/ipv6/esp6.c
7707F: net/ipv6/ah6.c
7708F: net/ipv6/ipcomp6.c
7709F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007710F: include/uapi/linux/xfrm.h
7711F: include/net/xfrm.h
7712
James Morris10e2ff12007-08-25 14:41:28 -07007713NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007714M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007715L: netdev@vger.kernel.org
7716S: Maintained
7717
John W. Linville29f8f632006-01-18 14:52:48 -08007718NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007719L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007720Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007721
Joe Perches788873a2009-04-16 09:38:45 +00007722NETWORKING DRIVERS
7723L: netdev@vger.kernel.org
7724W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007725Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007726T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7727T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007728S: Odd Fixes
7729F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007730F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007731F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007732F: include/linux/etherdevice.h
7733F: include/linux/fcdevice.h
7734F: include/linux/fddidevice.h
7735F: include/linux/hippidevice.h
7736F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007737F: include/uapi/linux/if_*
7738F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007739
John W. Linville0e324cf2014-12-17 12:07:05 -05007740NETWORKING DRIVERS (WIRELESS)
7741M: Kalle Valo <kvalo@codeaurora.org>
7742L: linux-wireless@vger.kernel.org
7743Q: http://patchwork.kernel.org/project/linux-wireless/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08007744T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7745T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
John W. Linville0e324cf2014-12-17 12:07:05 -05007746S: Maintained
7747F: drivers/net/wireless/
7748
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007749NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007750M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007751M: Sony Chacko <sony.chacko@qlogic.com>
7752M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007753L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007754W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007755S: Supported
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07007756F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007757
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007758NFC SUBSYSTEM
7759M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7760M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7761M: Samuel Ortiz <sameo@linux.intel.com>
7762L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007763L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007764S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007765F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007766F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007767F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007768F: drivers/nfc/
Christophe Ricard397d6492015-12-23 23:45:21 +01007769F: include/linux/platform_data/nfcmrvl.h
7770F: include/linux/platform_data/nxp-nci.h
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007771F: include/linux/platform_data/pn544.h
Christophe Ricard397d6492015-12-23 23:45:21 +01007772F: include/linux/platform_data/st21nfca.h
7773F: include/linux/platform_data/st-nci.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007774F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007776NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007777M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007778M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007779L: linux-nfs@vger.kernel.org
7780W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007781T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007783F: fs/lockd/
7784F: fs/nfs/
7785F: fs/nfs_common/
7786F: net/sunrpc/
7787F: include/linux/lockd/
7788F: include/linux/nfs*
7789F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007790F: include/uapi/linux/nfs*
7791F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007793NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007794M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007795L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007796W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007797T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007798S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007799F: Documentation/filesystems/nilfs2.txt
7800F: fs/nilfs2/
7801F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007802F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007803
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007805M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: Documentation/scsi/NinjaSCSI.txt
7809F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810
7811NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007812M: GOTO Masanori <gotom@debian.or.jp>
7813M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007816F: Documentation/scsi/NinjaSCSI.txt
7817F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007819NIOS2 ARCHITECTURE
7820M: Ley Foon Tan <lftan@altera.com>
7821L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007822T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007823S: Maintained
7824F: arch/nios2/
7825
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007826NOKIA N900 POWER SUPPLY DRIVERS
Sebastian Reichele35a49b2016-01-17 21:36:03 +01007827R: Pali Rohár <pali.rohar@gmail.com>
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007828F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007829F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007830F: include/linux/power/isp1704_charger.h
7831F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007832F: drivers/power/bq27xxx_battery.c
Sebastian Reichele35a49b2016-01-17 21:36:03 +01007833F: drivers/power/bq27xxx_battery_i2c.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007834F: drivers/power/isp1704_charger.c
7835F: drivers/power/rx51_battery.c
7836
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007837NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007838M: Jon Mason <jdmason@kudzu.us>
7839M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007840M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007841L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007842S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007843W: https://github.com/jonmason/ntb/wiki
7844T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007845F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007846F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007847F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007848F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007849
Allen Hubbee26a5842015-04-09 10:33:20 -04007850NTB INTEL DRIVER
7851M: Jon Mason <jdmason@kudzu.us>
7852M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007853L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007854S: Supported
7855W: https://github.com/jonmason/ntb/wiki
7856T: git git://github.com/jonmason/ntb.git
7857F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007858
Xiangliang Yua1b36952016-01-21 19:47:05 +08007859NTB AMD DRIVER
7860M: Xiangliang Yu <Xiangliang.Yu@amd.com>
7861L: linux-ntb@googlegroups.com
7862S: Supported
7863F: drivers/ntb/hw/amd/
7864
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865NTFS FILESYSTEM
7866M: Anton Altaparmakov <anton@tuxera.com>
7867L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07007868W: http://www.tuxera.com/
Josh Boyer1adc1232005-11-23 15:44:15 -08007869T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007871F: Documentation/filesystems/ntfs.txt
7872F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007874NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007875M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007876L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01007877S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007878F: drivers/video/fbdev/riva/
7879F: drivers/video/fbdev/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880
Matthew Wilcox79461682012-11-10 08:54:53 -05007881NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007882M: Keith Busch <keith.busch@intel.com>
7883M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007884L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007885T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7886W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007887S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007888F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007889F: include/linux/nvme.h
7890
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007891NVMEM FRAMEWORK
7892M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7893M: Maxime Ripard <maxime.ripard@free-electrons.com>
7894S: Maintained
7895F: drivers/nvmem/
7896F: Documentation/devicetree/bindings/nvmem/
7897F: include/linux/nvmem-consumer.h
7898F: include/linux/nvmem-provider.h
7899
Clément Perrochauddece4582015-03-09 11:12:04 +01007900NXP-NCI NFC DRIVER
7901M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7902R: Charles Gorand <charles.gorand@effinnov.com>
7903L: linux-nfc@lists.01.org (moderated for non-subscribers)
7904S: Supported
7905F: drivers/nfc/nxp-nci
7906
Russell Kingf50d7142014-03-03 12:18:14 +00007907NXP TDA998X DRM DRIVER
7908M: Russell King <rmk+kernel@arm.linux.org.uk>
7909S: Supported
7910F: drivers/gpu/drm/i2c/tda998x_drv.c
7911F: include/drm/i2c/tda998x.h
7912
Peter Rosinfbace432014-11-08 14:40:17 +01007913NXP TFA9879 DRIVER
7914M: Peter Rosin <peda@axentia.se>
7915L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7916S: Maintained
7917F: sound/soc/codecs/tfa9879*
7918
Josh Poimboeuf442f04c2016-02-28 22:22:41 -06007919OBJTOOL
7920M: Josh Poimboeuf <jpoimboe@redhat.com>
7921S: Supported
7922F: tools/objtool/
7923
Tony Lindgrenf5525782009-05-28 13:23:53 -07007924OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07007925M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007926L: linux-omap@vger.kernel.org
7927W: http://www.muru.com/linux/omap/
7928W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007929Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007930T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007931S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07007932F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007933F: arch/arm/configs/omap1_defconfig
7934F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007935F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007936F: drivers/irqchip/irq-omap-intc.c
7937F: drivers/mfd/*omap*.c
7938F: drivers/mfd/menelaus.c
7939F: drivers/mfd/palmas.c
7940F: drivers/mfd/tps65217.c
7941F: drivers/mfd/tps65218.c
7942F: drivers/mfd/tps65910.c
7943F: drivers/mfd/twl-core.[ch]
7944F: drivers/mfd/twl4030*.c
7945F: drivers/mfd/twl6030*.c
7946F: drivers/mfd/twl6040*.c
7947F: drivers/regulator/palmas-regulator*.c
7948F: drivers/regulator/pbias-regulator.c
7949F: drivers/regulator/tps65217-regulator.c
7950F: drivers/regulator/tps65218-regulator.c
7951F: drivers/regulator/tps65910-regulator.c
7952F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007953F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007954
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007955OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007956M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007957M: Tony Lindgren <tony@atomide.com>
7958L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007959L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007960S: Maintained
7961F: arch/arm/boot/dts/*omap*
7962F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007963F: arch/arm/boot/dts/*am4*
7964F: arch/arm/boot/dts/*am5*
7965F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007966
Tony Lindgrenf5525782009-05-28 13:23:53 -07007967OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007968M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007969L: linux-omap@vger.kernel.org
7970S: Maintained
7971F: arch/arm/*omap*/*clock*
7972
7973OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman3cf2efd2016-02-24 14:57:36 -08007974M: Kevin Hilman <khilman@kernel.org>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007975L: linux-omap@vger.kernel.org
7976S: Maintained
7977F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007978F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007979
Joe Perchesd21db562013-09-11 14:23:35 -07007980OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007981M: Rajendra Nayak <rnayak@ti.com>
7982M: Paul Walmsley <paul@pwsan.com>
7983L: linux-omap@vger.kernel.org
7984S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007985F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007986
Tony Lindgrenf5525782009-05-28 13:23:53 -07007987OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007988M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007989M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007990L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007991L: linux-omap@vger.kernel.org
7992S: Maintained
7993F: sound/soc/omap/
7994
Tony Lindgren18640192014-11-20 09:13:42 -08007995OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7996M: Roger Quadros <rogerq@ti.com>
7997M: Tony Lindgren <tony@atomide.com>
7998L: linux-omap@vger.kernel.org
7999S: Maintained
8000F: drivers/memory/omap-gpmc.c
8001F: arch/arm/mach-omap2/*gpmc*
8002
Tony Lindgrenf5525782009-05-28 13:23:53 -07008003OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02008004M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008005L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07008006L: linux-omap@vger.kernel.org
8007S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008008F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07008009
Tomi Valkeinen676eec02010-01-07 13:18:04 +02008010OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02008011M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008012L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02008013L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008014S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09008015F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03008016F: Documentation/arm/OMAP/DSS
8017
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03008018OMAP HARDWARE SPINLOCK SUPPORT
8019M: Ohad Ben-Cohen <ohad@wizery.com>
8020L: linux-omap@vger.kernel.org
8021S: Maintained
8022F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03008023
Tony Lindgrenf5525782009-05-28 13:23:53 -07008024OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008025M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07008026L: linux-omap@vger.kernel.org
8027S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008028F: drivers/mmc/host/omap.c
8029
8030OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05308031L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008032L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05308033S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07008034F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07008035
8036OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008037M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07008038S: Maintained
8039F: drivers/char/hw_random/omap-rng.c
8040
Paul Walmsleyf400c822010-12-06 19:08:54 -07008041OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02008042M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07008043M: Paul Walmsley <paul@pwsan.com>
8044L: linux-omap@vger.kernel.org
8045S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08008046F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07008047
Paul Walmsley8633fb32015-01-19 23:49:50 -07008048OMAP HWMOD DATA
8049M: Paul Walmsley <paul@pwsan.com>
8050L: linux-omap@vger.kernel.org
8051S: Maintained
8052F: arch/arm/mach-omap2/omap_hwmod*data*
8053
Paul Walmsleyf400c822010-12-06 19:08:54 -07008054OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02008055M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07008056L: linux-omap@vger.kernel.org
8057S: Maintained
8058F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8059
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03008060OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03008061M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8062L: linux-media@vger.kernel.org
8063S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02008064F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008065F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03008066F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03008067
Tony Lindgrenf5525782009-05-28 13:23:53 -07008068OMAP USB SUPPORT
Tony Lindgrenf5525782009-05-28 13:23:53 -07008069L: linux-usb@vger.kernel.org
8070L: linux-omap@vger.kernel.org
Felipe Balbi3b243512016-02-19 11:04:55 +02008071S: Orphan
Joe Perchesa16fbd62010-08-09 17:20:48 -07008072F: drivers/usb/*/*omap*
8073F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07008074
Kevin Hilman6d994712012-07-16 10:05:07 -07008075OMAP GPIO DRIVER
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03008076M: Grygorii Strashko <grygorii.strashko@ti.com>
Santosh Shilimkar97215802014-10-13 14:16:28 -04008077M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilman3cf2efd2016-02-24 14:57:36 -08008078M: Kevin Hilman <khilman@kernel.org>
Kevin Hilman6d994712012-07-16 10:05:07 -07008079L: linux-omap@vger.kernel.org
8080S: Maintained
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03008081F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
Kevin Hilman6d994712012-07-16 10:05:07 -07008082F: drivers/gpio/gpio-omap.c
8083
Mark Jacksonc351e292013-10-04 09:15:01 +01008084OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8085M: Mark Jackson <mpfj@newflow.co.uk>
8086L: linux-omap@vger.kernel.org
8087S: Maintained
8088F: arch/arm/boot/dts/am335x-nano.dts
8089
Bob Copeland0ad122d2008-07-25 19:45:18 -07008090OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008091M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07008092L: linux-karma-devel@lists.sourceforge.net
8093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008094F: Documentation/filesystems/omfs.txt
8095F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07008096
Harald Weltec1986ee2005-11-13 16:06:29 -08008097OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008098M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08008099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008100F: drivers/char/pcmcia/cm4000_cs.c
8101F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008102F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08008103
Harald Welte77c44ab2005-11-13 16:06:26 -08008104OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008105M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08008106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008107F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08008108
Jonathan Corbet77d51402007-03-22 19:44:17 -03008109OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008110M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008111L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008112T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03008113S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008114F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03008115
Thomas Gleixner431bca72007-05-02 09:31:35 +02008116ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008117M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02008118L: linux-mtd@lists.infradead.org
8119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008120F: drivers/mtd/onenand/
8121F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02008122
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008124M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125L: osst-users@lists.sourceforge.net
8126L: linux-scsi@vger.kernel.org
8127S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07008128F: Documentation/scsi/osst.txt
8129F: drivers/scsi/osst.*
8130F: drivers/scsi/osst_*.h
8131F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008132
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008133OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008134M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01008135L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008137F: Documentation/i2c/busses/i2c-ocores
8138F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008139
Grant Likely860c44c2009-10-26 16:49:49 -07008140OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008141M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07008142M: Frank Rowand <frowand.list@gmail.com>
8143M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07008144L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06008145W: http://www.devicetree.org/
8146T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07008147S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07008148F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07008149F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07008150F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07008151
Grant Likelyf8828202013-07-19 18:57:39 -07008152OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008153M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008154M: Pawel Moll <pawel.moll@arm.com>
8155M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01008156M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05008157M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008158L: devicetree@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008159T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
Grant Likelyf8828202013-07-19 18:57:39 -07008160S: Maintained
8161F: Documentation/devicetree/
8162F: arch/*/boot/dts/
8163F: include/dt-bindings/
8164
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02008165OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8166M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8167L: devicetree@vger.kernel.org
8168S: Maintained
8169F: Documentation/devicetree/dynamic-resolution-notes.txt
8170F: Documentation/devicetree/overlay-notes.txt
8171F: drivers/of/overlay.c
8172F: drivers/of/resolver.c
8173
Jonas Bonn19f9d392011-06-04 22:00:38 +03008174OPENRISC ARCHITECTURE
8175M: Jonas Bonn <jonas@southpole.se>
8176W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02008177L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03008178S: Maintained
8179T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07008180F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03008181
Jesse Grossccb13522011-10-25 19:26:31 -07008182OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07008183M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08008184L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07008185L: dev@openvswitch.org
8186W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07008187S: Maintained
8188F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08008189F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07008190
Viresh Kumar875fa6f2015-11-20 15:57:27 -08008191OPERATING PERFORMANCE POINTS (OPP)
8192M: Viresh Kumar <vireshk@kernel.org>
8193M: Nishanth Menon <nm@ti.com>
8194M: Stephen Boyd <sboyd@codeaurora.org>
8195L: linux-pm@vger.kernel.org
8196S: Maintained
8197T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8198F: drivers/base/power/opp/
8199F: include/linux/pm_opp.h
8200F: Documentation/power/opp.txt
8201F: Documentation/devicetree/bindings/opp/
8202
Clemens Ladischaf399172011-01-10 16:32:54 +01008203OPL4 DRIVER
8204M: Clemens Ladisch <clemens@ladisch.de>
8205L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8206T: git git://git.alsa-project.org/alsa-kernel.git
8207S: Maintained
8208F: sound/drivers/opl4/
8209
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01008211M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008212L: oprofile-list@lists.sf.net
8213S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02008214F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07008215F: arch/*/oprofile/
8216F: drivers/oprofile/
8217F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008218
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008219ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07008220M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08008221M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008222L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08008223W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008224S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008225F: Documentation/filesystems/ocfs2.txt
8226F: Documentation/filesystems/dlmfs.txt
8227F: fs/ocfs2/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008228
Linus Torvalds1da177e2005-04-16 15:20:36 -07008229ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07008230L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008231W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07008232W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01008233S: Orphan
Kalle Valo2be45b62015-11-18 09:57:18 +02008234F: drivers/net/wireless/intersil/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008236OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03008237M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02008238M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02008239L: osd-dev@open-osd.org
8240W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07008241T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02008242S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008243F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07008244F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008245F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02008246
Miklos Szeredief94b182014-11-20 16:39:59 +01008247OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02008248M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01008249L: linux-unionfs@vger.kernel.org
8250T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02008251S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01008252F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02008253F: Documentation/filesystems/overlayfs.txt
8254
Mike Marshall85096162016-01-04 16:38:00 -05008255ORANGEFS FILESYSTEM
8256M: Mike Marshall <hubcap@omnibond.com>
Joe Perchesb39c3cf2016-04-01 14:31:12 -07008257L: pvfs2-developers@beowulf-underground.org (subscribers-only)
Mike Marshall85096162016-01-04 16:38:00 -05008258T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8259S: Supported
8260F: fs/orangefs/
8261F: Documentation/filesystems/orangefs.txt
8262
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008263P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008264M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008265L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008266W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008267S: Maintained
Kalle Valod3466832015-11-18 09:49:59 +02008268F: drivers/net/wireless/intersil/p54/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008269
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008270PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008271M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008272L: netdev@vger.kernel.org
8273S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07008274F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008275
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008276PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008277M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01008278L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008280F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008281
Steffen Klassert48fc2672010-08-13 10:10:46 -04008282PADATA PARALLEL EXECUTION MECHANISM
8283M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04008284L: linux-crypto@vger.kernel.org
8285S: Maintained
8286F: kernel/padata.c
8287F: include/linux/padata.h
8288F: Documentation/padata.txt
8289
Harald Welte709ee532008-09-23 17:46:57 +02008290PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008291M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05008292L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02008293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008294F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02008295
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01008296PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07008297M: David Howells <dhowells@redhat.com>
8298M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01008299L: linux-am33-list@redhat.com (moderated for non-subscribers)
8300W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008302F: Documentation/mn10300/
8303F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01008304
Ksenija Stanojevic305b37b2016-02-03 12:31:49 +01008305PARALLEL LCD/KEYPAD PANEL DRIVER
8306M: Willy Tarreau <willy@haproxy.com>
8307M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8308S: Odd Fixes
8309F: Documentation/misc-devices/lcd-panel-cgram.txt
8310F: drivers/misc/panel.c
8311
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308312PARALLEL PORT SUBSYSTEM
8313M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8314M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008315L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008317F: drivers/parport/
8318F: include/linux/parport*.h
8319F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008320F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308321F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008323PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008324M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008325M: Chris Wright <chrisw@sous-sol.org>
8326M: Alok Kataria <akataria@vmware.com>
8327M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00008328L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008329S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10308330F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07008331F: arch/*/kernel/paravirt*
8332F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07008333
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07008335M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008336L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008338F: Documentation/blockdev/paride.txt
8339F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340
8341PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00008342M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05008343M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00008344L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008346Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008347T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008348T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008350F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008351F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008352F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008353F: drivers/char/agp/parisc-agp.c
8354F: drivers/input/serio/gscps2.c
8355F: drivers/parport/parport_gsc.*
8356F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008357F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008358F: drivers/video/console/sti*
8359F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360
Jim Cromie1662d322006-10-06 00:43:59 -07008361PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008362M: Jim Cromie <jim.cromie@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008363L: linux-hwmon@vger.kernel.org
Jim Cromie1662d322006-10-06 00:43:59 -07008364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008365F: Documentation/hwmon/pc87360
8366F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008367
8368PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008369M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008371F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008372
Jean Delvare1ad107f2010-08-14 21:09:00 +02008373PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008374M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008375L: linux-hwmon@vger.kernel.org
Jean Delvare1ad107f2010-08-14 21:09:00 +02008376S: Maintained
8377F: Documentation/hwmon/pc87427
8378F: drivers/hwmon/pc87427.c
8379
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008380PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008381M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008382S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008383F: drivers/leds/leds-pca9532.c
8384F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008385
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008386PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008387M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008388L: linux-i2c@vger.kernel.org
8389S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008390F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008391
Khalid Aziz3971dae2012-04-12 12:49:13 -07008392PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008393M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008394S: Maintained
8395F: drivers/firmware/pcdp.*
8396
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008397PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008398M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008399L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008401F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008402
Russell Currey78c1cff2016-02-17 17:06:04 +11008403PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8404M: Russell Currey <ruscur@russell.cc>
8405L: linuxppc-dev@lists.ozlabs.org
8406S: Supported
8407F: Documentation/powerpc/eeh-pci-error-recovery.txt
8408F: arch/powerpc/kernel/eeh*.c
8409F: arch/powerpc/platforms/*/eeh*.c
8410F: arch/powerpc/include/*/eeh*.h
8411
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008413M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008414L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008415Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008416T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008418F: Documentation/PCI/
8419F: drivers/pci/
8420F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008421F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008422F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423
Ley Foon Taneaa61112015-10-23 18:27:12 +08008424PCI DRIVER FOR ALTERA PCIE IP
8425M: Ley Foon Tan <lftan@altera.com>
8426L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8427L: linux-pci@vger.kernel.org
8428S: Supported
8429F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8430F: drivers/pci/host/pcie-altera.c
8431
Rob Herringb7e78172015-01-28 10:16:18 -06008432PCI DRIVER FOR ARM VERSATILE PLATFORM
8433M: Rob Herring <robh@kernel.org>
8434L: linux-pci@vger.kernel.org
8435L: linux-arm-kernel@lists.infradead.org
8436S: Maintained
8437F: Documentation/devicetree/bindings/pci/versatile.txt
8438F: drivers/pci/host/pci-versatile.c
8439
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008440PCI DRIVER FOR APPLIEDMICRO XGENE
8441M: Tanmay Inamdar <tinamdar@apm.com>
8442L: linux-pci@vger.kernel.org
8443L: linux-arm-kernel@lists.infradead.org
8444S: Maintained
8445F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8446F: drivers/pci/host/pci-xgene.c
8447
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008448PCI DRIVER FOR FREESCALE LAYERSCAPE
8449M: Minghuan Lian <minghuan.Lian@freescale.com>
8450M: Mingkai Hu <mingkai.hu@freescale.com>
8451M: Roy Zang <tie-fei.zang@freescale.com>
8452L: linuxppc-dev@lists.ozlabs.org
8453L: linux-pci@vger.kernel.org
8454L: linux-arm-kernel@lists.infradead.org
8455S: Maintained
8456F: drivers/pci/host/*layerscape*
8457
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008458PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008459M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008460M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008461L: linux-pci@vger.kernel.org
8462L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8463S: Maintained
8464F: drivers/pci/host/*imx6*
8465
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008466PCI DRIVER FOR TI KEYSTONE
8467M: Murali Karicheri <m-karicheri2@ti.com>
8468L: linux-pci@vger.kernel.org
8469L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8470S: Maintained
8471F: drivers/pci/host/*keystone*
8472
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008473PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8474M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8475M: Jason Cooper <jason@lakedaemon.net>
8476L: linux-pci@vger.kernel.org
8477L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8478S: Maintained
8479F: drivers/pci/host/*mvebu*
8480
Thierry Reding0447cfd2013-08-09 16:49:32 +02008481PCI DRIVER FOR NVIDIA TEGRA
8482M: Thierry Reding <thierry.reding@gmail.com>
8483L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008484L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008485S: Supported
8486F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8487F: drivers/pci/host/pci-tegra.c
8488
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008489PCI DRIVER FOR TI DRA7XX
8490M: Kishon Vijay Abraham I <kishon@ti.com>
8491L: linux-omap@vger.kernel.org
8492L: linux-pci@vger.kernel.org
8493S: Supported
8494F: Documentation/devicetree/bindings/pci/ti-pci.txt
8495F: drivers/pci/host/pci-dra7xx.c
8496
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008497PCI DRIVER FOR RENESAS R-CAR
8498M: Simon Horman <horms@verge.net.au>
8499L: linux-pci@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09008500L: linux-renesas-soc@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008501S: Maintained
8502F: drivers/pci/host/*rcar*
8503
Jingoo Han4af82252013-09-12 20:29:24 +09008504PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008505M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008506L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008507L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8508L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008509S: Maintained
8510F: drivers/pci/host/pci-exynos.c
8511
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008512PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008513M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308514M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008515L: linux-pci@vger.kernel.org
8516S: Maintained
8517F: drivers/pci/host/*designware*
8518
Joao Pinto5a3aa2a2016-03-10 14:44:52 -06008519PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8520M: Joao Pinto <jpinto@synopsys.com>
8521L: linux-pci@vger.kernel.org
8522S: Maintained
8523F: Documentation/devicetree/bindings/pci/designware-pcie.txt
8524F: drivers/pci/host/pcie-designware-plat.c
8525
Will Deaconcf288552014-05-01 12:04:28 +01008526PCI DRIVER FOR GENERIC OF HOSTS
8527M: Will Deacon <will.deacon@arm.com>
8528L: linux-pci@vger.kernel.org
8529L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8530S: Maintained
8531F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
David Daney4e64dbe2016-03-11 15:35:55 -06008532F: drivers/pci/host/pci-host-common.c
Will Deaconcf288552014-05-01 12:04:28 +01008533F: drivers/pci/host/pci-host-generic.c
8534
Keith Busch185a3832016-01-12 13:18:10 -07008535PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8536M: Keith Busch <keith.busch@intel.com>
8537L: linux-pci@vger.kernel.org
8538S: Supported
8539F: arch/x86/pci/vmd.c
8540
Pratyush Anand51b66a62014-02-11 11:39:26 +05308541PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308542M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308543L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308544S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308545F: drivers/pci/host/*spear*
8546
Ley Foon Tanaf1169b2015-10-23 18:27:13 +08008547PCI MSI DRIVER FOR ALTERA MSI IP
8548M: Ley Foon Tan <lftan@altera.com>
8549L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8550L: linux-pci@vger.kernel.org
8551S: Supported
8552F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8553F: drivers/pci/host/pcie-altera-msi.c
8554
Duc Dangdcd19de2015-06-05 15:56:34 -05008555PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8556M: Duc Dang <dhdang@apm.com>
8557L: linux-pci@vger.kernel.org
8558L: linux-arm-kernel@lists.infradead.org
8559S: Maintained
8560F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8561F: drivers/pci/host/pci-xgene-msi.c
8562
Zhou Wang500a1d92015-10-29 20:02:51 -05008563PCIE DRIVER FOR HISILICON
8564M: Zhou Wang <wangzhou1@hisilicon.com>
Gabriele Paoloni5930fe42015-11-27 01:17:05 +08008565M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
Zhou Wang500a1d92015-10-29 20:02:51 -05008566L: linux-pci@vger.kernel.org
8567S: Maintained
8568F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8569F: drivers/pci/host/pcie-hisi.c
8570
Stanimir Varbanov82a82382015-12-18 14:38:57 +02008571PCIE DRIVER FOR QUALCOMM MSM
8572M: Stanimir Varbanov <svarbanov@mm-sol.com>
8573L: linux-pci@vger.kernel.org
8574L: linux-arm-msm@vger.kernel.org
8575S: Maintained
8576F: drivers/pci/host/*qcom*
8577
David Daneyf12b76e2016-03-04 14:31:47 -08008578PCIE DRIVER FOR CAVIUM THUNDERX
8579M: David Daney <david.daney@cavium.com>
8580L: linux-pci@vger.kernel.org
8581L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8582S: Supported
8583F: Documentation/devicetree/bindings/pci/pci-thunder-*
8584F: drivers/pci/host/pci-thunder-*
8585
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008587P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008588L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008589W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Fengguang Wu9f273c22016-01-20 15:03:25 -08008590T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008592F: Documentation/pcmcia/
8593F: drivers/pcmcia/
8594F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595
8596PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008597M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008598L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008600F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601
Steffen Klassert48fc2672010-08-13 10:10:46 -04008602PCRYPT PARALLEL CRYPTO ENGINE
8603M: Steffen Klassert <steffen.klassert@secunet.com>
8604L: linux-crypto@vger.kernel.org
8605S: Maintained
8606F: crypto/pcrypt.c
8607F: include/crypto/pcrypt.h
8608
Tejun Heoe72df0b2010-12-10 17:02:49 +01008609PER-CPU MEMORY ALLOCATOR
8610M: Tejun Heo <tj@kernel.org>
Christoph Lameter93e205a2016-03-17 14:21:15 -07008611M: Christoph Lameter <cl@linux.com>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008612T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8613S: Maintained
8614F: include/linux/percpu*.h
8615F: mm/percpu*.c
8616F: arch/*/include/asm/percpu.h
8617
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008618PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008619M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008621F: include/linux/delayacct.h
8622F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008623
Ingo Molnar57c0c152009-09-21 12:20:38 +02008624PERFORMANCE EVENTS SUBSYSTEM
Peter Zijlstradaecbd2672015-11-16 11:07:44 +01008625M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008626M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008627M: Arnaldo Carvalho de Melo <acme@kernel.org>
Peter Zijlstraa54d6902016-02-26 10:35:45 +01008628R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008629L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008630T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008631S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008632F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008633F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008634F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008635F: arch/*/kernel/perf_event*.c
8636F: arch/*/kernel/*/perf_event*.c
8637F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008638F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008639F: arch/*/kernel/perf_callchain.c
8640F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008641
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008642PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008643M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008644L: linux-abi-devel@lists.sourceforge.net
8645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008646F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008647F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008648
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008649PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008650M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008651S: Supported
8652F: Documentation/networking/phonet.txt
8653F: include/linux/phonet.h
8654F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008655F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008656F: net/phonet/
8657
Linus Torvalds1da177e2005-04-16 15:20:36 -07008658PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008659M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008660L: linux-mtd@lists.infradead.org
8661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008662F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663
Bruno Prémontefdbb102012-07-30 21:39:03 +02008664PICOLCD HID DRIVER
8665M: Bruno Prémont <bonbons@linux-vserver.org>
8666L: linux-input@vger.kernel.org
8667S: Maintained
8668F: drivers/hid/hid-picolcd*
8669
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008670PICOXCELL SUPPORT
8671M: Jamie Iles <jamie@jamieiles.com>
8672L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8673T: git git://github.com/jamieiles/linux-2.6-ji.git
8674S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008675F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008676F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008677F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008678
Linus Walleij2744e8a2011-05-02 20:50:54 +02008679PIN CONTROL SUBSYSTEM
8680M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008681L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008682T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008683S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008684F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008685F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008686
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008687PIN CONTROLLER - ATMEL AT91
8688M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8689L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8690S: Maintained
Alexandre Bellonic654b6bf2014-10-17 11:49:40 +02008691F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008692
Ludovic Desroches33d36902015-09-16 17:36:59 +02008693PIN CONTROLLER - ATMEL AT91 PIO4
8694M: Ludovic Desroches <ludovic.desroches@atmel.com>
8695L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8696L: linux-gpio@vger.kernel.org
8697S: Supported
8698F: drivers/pinctrl/pinctrl-at91-pio4.*
8699
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008700PIN CONTROLLER - INTEL
8701M: Mika Westerberg <mika.westerberg@linux.intel.com>
8702M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8703S: Maintained
8704F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308705
Laurent Pinchart9963b532014-07-02 16:33:31 +02008706PIN CONTROLLER - RENESAS
8707M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Geert Uytterhoeven1a4ca6d2015-12-16 08:47:11 +01008708M: Geert Uytterhoeven <geert+renesas@glider.be>
Simon Horman4a121092016-01-18 10:04:33 +09008709L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart9963b532014-07-02 16:33:31 +02008710S: Maintained
8711F: drivers/pinctrl/sh-pfc/
8712
Doug Andersonb75e60d2013-06-16 15:17:46 -07008713PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008714M: Tomasz Figa <tomasz.figa@gmail.com>
Krzysztof Kozlowski44b03c12016-03-16 09:02:01 +09008715M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
8716M: Sylwester Nawrocki <s.nawrocki@samsung.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8718L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8719S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308720F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008721
Tony Lindgren13cbd902015-12-10 14:27:32 -08008722PIN CONTROLLER - SINGLE
8723M: Tony Lindgren <tony@atomide.com>
8724M: Haojian Zhuang <haojian.zhuang@linaro.org>
8725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8726L: linux-omap@vger.kernel.org
8727S: Maintained
8728F: drivers/pinctrl/pinctrl-single.c
8729
Viresh Kumardeda8282012-03-28 22:27:07 +05308730PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008731M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308732L: spear-devel@list.st.com
8733L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8734W: http://www.st.com/spear
8735S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008736F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308737
Peter Osterlund249a6772005-09-27 21:45:30 -07008738PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008739M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008741F: drivers/block/pktcdvd.c
8742F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008743F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008744
GuanXuetaob31d8272011-01-16 00:35:49 +08008745PKUNITY SOC DRIVERS
8746M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8747W: http://mprc.pku.edu.cn/~guanxuetao/linux
8748S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008749T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008750F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008751F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008752F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008753F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008754
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008755PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008756M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008757L: linux-hwmon@vger.kernel.org
8758W: http://hwmon.wiki.kernel.org/
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008759W: http://www.roeck-us.net/linux/drivers/
8760T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8761S: Maintained
8762F: Documentation/hwmon/pmbus
8763F: drivers/hwmon/pmbus/
8764F: include/linux/i2c/pmbus.h
8765
Anil Ravindranath89a36812009-08-25 17:35:18 -07008766PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008767L: linux-scsi@vger.kernel.org
8768W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008769S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008770F: drivers/scsi/pmcraid.*
8771
jack wangdbf9bfe2009-10-14 16:19:21 +08008772PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008773M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008774M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308775L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008776L: linux-scsi@vger.kernel.org
8777S: Supported
8778F: drivers/scsi/pm8001/
8779
Linus Torvalds1da177e2005-04-16 15:20:36 -07008780POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008781M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008782L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008783T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008785F: fs/timerfd.c
8786F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008787F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008788
Rafael J. Wysocki7b06a6d2015-12-05 01:54:47 +01008789POWER MANAGEMENT CORE
8790M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8791L: linux-pm@vger.kernel.org
8792T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8793S: Supported
8794F: drivers/base/power/
8795F: include/linux/pm.h
8796F: include/linux/pm_*
8797F: include/linux/powercap.h
8798F: drivers/powercap/
8799
Anton Vorontsov3be86142007-07-15 04:43:36 +04008800POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008801M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008802M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008803M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008804L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008805T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008807F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008808F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008809X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008810
Mark Rutland514f1612015-07-31 15:46:20 +01008811POWER STATE COORDINATION INTERFACE (PSCI)
8812M: Mark Rutland <mark.rutland@arm.com>
8813M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8814L: linux-arm-kernel@lists.infradead.org
8815S: Maintained
8816F: drivers/firmware/psci.c
8817F: include/linux/psci.h
8818F: include/uapi/linux/psci.h
8819
Linus Torvalds1da177e2005-04-16 15:20:36 -07008820PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008821M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008823F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824
8825PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008826M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827L: linux-ppp@vger.kernel.org
8828S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008829F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008830
8831PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008832M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008834F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008835F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008836
8837PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008838M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008840F: drivers/net/ppp/pppoe.c
8841F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008842
James Chapmana6d23702007-06-27 15:53:17 -07008843PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008844M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008845S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008846F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008847F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008848F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008849
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008850PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008851M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008852W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8853L: linuxpps@ml.enneenne.com (subscribers-only)
8854S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008855F: Documentation/pps/
8856F: drivers/pps/
8857F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008858
Harry Wei71a6d0a2011-05-11 15:13:33 -07008859PPTP DRIVER
8860M: Dmitry Kozlov <xeb@mail.ru>
8861L: netdev@vger.kernel.org
8862S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008863F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008864W: http://sourceforge.net/projects/accel-pptp
8865
Linus Torvalds1da177e2005-04-16 15:20:36 -07008866PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008867M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008868L: kpreempt-tech@lists.sourceforge.net
8869W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8870S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008871F: Documentation/preempt-locking.txt
8872F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873
8874PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008875M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008876L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008877W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008878S: Obsolete
Kalle Valoc12edfe2015-11-18 09:56:45 +02008879F: drivers/net/wireless/intersil/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008881PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008882M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008883L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008884L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008885S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008886F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008887
Geoff Levandf58a9d12006-11-23 00:46:51 +01008888PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008889M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008890L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008892F: arch/powerpc/boot/ps3*
8893F: arch/powerpc/include/asm/lv1call.h
8894F: arch/powerpc/include/asm/ps3*.h
8895F: arch/powerpc/platforms/ps3/
8896F: drivers/*/ps3*
8897F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008898F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008899F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008900F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008901
Jim Pariscffb4add2009-01-06 11:32:10 +00008902PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008903M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d012015-06-10 18:00:18 +00008904M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008905L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008906S: Maintained
Joe Perches8a3977cb2010-08-09 17:20:49 -07008907F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008908
Anton Vorontsov8defe592012-08-03 18:07:20 -07008909PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008910M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008911M: Colin Cross <ccross@android.com>
8912M: Kees Cook <keescook@chromium.org>
8913M: Tony Luck <tony.luck@intel.com>
8914S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08008915T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Anton Vorontsov8defe592012-08-03 18:07:20 -07008916F: fs/pstore/
8917F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008918F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008919F: drivers/acpi/apei/erst.c
8920
Richard Cochran7fbc4152012-03-10 01:55:53 +00008921PTP HARDWARE CLOCK SUPPORT
8922M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008923L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008924S: Maintained
8925W: http://linuxptp.sourceforge.net/
8926F: Documentation/ABI/testing/sysfs-ptp
8927F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008928F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008929F: drivers/net/phy/dp83640*
8930F: drivers/ptp/*
8931F: include/linux/ptp_cl*
8932
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008933PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008934M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008935M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008936S: Maintained
8937F: include/asm-generic/syscall.h
8938F: include/linux/ptrace.h
8939F: include/linux/regset.h
8940F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008941F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008942F: kernel/ptrace.c
8943
Michael Krufky83202042006-07-03 00:24:18 -07008944PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008945M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008946L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008947L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008948W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008949T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008951F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008952F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008953
Hans de Goede39532e62012-11-04 17:05:59 -03008954PWC WEBCAM DRIVER
8955M: Hans de Goede <hdegoede@redhat.com>
8956L: linux-media@vger.kernel.org
8957T: git git://linuxtv.org/media_tree.git
8958S: Maintained
8959F: drivers/media/usb/pwc/*
8960
Kamil Debski93c090b2014-08-20 11:29:23 +02008961PWM FAN DRIVER
8962M: Kamil Debski <k.debski@samsung.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -07008963L: linux-hwmon@vger.kernel.org
Kamil Debski93c090b2014-08-20 11:29:23 +02008964S: Supported
8965F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8966F: Documentation/hwmon/pwm-fan
8967F: drivers/hwmon/pwm-fan.c
8968
Thierry Reding200efed2012-03-27 13:16:18 +02008969PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008970M: Thierry Reding <thierry.reding@gmail.com>
8971L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008972S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008973T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008974F: Documentation/pwm.txt
8975F: Documentation/devicetree/bindings/pwm/
8976F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008977F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008978F: drivers/video/backlight/pwm_bl.c
8979F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008980
Eric Miao30ec2612008-06-12 15:21:41 -07008981PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008982M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008983M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008984M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008985L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008986T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008987T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008988S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06008989F: arch/arm/boot/dts/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008990F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008991F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008992F: drivers/pcmcia/pxa2xx*
Robert Jarzmik1403ead2015-11-21 19:04:48 +01008993F: drivers/pinctrl/pxa/
Joe Perches9df92e62012-01-10 15:09:06 -08008994F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008995F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008996F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008997F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008998F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008999
Robert Jarzmikf3154a42015-12-18 22:41:34 +01009000PXA GPIO DRIVER
9001M: Robert Jarzmik <robert.jarzmik@free.fr>
9002L: linux-gpio@vger.kernel.org
9003S: Maintained
9004F: drivers/gpio/gpio-pxa.c
9005
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08009006PXA3xx NAND FLASH DRIVER
9007M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9008L: linux-mtd@lists.infradead.org
9009S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07009010F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08009011
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009012MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009013M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08009014M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009016T: git git://github.com/hzhuang1/linux.git
9017T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009018S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -06009019F: arch/arm/boot/dts/mmp*
Haojian Zhuang3f640c62011-12-09 09:58:41 +08009020F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08009021
Pierre Ossman272f1332007-05-14 21:25:26 +02009022PXA MMCI DRIVER
9023S: Orphan
9024
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08009025PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009026M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08009027L: rtc-linux@googlegroups.com
9028S: Maintained
9029
Tadeusz Strukcea40012014-06-05 13:44:39 -07009030QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07009031M: Tadeusz Struk <tadeusz.struk@intel.com>
9032L: qat-linux@intel.com
9033S: Supported
9034F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07009035
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07009036QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04009037M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07009038L: linux-rdma@vger.kernel.org
9039S: Supported
9040F: drivers/infiniband/hw/qib/
9041
Jes Sorensen5e9772b2010-06-30 15:37:38 +02009042QLOGIC QLA1280 SCSI DRIVER
9043M: Michael Reed <mdr@sgi.com>
9044L: linux-scsi@vger.kernel.org
9045S: Maintained
9046F: drivers/scsi/qla1280.[ch]
9047
Linus Torvalds1da177e2005-04-16 15:20:36 -07009048QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb02013-10-30 03:38:28 -04009049M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009050L: linux-scsi@vger.kernel.org
9051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009052F: Documentation/scsi/LICENSE.qla2xxx
9053F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009054
Ravi Anand883c98f2010-04-28 11:45:49 +05309055QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05009056M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05309057L: linux-scsi@vger.kernel.org
9058S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04009059F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05309060F: drivers/scsi/qla4xxx/
9061
Ron Mercer5a4faa872006-07-25 00:40:21 -07009062QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00009063M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009064M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07009065M: linux-driver@qlogic.com
9066L: netdev@vger.kernel.org
9067S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009068F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07009069F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07009070
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009071QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04009072M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009073L: netdev@vger.kernel.org
9074S: Supported
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07009075F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00009076
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009077QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04009078M: Harish Patil <harish.patil@qlogic.com>
9079M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9080M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07009081M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009082L: netdev@vger.kernel.org
9083S: Supported
Jeff Kirsheraa43c2152011-04-08 19:06:30 -07009084F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04009085
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02009086QLOGIC QL4xxx ETHERNET DRIVER
9087M: Yuval Mintz <Yuval.Mintz@qlogic.com>
9088M: Ariel Elior <Ariel.Elior@qlogic.com>
9089M: everest-linux-l2@qlogic.com
9090L: netdev@vger.kernel.org
9091S: Supported
9092F: drivers/net/ethernet/qlogic/qed/
9093F: include/linux/qed/
9094F: drivers/net/ethernet/qlogic/qede/
9095
Linus Torvalds1da177e2005-04-16 15:20:36 -07009096QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009097M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009098W: http://www.alarsen.net/linux/qnx4fs/
9099S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07009100F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009101F: include/uapi/linux/qnx4_fs.h
9102F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009103
Antti Palosaari91952bc2012-10-01 12:28:46 -03009104QT1010 MEDIA DRIVER
9105M: Antti Palosaari <crope@iki.fi>
9106L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009107W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009108W: http://palosaari.fi/linux/
9109Q: http://patchwork.linuxtv.org/project/linux-media/list/
9110T: git git://linuxtv.org/anttip/media_tree.git
9111S: Maintained
9112F: drivers/media/tuners/qt1010*
9113
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05309114QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9115M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9116L: linux-wireless@vger.kernel.org
9117L: ath9k-devel@lists.ath9k.org
9118W: http://wireless.kernel.org/en/users/Drivers/ath9k
9119S: Supported
9120F: drivers/net/wireless/ath/ath9k/
9121
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03009122QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9123M: Kalle Valo <kvalo@qca.qualcomm.com>
9124L: ath10k@lists.infradead.org
9125W: http://wireless.kernel.org/en/users/Drivers/ath10k
Fengguang Wu9f273c22016-01-20 15:03:25 -08009126T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03009127S: Supported
9128F: drivers/net/wireless/ath/ath10k/
9129
Richard Kuo4f4567c2011-10-31 18:56:38 -05009130QUALCOMM HEXAGON ARCHITECTURE
9131M: Richard Kuo <rkuo@codeaurora.org>
9132L: linux-hexagon@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08009133T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
Richard Kuo4f4567c2011-10-31 18:56:38 -05009134S: Supported
9135F: arch/hexagon/
9136
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01009137QUALCOMM WCN36XX WIRELESS DRIVER
9138M: Eugene Krasnikov <k.eugene.e@gmail.com>
9139L: wcn36xx@lists.infradead.org
9140W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
9141T: git git://github.com/KrasnikovEugene/wcn36xx.git
9142S: Supported
9143F: drivers/net/wireless/ath/wcn36xx/
9144
Michael S. Tsirkineeca9a62016-04-05 11:26:44 +03009145QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9146M: Gabriel Somlo <somlo@cmu.edu>
9147M: "Michael S. Tsirkin" <mst@redhat.com>
9148L: qemu-devel@nongnu.org
9149S: Maintained
9150F: drivers/firmware/qemu_fw_cfg.c
9151
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009152RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08009153M: Ilya Dryomov <idryomov@gmail.com>
9154M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06009155M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04009156L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07009157W: http://ceph.com/
9158T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04009159T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009160S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04009161F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07009162F: drivers/block/rbd.c
9163F: drivers/block/rbd_types.h
9164
Linus Torvalds1da177e2005-04-16 15:20:36 -07009165RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009166M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009167L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009168S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009169F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009170F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009171
Hans de Goedec6c9b342012-11-04 17:03:58 -03009172RADIOSHARK RADIO DRIVER
9173M: Hans de Goede <hdegoede@redhat.com>
9174L: linux-media@vger.kernel.org
9175T: git git://linuxtv.org/media_tree.git
9176S: Maintained
9177F: drivers/media/radio/radio-shark.c
9178
9179RADIOSHARK2 RADIO DRIVER
9180M: Hans de Goede <hdegoede@redhat.com>
9181L: linux-media@vger.kernel.org
9182T: git git://linuxtv.org/media_tree.git
9183S: Maintained
9184F: drivers/media/radio/radio-shark2.c
9185F: drivers/media/radio/radio-tea5777.c
9186
Linus Torvalds1da177e2005-04-16 15:20:36 -07009187RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009188M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009189L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009190S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009191F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009192
John Crispina0fd81a2016-01-04 20:28:13 +01009193RALINK MIPS ARCHITECTURE
9194M: John Crispin <blogic@openwrt.org>
9195L: linux-mips@linux-mips.org
9196S: Maintained
9197F: arch/mips/ralink
9198
Randy Dunlape7839f22008-10-12 16:11:45 -07009199RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009200P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02009201M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01009202M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009203L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009204S: Maintained
Kalle Valo33aca942015-11-18 10:18:44 +02009205F: drivers/net/wireless/ralink/rt2x00/
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009206
Nick Piggin9db55792008-02-08 04:19:49 -08009207RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06009208M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08009209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009210F: Documentation/blockdev/ramdisk.txt
9211F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08009212
Matt Mackall9e95ce22005-04-16 15:25:56 -07009213RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07009214M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07009215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009216F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07009217
Matt Porter394b7012005-11-07 01:00:15 -08009218RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009219M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08009220M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08009221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009222F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08009223
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07009224RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07009225L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04009226S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009227F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07009228
9229RCUTORTURE MODULE
Josh Triplette0198b292014-07-30 16:08:42 -07009230M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009231M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009232L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009233S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009234T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07009235F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07009236F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07009237
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009238RCUTORTURE TEST FRAMEWORK
9239M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009240M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009241R: Steven Rostedt <rostedt@goodmis.org>
9242R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009243R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009244L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009245S: Supported
9246T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9247F: tools/testing/selftests/rcutorture
9248
Florian Fainellic1f766b2008-02-06 22:39:44 +01009249RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07009250M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01009251S: Maintained
9252
Florian Fainellidb17f3952007-12-19 11:30:30 +01009253RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009254M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01009255L: netdev@vger.kernel.org
9256S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07009257F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01009258
Andy Grovera09ed662009-02-24 15:30:41 +00009259RDS - RELIABLE DATAGRAM SOCKETS
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009260M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
9261L: netdev@vger.kernel.org
9262L: linux-rdma@vger.kernel.org
Kyle McMartinfbb5a552009-04-09 14:09:47 +00009263L: rds-devel@oss.oracle.com (moderated for non-subscribers)
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009264W: https://oss.oracle.com/projects/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00009265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009266F: net/rds/
santosh.shilimkar@oracle.com72f26ee2016-03-01 15:20:44 -08009267F: Documentation/networking/rds.txt
Andy Grovera09ed662009-02-24 15:30:41 +00009268
Dennis Dalessandro01946212016-01-06 09:50:24 -08009269RDMAVT - RDMA verbs software
9270M: Dennis Dalessandro <dennis.dalessandro@intel.com>
9271L: linux-rdma@vger.kernel.org
9272S: Supported
9273F: drivers/infiniband/sw/rdmavt
9274
Josh Triplett595182b2006-10-04 02:17:21 -07009275READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07009276M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009277M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009278R: Steven Rostedt <rostedt@goodmis.org>
9279R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009280R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009281L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009282W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07009283S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009284T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009285F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009286X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009287F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009288X: include/linux/srcu.h
9289F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07009290X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07009291
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009292REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009293M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07009294M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo764654932006-12-10 02:19:06 -08009295L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08009296Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02009297T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009299F: Documentation/rtc.txt
9300F: drivers/rtc/
9301F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009302F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009303
Mark Brown0e400c52014-07-31 12:38:31 +01009304REALTEK AUDIO CODECS
9305M: Bard Liao <bardliao@realtek.com>
9306M: Oder Chiou <oder_chiou@realtek.com>
9307S: Maintained
9308F: sound/soc/codecs/rt*
9309F: include/sound/rt*.h
9310
Linus Torvalds1da177e2005-04-16 15:20:36 -07009311REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07009312L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009313S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009314F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009315
Mark Brownb83a3132011-05-11 19:59:58 +02009316REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01009317M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01009318L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02009319T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9320S: Supported
9321F: drivers/base/regmap/
9322F: include/linux/regmap.h
9323
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009324REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9325M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08009326M: Bjorn Andersson <bjorn.andersson@linaro.org>
Bjorn Anderssond7586842016-03-21 22:43:54 -07009327L: linux-remoteproc@vger.kernel.org
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03009328T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009329S: Maintained
9330F: drivers/remoteproc/
9331F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07009332F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009333
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009334REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9335M: Ohad Ben-Cohen <ohad@wizery.com>
Bjorn Andersson69ae9892016-02-13 17:35:19 -08009336M: Bjorn Andersson <bjorn.andersson@linaro.org>
Bjorn Anderssond7586842016-03-21 22:43:54 -07009337L: linux-remoteproc@vger.kernel.org
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009338T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9339S: Maintained
9340F: drivers/rpmsg/
9341F: Documentation/rpmsg.txt
9342F: include/linux/rpmsg.h
9343
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009344RENESAS ETHERNET DRIVERS
9345R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9346L: netdev@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09009347L: linux-renesas-soc@vger.kernel.org
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009348F: drivers/net/ethernet/renesas/
9349F: include/linux/sh_eth.h
9350
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009351RENESAS USB2 PHY DRIVER
9352M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Simon Horman4a121092016-01-18 10:04:33 +09009353L: linux-renesas-soc@vger.kernel.org
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009354S: Maintained
9355F: drivers/phy/phy-rcar-gen3-usb2.c
9356
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009357RESET CONTROLLER FRAMEWORK
9358M: Philipp Zabel <p.zabel@pengutronix.de>
Fengguang Wu9f273c22016-01-20 15:03:25 -08009359T: git git://git.pengutronix.de/git/pza/linux
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009360S: Maintained
9361F: drivers/reset/
9362F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01009363F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009364F: include/linux/reset.h
9365F: include/linux/reset-controller.h
9366
Ivo van Doorne08976452008-04-12 19:23:55 +02009367RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07009368M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337df2009-06-02 13:01:37 +02009369L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02009370W: http://wireless.kernel.org/
9371T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9372T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02009373S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08009374F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07009375F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02009376
Thomas Graf933685c2015-01-13 01:01:24 +01009377RHASHTABLE
9378M: Thomas Graf <tgraf@suug.ch>
9379L: netdev@vger.kernel.org
9380S: Maintained
9381F: lib/rhashtable.c
9382F: include/linux/rhashtable.h
9383
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009384RICOH SMARTMEDIA/XD DRIVER
9385M: Maxim Levitsky <maximlevitsky@gmail.com>
9386S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07009387F: drivers/mtd/nand/r852.c
9388F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009389
Maxim Levitsky92634122011-03-25 01:56:59 -07009390RICOH R5C592 MEMORYSTICK DRIVER
9391M: Maxim Levitsky <maximlevitsky@gmail.com>
9392S: Maintained
9393F: drivers/memstick/host/r592.*
9394
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02009395ROCCAT DRIVERS
9396M: Stefan Achatz <erazor_de@users.sourceforge.net>
9397W: http://sourceforge.net/projects/roccat/
9398S: Maintained
9399F: drivers/hid/hid-roccat*
9400F: include/linux/hid-roccat*
9401F: Documentation/ABI/*/sysfs-driver-hid-roccat*
9402
Jiri Pirko4b8ac962014-11-28 14:34:26 +01009403ROCKER DRIVER
9404M: Jiri Pirko <jiri@resnulli.us>
9405M: Scott Feldman <sfeldma@gmail.com>
9406L: netdev@vger.kernel.org
9407S: Supported
9408F: drivers/net/ethernet/rocker/
9409
Linus Torvalds1da177e2005-04-16 15:20:36 -07009410ROCKETPORT DRIVER
9411P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009412W: http://www.comtrol.com
9413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009414F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07009415F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009416
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07009417ROCKETPORT EXPRESS/INFINITY DRIVER
9418M: Kevin Cernekee <cernekee@gmail.com>
9419L: linux-serial@vger.kernel.org
9420S: Odd Fixes
9421F: drivers/tty/serial/rp2.*
9422
Linus Torvalds1da177e2005-04-16 15:20:36 -07009423ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009424M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009425L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02009426W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009428F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009429F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07009430F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009431
Antti Palosaari91952bc2012-10-01 12:28:46 -03009432RTL2830 MEDIA DRIVER
9433M: Antti Palosaari <crope@iki.fi>
9434L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009435W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009436W: http://palosaari.fi/linux/
9437Q: http://patchwork.linuxtv.org/project/linux-media/list/
9438T: git git://linuxtv.org/anttip/media_tree.git
9439S: Maintained
9440F: drivers/media/dvb-frontends/rtl2830*
9441
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009442RTL2832 MEDIA DRIVER
9443M: Antti Palosaari <crope@iki.fi>
9444L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009445W: https://linuxtv.org
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009446W: http://palosaari.fi/linux/
9447Q: http://patchwork.linuxtv.org/project/linux-media/list/
9448T: git git://linuxtv.org/anttip/media_tree.git
9449S: Maintained
9450F: drivers/media/dvb-frontends/rtl2832*
9451
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009452RTL2832_SDR MEDIA DRIVER
9453M: Antti Palosaari <crope@iki.fi>
9454L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009455W: https://linuxtv.org
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009456W: http://palosaari.fi/linux/
9457Q: http://patchwork.linuxtv.org/project/linux-media/list/
9458T: git git://linuxtv.org/anttip/media_tree.git
9459S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03009460F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009461
Larry Finger59840482008-11-12 17:13:09 -06009462RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04009463L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009464W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009465T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05009466S: Orphan
Kalle Valo62141722015-11-18 10:09:24 +02009467F: drivers/net/wireless/realtek/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04009468
Larry Finger59840482008-11-12 17:13:09 -06009469RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03009470M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009471M: Hin-Tak Leung <htl10@users.sourceforge.net>
9472M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009473L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009474W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009475T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009476S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009477F: drivers/net/wireless/realtek/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009478
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009479RTL8192CE WIRELESS DRIVER
9480M: Larry Finger <Larry.Finger@lwfinger.net>
9481M: Chaoming Li <chaoming_li@realsil.com.cn>
9482L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009483W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009484T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9485S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009486F: drivers/net/wireless/realtek/rtlwifi/
9487F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009488
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009489RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9490M: Jes Sorensen <Jes.Sorensen@redhat.com>
9491L: linux-wireless@vger.kernel.org
9492T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9493S: Maintained
9494F: drivers/net/wireless/realtek/rtl8xxxu/
9495
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009496S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009497M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009498L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009499S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009500F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009501
Linus Torvalds1da177e2005-04-16 15:20:36 -07009502S390
Joe Perches8b58be82009-07-29 15:04:30 -07009503M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9504M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009505L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009506W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08009507T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
Heiko Carstens5238da42006-02-11 17:56:01 -08009508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009509F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009510F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009511F: Documentation/s390/
9512F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009513
Sebastian Ott322986c2014-02-17 15:16:30 +01009514S390 COMMON I/O LAYER
9515M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9516M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9517L: linux-s390@vger.kernel.org
9518W: http://www.ibm.com/developerworks/linux/linux390/
9519S: Supported
9520F: drivers/s390/cio/
9521
9522S390 DASD DRIVER
9523M: Stefan Weinhuber <wein@de.ibm.com>
9524M: Stefan Haberland <stefan.haberland@de.ibm.com>
9525L: linux-s390@vger.kernel.org
9526W: http://www.ibm.com/developerworks/linux/linux390/
9527S: Supported
9528F: drivers/s390/block/dasd*
9529F: block/partitions/ibm.c
9530
Heiko Carstens5238da42006-02-11 17:56:01 -08009531S390 NETWORK DRIVERS
Ursula Braunf0c59af2015-12-11 12:27:52 +01009532M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009533L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009534W: http://www.ibm.com/developerworks/linux/linux390/
9535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009536F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009537
Sebastian Ott322986c2014-02-17 15:16:30 +01009538S390 PCI SUBSYSTEM
9539M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9540M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9541L: linux-s390@vger.kernel.org
9542W: http://www.ibm.com/developerworks/linux/linux390/
9543S: Supported
9544F: arch/s390/pci/
9545F: drivers/pci/hotplug/s390_pci_hpc.c
9546
Felix Beckfeed9b62009-03-26 15:24:23 +01009547S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009548M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009549L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009550W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009551S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009552F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009553
Heiko Carstens5238da42006-02-11 17:56:01 -08009554S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009555M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009556L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009557W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009558S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009559F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009560
Ursula Braundd96df22007-09-19 13:09:02 +02009561S390 IUCV NETWORK LAYER
Ursula Braunf0c59af2015-12-11 12:27:52 +01009562M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009563L: linux-s390@vger.kernel.org
9564W: http://www.ibm.com/developerworks/linux/linux390/
9565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009566F: drivers/s390/net/*iucv*
9567F: include/net/iucv/
9568F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009569
Gerald Schaefer8128f23c2015-08-27 15:33:03 +02009570S390 IOMMU (PCI)
9571M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9572L: linux-s390@vger.kernel.org
9573W: http://www.ibm.com/developerworks/linux/linux390/
9574S: Supported
9575F: drivers/iommu/s390-iommu.c
9576
Ben Dooks4dde7f72008-06-30 22:40:38 +01009577S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009578M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009579L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009581F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009582
Hans Verkuil1f15a222012-11-23 07:45:29 -03009583SAA6588 RDS RECEIVER DRIVER
9584M: Hans Verkuil <hverkuil@xs4all.nl>
9585L: linux-media@vger.kernel.org
9586T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009587W: https://linuxtv.org
Hans Verkuil1f15a222012-11-23 07:45:29 -03009588S: Odd Fixes
9589F: drivers/media/i2c/saa6588*
9590
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009591SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009592M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009593L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009594W: https://linuxtv.org
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009595T: git git://linuxtv.org/media_tree.git
9596S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009597F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009598F: drivers/media/pci/saa7134/
9599
Linus Torvalds1da177e2005-04-16 15:20:36 -07009600SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009601M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009602L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009603T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009604S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009605F: drivers/media/common/saa7146/
9606F: drivers/media/pci/saa7146/
9607F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009608
Corentin Chary92304a42011-12-05 12:38:35 -05009609SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009610M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009611L: platform-driver-x86@vger.kernel.org
9612S: Maintained
9613F: drivers/platform/x86/samsung-laptop.c
9614
Mark Brown4a109cc2010-09-24 10:50:46 +01009615SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009616M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009617L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9618S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009619F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009620
Jingoo Han0d89a282011-12-19 11:09:35 +09009621SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009622M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009623L: linux-fbdev@vger.kernel.org
9624S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009625F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009626
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009627SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009628M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009629M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009630L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009631L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009632S: Supported
9633F: drivers/mfd/sec*.c
9634F: drivers/regulator/s2m*.c
9635F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009636F: drivers/clk/clk-s2mps11.c
9637F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009638F: include/linux/mfd/samsung/
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009639F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9640F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
Krzysztof Kozlowski27383ca2015-12-04 10:10:04 +09009641F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009642F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009643
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009644SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9645M: Kyungmin Park <kyungmin.park@samsung.com>
9646M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9647L: linux-media@vger.kernel.org
9648Q: https://patchwork.linuxtv.org/project/linux-media/list/
9649S: Supported
9650F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009651
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009652SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9653M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9654L: linux-media@vger.kernel.org
9655L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9656S: Maintained
9657F: drivers/media/platform/s3c-camif/
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009658F: include/media/drv-intf/s3c_camif.h
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009659
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009660SAMSUNG S5C73M3 CAMERA DRIVER
9661M: Kyungmin Park <kyungmin.park@samsung.com>
9662M: Andrzej Hajda <a.hajda@samsung.com>
9663L: linux-media@vger.kernel.org
9664S: Supported
9665F: drivers/media/i2c/s5c73m3/*
9666
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009667SAMSUNG S5K5BAF CAMERA DRIVER
9668M: Kyungmin Park <kyungmin.park@samsung.com>
9669M: Andrzej Hajda <a.hajda@samsung.com>
9670L: linux-media@vger.kernel.org
9671S: Supported
9672F: drivers/media/i2c/s5k5baf.c
9673
Robert Baldygac04c6742015-08-20 17:26:02 +02009674SAMSUNG S3FWRN5 NFC DRIVER
9675M: Robert Baldyga <r.baldyga@samsung.com>
Robert Baldyga079c2652016-03-10 15:22:43 +01009676M: Krzysztof Opasiak <k.opasiak@samsung.com>
Robert Baldygac04c6742015-08-20 17:26:02 +02009677L: linux-nfc@lists.01.org (moderated for non-subscribers)
9678S: Supported
9679F: drivers/nfc/s3fwrn5
9680
Tomasz Figa310e39c2013-11-09 03:17:34 +01009681SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009682M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9683M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009684S: Supported
9685L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9686F: drivers/clk/samsung/
9687
Byungho An66890ed2014-03-25 12:11:07 -07009688SAMSUNG SXGBE DRIVERS
9689M: Byungho An <bh74.an@samsung.com>
9690M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009691M: Vipul Pandya <vipul.pandya@samsung.com>
9692S: Supported
9693L: netdev@vger.kernel.org
9694F: drivers/net/ethernet/samsung/sxgbe/
9695
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009696SAMSUNG THERMAL DRIVER
9697M: Lukasz Majewski <l.majewski@samsung.com>
9698L: linux-pm@vger.kernel.org
9699L: linux-samsung-soc@vger.kernel.org
9700S: Supported
Fengguang Wu9f273c22016-01-20 15:03:25 -08009701T: git https://github.com/lmajewski/linux-samsung-thermal.git
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009702F: drivers/thermal/samsung/
9703
Kamil Debskie296cd32014-08-21 11:33:37 +02009704SAMSUNG USB2 PHY DRIVER
9705M: Kamil Debski <k.debski@samsung.com>
9706L: linux-kernel@vger.kernel.org
9707S: Supported
9708F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9709F: Documentation/phy/samsung-usb2.txt
9710F: drivers/phy/phy-exynos4210-usb2.c
9711F: drivers/phy/phy-exynos4x12-usb2.c
9712F: drivers/phy/phy-exynos5250-usb2.c
9713F: drivers/phy/phy-s5pv210-usb2.c
9714F: drivers/phy/phy-samsung-usb2.c
9715F: drivers/phy/phy-samsung-usb2.h
9716
Alan Coxca749e22011-03-18 13:56:14 +00009717SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009718M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009719L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009720S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009721F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009722
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309723SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009724M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309725M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309726S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009727F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009728F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009729F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309730
Lars Persson058999c2015-07-28 12:01:50 +02009731SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9732M: Lars Persson <lars.persson@axis.com>
9733L: netdev@vger.kernel.org
9734S: Supported
9735F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9736F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9737
Wolfram Sangfc531d92015-10-15 15:50:15 +02009738SYNOPSYS DESIGNWARE I2C DRIVER
Wolfram Sangfc531d92015-10-15 15:50:15 +02009739M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Andy Shevchenkod0781b92016-03-08 11:19:24 +02009740R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9741R: Mika Westerberg <mika.westerberg@linux.intel.com>
Wolfram Sangfc531d92015-10-15 15:50:15 +02009742L: linux-i2c@vger.kernel.org
9743S: Maintained
9744F: drivers/i2c/busses/i2c-designware-*
9745F: include/linux/platform_data/i2c-designware.h
9746
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009747SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009748M: Jaehoon Chung <jh80.chung@samsung.com>
9749L: linux-mmc@vger.kernel.org
9750S: Maintained
9751F: include/linux/mmc/dw_mmc.h
9752F: drivers/mmc/host/dw_mmc*
9753
Alexander Shishkina961e692015-09-22 15:47:11 +03009754SYSTEM TRACE MODULE CLASS
9755M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9756S: Maintained
9757F: Documentation/trace/stm.txt
9758F: drivers/hwtracing/stm/
9759F: include/linux/stm.h
9760F: include/uapi/linux/stm.h
9761
Andreas Noever1db121d2014-07-10 18:58:04 +02009762THUNDERBOLT DRIVER
9763M: Andreas Noever <andreas.noever@gmail.com>
9764S: Maintained
9765F: drivers/thunderbolt/
9766
Sebastian Reichele35a49b2016-01-17 21:36:03 +01009767TI BQ27XXX POWER SUPPLY DRIVER
9768R: Andrew F. Davis <afd@ti.com>
9769F: include/linux/power/bq27xxx_battery.h
9770F: drivers/power/bq27xxx_battery.c
9771F: drivers/power/bq27xxx_battery_i2c.c
9772
John Stultz34db37c2015-11-13 13:07:31 -08009773TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
John Stultz50363732012-12-13 13:08:47 -05009774M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009775M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009776L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009777T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009778S: Supported
9779F: include/linux/clocksource.h
9780F: include/linux/time.h
9781F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009782F: include/uapi/linux/time.h
9783F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009784F: kernel/time/clocksource.c
9785F: kernel/time/time*.c
John Stultz34db37c2015-11-13 13:07:31 -08009786F: kernel/time/alarmtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01009787F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009788F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009789
Linus Torvalds1da177e2005-04-16 15:20:36 -07009790SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009791M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009793F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009794
9795SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009796M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009797M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009798L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009799T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009800S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009801F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009802F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009803F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009804F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009805
Chen Liqin6bcf6732009-06-13 15:24:33 +08009806SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009807M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009808M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009809W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009810S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009811F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009812
Sudeep Holla80f390e2015-05-14 11:26:11 +01009813SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9814M: Sudeep Holla <sudeep.holla@arm.com>
9815L: linux-arm-kernel@lists.infradead.org
9816S: Maintained
9817F: Documentation/devicetree/bindings/arm/arm,scpi.txt
Sudeep Hollacd52c2a2015-03-30 10:59:52 +01009818F: drivers/clk/clk-scpi.c
Sudeep Holla8def3102015-03-30 10:59:52 +01009819F: drivers/cpufreq/scpi-cpufreq.c
Sudeep Holla8cb7cf52015-03-30 10:59:52 +01009820F: drivers/firmware/arm_scpi.c
9821F: include/linux/scpi_protocol.h
Sudeep Holla80f390e2015-05-14 11:26:11 +01009822
Linus Torvalds1da177e2005-04-16 15:20:36 -07009823SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009824M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009825L: linux-scsi@vger.kernel.org
9826W: http://www.kernel.dk
9827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009828F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009829
Roland Dreierfb50a832010-10-07 09:54:53 -07009830SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009831M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009832L: linux-rdma@vger.kernel.org
9833S: Supported
9834W: http://www.openfabrics.org
9835Q: http://patchwork.kernel.org/project/linux-rdma/list/
9836T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9837F: drivers/infiniband/ulp/srp/
9838F: include/scsi/srp.h
9839
Linus Torvalds1da177e2005-04-16 15:20:36 -07009840SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009841M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009842L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009843W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009845F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009846F: drivers/scsi/sg.c
9847F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009848
9849SCSI SUBSYSTEM
James Bottomley7ee78952016-03-14 12:42:27 -07009850M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
James Bottomley0351b8f2015-04-01 09:09:36 +00009851T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Martin K. Petersenf4ab4212015-11-13 16:46:49 -05009852M: "Martin K. Petersen" <martin.petersen@oracle.com>
9853T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9854L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009856F: drivers/scsi/
9857F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009858
9859SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009860M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009861L: linux-scsi@vger.kernel.org
9862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009863F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009864F: drivers/scsi/st.*
9865F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009866
9867SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009868M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009869M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009870L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009871W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009873F: Documentation/networking/sctp.txt
9874F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009875F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009876F: include/net/sctp/
9877F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009878
9879SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009880M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009881S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009882F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009883F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009884F: drivers/watchdog/scx200_wdt.c
9885F: drivers/i2c/busses/scx200*
9886F: drivers/mtd/maps/scx200_docflash.c
9887F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009888
9889SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009890M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009892F: drivers/char/scx200_gpio.c
9893F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009894
9895SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009896M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009898F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009899
Sascha Sommer6a369132008-07-15 14:21:29 +02009900SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009901M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009902L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009904F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009905
Randy Dunlape7839f22008-10-12 16:11:45 -07009906SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Ulf Hanssonddfe9542016-02-11 15:14:59 +01009907M: Adrian Hunter <adrian.hunter@intel.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009908L: linux-mmc@vger.kernel.org
Ulf Hanssonddfe9542016-02-11 15:14:59 +01009909T: git git://git.infradead.org/users/ahunter/linux-sdhci.git
9910S: Maintained
9911F: drivers/mmc/host/sdhci*
9912F: include/linux/mmc/sdhci*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -07009913
Kees Cookc04f9d62014-07-18 11:28:33 -07009914SECURE COMPUTING
9915M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009916R: Andy Lutomirski <luto@amacapital.net>
9917R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009918T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9919S: Supported
9920F: kernel/seccomp.c
9921F: include/uapi/linux/seccomp.h
9922F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009923F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009924K: \bsecure_computing
9925K: \bTIF_SECCOMP\b
9926
Ben Dooks0d1bb412009-06-14 13:52:37 +01009927SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009928M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009929M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009930L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009931S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009932F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009933
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009934SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009935M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009936L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009937L: linux-mmc@vger.kernel.org
9938S: Maintained
9939F: drivers/mmc/host/sdhci-spear.c
9940
James Morris8711cca2008-12-04 03:19:45 +11009941SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009942M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009943M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009944L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009945T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009946W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009947S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009948F: security/
James Morris8711cca2008-12-04 03:19:45 +11009949
Linus Torvalds1da177e2005-04-16 15:20:36 -07009950SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009951M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009952S: Supported
9953
9954SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009955M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009956M: Stephen Smalley <sds@tycho.nsa.gov>
9957M: Eric Paris <eparis@parisplace.org>
9958L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009959W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009960T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009961S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009962F: include/linux/selinux*
9963F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009964F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009965
John Johansenc1c124e2010-07-29 14:48:09 -07009966APPARMOR SECURITY MODULE
9967M: John Johansen <john.johansen@canonical.com>
9968L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9969W: apparmor.wiki.kernel.org
9970T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9971S: Supported
9972F: security/apparmor/
9973
Kees Cook730daa12015-07-23 18:02:48 -07009974YAMA SECURITY MODULE
9975M: Kees Cook <keescook@chromium.org>
9976T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9977S: Supported
9978F: security/yama/
9979
Jiri Slabycef2cf02007-05-08 00:31:45 -07009980SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009981M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009983F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009984F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009985
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309986SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009987M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309988M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9989M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009990L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009991W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009992S: Supported
9993F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309994
Sathya Perla6938f852015-05-12 02:13:50 -04009995Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
Sathya Perlaaa7b4532016-02-02 08:10:10 -05009996M: Sathya Perla <sathya.perla@broadcom.com>
9997M: Ajit Khaparde <ajit.khaparde@broadcom.com>
9998M: Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
9999M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10000M: Somnath Kotur <somnath.kotur@broadcom.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -070010001L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -080010002W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -070010003S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -070010004F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -070010005
Selvin Xavierd2928a82015-03-15 00:09:41 +053010006EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -070010007M: Selvin Xavier <selvin.xavier@avagotech.com>
10008M: Devesh Sharma <devesh.sharma@avagotech.com>
10009M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +053010010L: linux-rdma@vger.kernel.org
10011W: http://www.emulex.com
10012S: Supported
10013F: drivers/infiniband/hw/ocrdma/
10014
Ben Hutchings8ceee662008-04-27 12:55:59 +010010015SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +000010016M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +000010017M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +000010018L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +010010019S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -070010020F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +010010021
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010022SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -070010023M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010025F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010026
10027SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010028M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010029L: linux-ia64@vger.kernel.org
10030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010031F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010032F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -070010033F: include/linux/ioc?.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010034
Jack Steiner75312612008-08-15 00:40:42 -070010035SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -050010036M: Cliff Whickman <cpw@sgi.com>
10037M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -070010038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010039F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -070010040
Antti Palosaari46eacf32014-04-15 06:21:03 -030010041SI2157 MEDIA DRIVER
10042M: Antti Palosaari <crope@iki.fi>
10043L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010044W: https://linuxtv.org
Antti Palosaari46eacf32014-04-15 06:21:03 -030010045W: http://palosaari.fi/linux/
10046Q: http://patchwork.linuxtv.org/project/linux-media/list/
10047T: git git://linuxtv.org/anttip/media_tree.git
10048S: Maintained
10049F: drivers/media/tuners/si2157*
10050
Antti Palosaari75e2d5b2014-04-15 06:17:53 -030010051SI2168 MEDIA DRIVER
10052M: Antti Palosaari <crope@iki.fi>
10053L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010054W: https://linuxtv.org
Antti Palosaari75e2d5b2014-04-15 06:17:53 -030010055W: http://palosaari.fi/linux/
10056Q: http://patchwork.linuxtv.org/project/linux-media/list/
10057T: git git://linuxtv.org/anttip/media_tree.git
10058S: Maintained
10059F: drivers/media/dvb-frontends/si2168*
10060
Hans Verkuil49cc6292012-11-30 07:13:29 -030010061SI470X FM RADIO RECEIVER I2C DRIVER
10062M: Hans Verkuil <hverkuil@xs4all.nl>
10063L: linux-media@vger.kernel.org
10064T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010065W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -030010066S: Odd Fixes
10067F: drivers/media/radio/si470x/radio-si470x-i2c.c
10068
10069SI470X FM RADIO RECEIVER USB DRIVER
10070M: Hans Verkuil <hverkuil@xs4all.nl>
10071L: linux-media@vger.kernel.org
10072T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010073W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -030010074S: Maintained
10075F: drivers/media/radio/si470x/radio-si470x-common.c
10076F: drivers/media/radio/si470x/radio-si470x.h
10077F: drivers/media/radio/si470x/radio-si470x-usb.c
10078
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010079SI4713 FM RADIO TRANSMITTER I2C DRIVER
10080M: Eduardo Valentin <edubezval@gmail.com>
10081L: linux-media@vger.kernel.org
10082T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010083W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010084S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -030010085F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010086
10087SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10088M: Eduardo Valentin <edubezval@gmail.com>
10089L: linux-media@vger.kernel.org
10090T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010091W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010092S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -030010093F: drivers/media/radio/si4713/radio-platform-si4713.c
10094
10095SI4713 FM RADIO TRANSMITTER USB DRIVER
10096M: Hans Verkuil <hverkuil@xs4all.nl>
10097L: linux-media@vger.kernel.org
10098T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010099W: https://linuxtv.org
Dinesh Ram99995de2013-10-15 12:24:43 -030010100S: Maintained
10101F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -030010102
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010103SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010104M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010105L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010106W: https://linuxtv.org
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010107T: git git://linuxtv.org/media_tree.git
10108S: Odd fixes
10109F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010110F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010111F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -070010112F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -030010113
Hans de Goede6f15b602014-11-14 13:26:46 +010010114SIMPLEFB FB DRIVER
10115M: Hans de Goede <hdegoede@redhat.com>
10116L: linux-fbdev@vger.kernel.org
10117S: Maintained
Rob Herring2d799dd2015-11-05 13:40:40 -060010118F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
Hans de Goede6f15b602014-11-14 13:26:46 +010010119F: drivers/video/fbdev/simplefb.c
10120F: include/linux/platform_data/simplefb.h
10121
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010122SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010123L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -030010124S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010125F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010126
10127SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010128L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -030010129S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010130F: drivers/media/platform/sh_vou.c
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -020010131F: include/media/drv-intf/sh_vou.h
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -030010132
Len Brown6349d992009-08-14 15:07:14 -040010133SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -070010134M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -040010135L: sfi-devel@simplefirmware.org
10136W: http://simplefirmware.org/
10137T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010138S: Supported
Joe Perches943fc812011-03-22 16:34:36 -070010139F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -040010140F: drivers/sfi/
10141F: include/linux/sfi*.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010142
Linus Torvalds1da177e2005-04-16 15:20:36 -070010143SIMTEC EB110ATX (Chalice CATS)
10144P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -080010145P: Vincent Sanders <vince@simtec.co.uk>
10146M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010147W: http://www.simtec.co.uk/products/EB110ATX/
10148S: Supported
10149
10150SIMTEC EB2410ITX (BAST)
10151P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -080010152P: Vincent Sanders <vince@simtec.co.uk>
10153M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010154W: http://www.simtec.co.uk/products/EB2410ITX/
10155S: Supported
Joe Perches15dba382013-09-11 14:23:36 -070010156F: arch/arm/mach-s3c24xx/mach-bast.c
10157F: arch/arm/mach-s3c24xx/bast-ide.c
10158F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010159
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010160TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -080010161M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilman3cf2efd2016-02-24 14:57:36 -080010162M: Kevin Hilman <khilman@kernel.org>
Sekhar Noric9f46a82012-01-27 21:12:20 +053010163T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010164Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010165S: Supported
Joe Perches14430812013-09-11 14:23:50 -070010166F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +010010167F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -070010168
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010169TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010170M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010171L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010172W: https://linuxtv.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010173Q: http://patchwork.linuxtv.org/project/linux-media/list/
10174T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -030010175S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -030010176F: drivers/media/platform/davinci/
10177F: include/media/davinci/
10178
Benoit Parrot417d2e52014-12-09 16:43:44 -030010179TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010180M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -030010181L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010182W: https://linuxtv.org
Benoit Parrot417d2e52014-12-09 16:43:44 -030010183Q: http://patchwork.linuxtv.org/project/linux-media/list/
10184T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10185S: Maintained
10186F: drivers/media/platform/am437x/
10187
Benoit Parrotc4c02832015-03-20 18:03:52 -030010188OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -070010189M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -030010190L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010191W: https://linuxtv.org
Benoit Parrotc4c02832015-03-20 18:03:52 -030010192Q: http://patchwork.linuxtv.org/project/linux-media/list/
10193T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10194S: Maintained
10195F: drivers/media/i2c/ov2659.c
Mauro Carvalho Chehabb5dcee222015-11-10 12:01:44 -020010196F: include/media/i2c/ov2659.h
Benoit Parrotc4c02832015-03-20 18:03:52 -030010197
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +053010198SILICON MOTION SM712 FRAME BUFFER DRIVER
10199M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10200M: Teddy Wang <teddy.wang@siliconmotion.com>
10201M: Sudip Mukherjee <sudip@vectorindia.org>
10202L: linux-fbdev@vger.kernel.org
10203S: Maintained
10204F: drivers/video/fbdev/sm712*
10205F: Documentation/fb/sm712fb.txt
10206
Francois Romieu92aab3c2005-07-30 13:11:18 +020010207SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010208M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +020010209L: netdev@vger.kernel.org
10210S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010211F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +020010212
Linus Torvalds1da177e2005-04-16 15:20:36 -070010213SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010214M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010215W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -070010216L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010217S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010218F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219
10220SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010221M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -030010223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010224F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090010225F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -070010226F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010227
10228SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010229M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010230W: http://www.winischhofer.at/linuxsisusbvga.shtml
10231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010232F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010233
Christoph Lameter415ad262007-07-26 10:40:56 -070010234SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -070010235M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +020010236M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -070010237M: David Rientjes <rientjes@google.com>
10238M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
10239M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -070010240L: linux-mm@kvack.org
10241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010242F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -070010243F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -070010244
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010245SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +080010246M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010247M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -070010248M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -070010249R: Steven Rostedt <rostedt@goodmis.org>
10250R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +010010251L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010252W: http://www.rdrop.com/users/paulmck/RCU/
10253S: Supported
10254T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -070010255F: include/linux/srcu.h
10256F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010257
Casey Schaufler66372842012-05-23 18:34:52 -070010258SMACK SECURITY MODULE
10259M: Casey Schaufler <casey@schaufler-ca.com>
10260L: linux-security-module@vger.kernel.org
10261W: http://schaufler-ca.com
10262T: git git://git.gitorious.org/smack-next/kernel.git
10263S: Maintained
10264F: Documentation/security/Smack.txt
10265F: security/smack/
10266
Kevin Hilman20651e02014-09-24 16:30:00 -070010267DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010268M: Kevin Hilman <khilman@kernel.org>
10269M: Nishanth Menon <nm@ti.com>
10270S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -070010271F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010272F: include/linux/power/smartreflex.h
10273L: linux-pm@vger.kernel.org
10274
Linus Torvalds1da177e2005-04-16 15:20:36 -070010275SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -040010276M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -040010277S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -070010278F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010279
Sakari Ailuse8e31622012-11-12 18:14:39 -030010280SMIA AND SMIA++ IMAGE SENSOR DRIVER
10281M: Sakari Ailus <sakari.ailus@iki.fi>
10282L: linux-media@vger.kernel.org
10283S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070010284F: drivers/media/i2c/smiapp/
Mauro Carvalho Chehabb5dcee222015-11-10 12:01:44 -020010285F: include/media/i2c/smiapp.h
Sakari Ailuse8e31622012-11-12 18:14:39 -030010286F: drivers/media/i2c/smiapp-pll.c
10287F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -030010288F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -030010289F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -030010290
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010291SMM665 HARDWARE MONITOR DRIVER
10292M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010293L: linux-hwmon@vger.kernel.org
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010294S: Maintained
10295F: Documentation/hwmon/smm665
10296F: drivers/hwmon/smm665.c
10297
Steve Glendinning9df73052010-08-14 21:08:54 +020010298SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010299M: Steve Glendinning <steve.glendinning@shawell.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010300L: linux-hwmon@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010301S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +020010302F: Documentation/hwmon/emc2103
10303F: drivers/hwmon/emc2103.c
10304
Hans de Goedea98d5062011-03-21 17:59:36 +010010305SMSC SCH5627 HARDWARE MONITOR DRIVER
10306M: Hans de Goede <hdegoede@redhat.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010307L: linux-hwmon@vger.kernel.org
Hans de Goedea98d5062011-03-21 17:59:36 +010010308S: Supported
10309F: Documentation/hwmon/sch5627
10310F: drivers/hwmon/sch5627.c
10311
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010312SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070010313M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070010314L: linux-hwmon@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010316F: Documentation/hwmon/smsc47b397
10317F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010318
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010319SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010320M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010321L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010323F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -070010324F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010325
Steve Glendinning2cb37722008-12-11 20:54:30 -080010326SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010327M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -080010328L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010329S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -070010330F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -080010331
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010332SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010333M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010334L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010335S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +090010336F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010337
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010338SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010339M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010340L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010341T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +020010342S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030010343F: include/media/soc*
10344F: drivers/media/i2c/soc_camera/
10345F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010346
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010347SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010348M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010350F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010351
Joe Perchese3994db2014-07-30 00:38:42 -030010352SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -030010353M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10354M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10355M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -030010356M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -030010357L: linux-media@vger.kernel.org
10358S: Supported
10359F: drivers/media/pci/solo6x10/
10360
Linus Torvalds1da177e2005-04-16 15:20:36 -070010361SOFTWARE RAID (Multiple Disks) SUPPORT
Shaohua Lic2f662e2016-01-20 14:00:45 -080010362M: Shaohua Li <shli@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010363L: linux-raid@vger.kernel.org
Shaohua Li0f9ce862016-03-07 09:41:09 -080010364T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
NeilBrown524418b2007-01-26 00:57:01 -080010365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010366F: drivers/md/
10367F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010368F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010369
Linus Torvalds1da177e2005-04-16 15:20:36 -070010370SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010371M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -070010372L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010373S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -070010374F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010375
Michael Buesch61e115a2007-09-18 15:12:50 -040010376SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +020010377M: Michael Buesch <m@bues.ch>
Michael Büsche7828b22016-01-18 17:53:03 +010010378L: linux-wireless@vger.kernel.org
Michael Buesch61e115a2007-09-18 15:12:50 -040010379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010380F: drivers/ssb/
10381F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -040010382
Linus Torvalds1da177e2005-04-16 15:20:36 -070010383SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010384M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -050010385L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +010010386W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070010387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010388F: Documentation/laptops/sony-laptop.txt
10389F: drivers/char/sonypi.c
10390F: drivers/platform/x86/sony-laptop.c
10391F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010392
Alex Dubovbaf85322008-02-09 10:20:54 -080010393SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010394M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -080010395W: http://tifmxx.berlios.de/
10396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010397F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -080010398
Maxim Levitsky0ab30492013-09-11 14:26:02 -070010399SONY MEMORYSTICK STANDARD SUPPORT
10400M: Maxim Levitsky <maximlevitsky@gmail.com>
10401S: Maintained
10402F: drivers/memstick/core/ms_block.*
10403
Linus Torvalds1da177e2005-04-16 15:20:36 -070010404SOUND
Joe Perches8b58be82009-07-29 15:04:30 -070010405M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -070010406M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -070010407L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -070010408W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +020010409T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -070010410T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +020010411Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010412S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -070010413F: Documentation/sound/
10414F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010415F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -070010416F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010417
Mark Brown33bbe142013-08-09 18:10:50 +010010418SOUND - COMPRESSED AUDIO
10419M: Vinod Koul <vinod.koul@intel.com>
10420L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10421T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10422S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +053010423F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +010010424F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +053010425F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +010010426F: sound/core/compress_offload.c
10427F: sound/soc/soc-compress.c
10428
Mark Brownbd903bd2008-11-19 19:16:05 +000010429SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +000010430M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010010431M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +000010432T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -070010433L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +010010434W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010435S: Supported
Mark Brown2820f612013-08-11 19:35:11 +010010436F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -070010437F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +010010438F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010439
Mark Brownd7f87612013-10-19 14:33:54 +010010440SOUND - DMAENGINE HELPERS
10441M: Lars-Peter Clausen <lars@metafoo.de>
10442S: Supported
10443F: include/sound/dmaengine_pcm.h
10444F: sound/core/pcm_dmaengine.c
10445F: sound/soc/soc-generic-dmaengine-pcm.c
10446
Olli Salonen990a6a92014-08-22 13:50:42 -030010447SP2 MEDIA DRIVER
10448M: Olli Salonen <olli.salonen@iki.fi>
10449L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010450W: https://linuxtv.org
Olli Salonen990a6a92014-08-22 13:50:42 -030010451Q: http://patchwork.linuxtv.org/project/linux-media/list/
10452S: Maintained
10453F: drivers/media/dvb-frontends/sp2*
10454
Sam Ravnborg473321f2009-01-04 15:47:49 -080010455SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -070010456M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010457L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010458Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -070010459T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10460T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010462F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -070010463F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010464
David S. Miller6404fcc2010-03-16 01:00:17 -070010465SPARC SERIAL DRIVERS
10466M: "David S. Miller" <davem@davemloft.net>
10467L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -070010468T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10469T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -070010470S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -050010471F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010472F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010473F: drivers/tty/serial/sunhv.c
10474F: drivers/tty/serial/sunsab.c
10475F: drivers/tty/serial/sunsab.h
10476F: drivers/tty/serial/sunsu.c
10477F: drivers/tty/serial/sunzilog.c
10478F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -070010479
Christopher Li389325b2012-04-05 14:25:14 -070010480SPARSE CHECKER
10481M: "Christopher Li" <sparse@chrisli.org>
10482L: linux-sparse@vger.kernel.org
10483W: https://sparse.wiki.kernel.org/
10484T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10485T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10486S: Maintained
10487F: include/linux/compiler.h
10488
viresh kumarfc0c1952010-04-01 12:31:21 +010010489SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010490M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -070010491M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010492L: spear-devel@list.st.com
10493L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010494W: http://www.st.com/spear
10495S: Maintained
Rob Herringe68d7c12015-12-10 17:38:23 -060010496F: arch/arm/boot/dts/spear*
Joe Perches281e1922013-09-11 14:23:37 -070010497F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010498
10499SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010500M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010501L: spear-devel@list.st.com
10502L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010503W: http://www.st.com/spear
10504S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010505F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010506
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010507SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010508M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010509L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010510T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010511Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010513F: Documentation/spi/
10514F: drivers/spi/
10515F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010516F: include/uapi/linux/spi/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010517
Jim Lewis2752e4012006-09-29 02:01:19 -070010518SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010519M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e4012006-09-29 02:01:19 -070010520L: netdev@vger.kernel.org
10521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010522F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010523F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -070010524
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010525SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010526M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010527L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010528W: http://www.ibm.com/developerworks/power/cell/
10529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010530F: Documentation/filesystems/spufs.txt
10531F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010532
Phillip Lougherfc555842009-01-05 08:46:29 +000010533SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010534M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010535L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10536W: http://squashfs.org.uk
Fengguang Wu9f273c22016-01-20 15:03:25 -080010537T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
Phillip Lougherfc555842009-01-05 08:46:29 +000010538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010539F: Documentation/filesystems/squashfs.txt
10540F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010541
Linus Torvalds1da177e2005-04-16 15:20:36 -070010542SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010543M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010545F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010546
Linus Torvalds26e9a392008-10-17 09:50:12 -070010547STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010548M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010549L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010550S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010551F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010552
Linus Torvalds26e9a392008-10-17 09:50:12 -070010553STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010554M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010555T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010556L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010558F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010559
Joe Perchesebd3d012011-07-05 09:42:02 -070010560STAGING - COMEDI
10561M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010562M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010563S: Odd Fixes
10564F: drivers/staging/comedi/
10565
Joe Perchesa0138162011-07-05 15:21:34 -070010566STAGING - FLARION FT1000 DRIVERS
10567M: Marek Belisko <marek.belisko@gmail.com>
10568S: Odd Fixes
10569F: drivers/staging/ft1000/
10570
Joe Perches6c1bb422011-07-05 09:42:07 -070010571STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010572M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010573L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010574S: Odd Fixes
10575F: drivers/staging/iio/
10576
Joe Perchesa0138162011-07-05 15:21:34 -070010577STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10578M: Jarod Wilson <jarod@wilsonet.com>
10579W: http://www.lirc.org/
10580S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010581F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010582
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010583STAGING - LUSTRE PARALLEL FILESYSTEM
10584M: Oleg Drokin <oleg.drokin@intel.com>
10585M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010586L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10587W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010588S: Maintained
10589F: drivers/staging/lustre
10590
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010591STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10592M: Marc Dietrich <marvin24@gmx.de>
10593L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010594L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010595S: Maintained
10596F: drivers/staging/nvec/
10597
Greg Kroah-Hartman53c43c5c2016-04-04 13:52:35 -070010598STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10599M: Jens Frederich <jfrederich@gmail.com>
10600M: Daniel Drake <dsd@laptop.org>
10601M: Jon Nettleton <jon.nettleton@gmail.com>
10602W: http://wiki.laptop.org/go/DCON
10603S: Maintained
10604F: drivers/staging/olpc_dcon/
10605
Joe Perchesa0138162011-07-05 15:21:34 -070010606STAGING - REALTEK RTL8712U DRIVERS
10607M: Larry Finger <Larry.Finger@lwfinger.net>
10608M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10609S: Odd Fixes
10610F: drivers/staging/rtl8712/
10611
Jes Sorensen7591ba82014-04-26 18:54:48 +020010612STAGING - REALTEK RTL8723U WIRELESS DRIVER
10613M: Larry Finger <Larry.Finger@lwfinger.net>
10614M: Jes Sorensen <Jes.Sorensen@redhat.com>
10615L: linux-wireless@vger.kernel.org
10616S: Maintained
10617F: drivers/staging/rtl8723au/
10618
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010619STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10620M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10621M: Teddy Wang <teddy.wang@siliconmotion.com>
10622M: Sudip Mukherjee <sudip@vectorindia.org>
10623L: linux-fbdev@vger.kernel.org
10624S: Maintained
10625F: drivers/staging/sm750fb/
10626
Joe Perches510fa4082014-02-10 16:37:56 -080010627STAGING - SLICOSS
10628M: Lior Dotan <liodot@gmail.com>
10629M: Christopher Harrer <charrer@alacritech.com>
10630S: Odd Fixes
10631F: drivers/staging/slicoss/
10632
Joe Perchesa0138162011-07-05 15:21:34 -070010633STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10634M: William Hubbs <w.d.hubbs@gmail.com>
10635M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010636M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010637M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010638L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010639W: http://www.linux-speakup.org/
10640S: Odd Fixes
10641F: drivers/staging/speakup/
10642
Joe Perchesb3e871c2011-07-05 09:42:10 -070010643STAGING - VIA VT665X DRIVERS
10644M: Forest Bond <forest@alittletooquiet.net>
10645S: Odd Fixes
10646F: drivers/staging/vt665?/
10647
Johnny Kima30baec2015-05-11 14:30:57 +090010648STAGING - WILC1000 WIFI DRIVER
10649M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010650M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010651M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010652M: Tony Cho <tony.cho@atmel.com>
10653M: Glen Lee <glen.lee@atmel.com>
10654M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010655L: linux-wireless@vger.kernel.org
10656S: Supported
10657F: drivers/staging/wilc1000/
10658
Joe Perches709bcb02011-07-05 09:42:13 -070010659STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010660M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010661S: Odd Fixes
10662F: drivers/staging/xgifb/
10663
Mike Marciniszyn77241052015-07-30 15:17:43 -040010664HFI1 DRIVER
10665M: Mike Marciniszyn <infinipath@intel.com>
10666L: linux-rdma@vger.kernel.org
10667S: Supported
10668F: drivers/staging/rdma/hfi1
10669
Linus Torvalds1da177e2005-04-16 15:20:36 -070010670STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010671M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010672S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010673F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010674
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010675SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010676M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010677W: http://sammy.net/sun3/
10678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010679F: arch/m68k/kernel/*sun3*
10680F: arch/m68k/sun3*/
10681F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010682F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010683
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010684SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10685M: Hans de Goede <hdegoede@redhat.com>
10686L: linux-input@vger.kernel.org
10687S: Maintained
10688F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10689F: drivers/input/keyboard/sun4i-lradc-keys.c
10690
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010691SUNDANCE NETWORK DRIVER
10692M: Denis Kirjanov <kda@linux-powerpc.org>
10693L: netdev@vger.kernel.org
10694S: Maintained
10695F: drivers/net/ethernet/dlink/sundance.c
10696
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010697SUPERH
Rich Felker114bf372016-01-22 15:11:05 -080010698M: Yoshinori Sato <ysato@users.sourceforge.jp>
10699M: Rich Felker <dalias@libc.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010700L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010701Q: http://patchwork.kernel.org/project/linux-sh/list/
Rich Felker114bf372016-01-22 15:11:05 -080010702S: Maintained
Paul Mundt066069e2009-04-14 06:32:08 +090010703F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010704F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010705F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010706
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010707SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010708M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010709M: Len Brown <len.brown@intel.com>
10710M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010711L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070010712S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010713F: Documentation/power/
10714F: arch/x86/kernel/acpi/
10715F: drivers/base/power/
10716F: kernel/power/
10717F: include/linux/suspend.h
10718F: include/linux/freezer.h
10719F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010720
10721SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010722M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010723L: linux-video@atrey.karlin.mff.cuni.cz
10724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010725F: Documentation/svga.txt
10726F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010727
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010728SWIOTLB SUBSYSTEM
10729M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10730L: linux-kernel@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010731T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010732S: Supported
10733F: lib/swiotlb.c
10734F: arch/*/kernel/pci-swiotlb.c
10735F: include/linux/swiotlb.h
10736
Jiri Pirko007f7902014-11-28 14:34:17 +010010737SWITCHDEV
10738M: Jiri Pirko <jiri@resnulli.us>
10739L: netdev@vger.kernel.org
10740S: Supported
10741F: net/switchdev/
10742F: include/net/switchdev.h
10743
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010744SYNOPSYS ARC ARCHITECTURE
10745M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta30b9dbe2015-11-14 12:58:53 +053010746L: linux-snps-arc@lists.infradead.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010747S: Supported
10748F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010749F: Documentation/devicetree/bindings/arc/*
Rob Herring2d799dd2015-11-05 13:40:40 -060010750F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010751F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010752T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010753
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010754SYNOPSYS ARC SDP platform support
10755M: Alexey Brodkin <abrodkin@synopsys.com>
10756S: Supported
10757F: arch/arc/plat-axs10x
10758F: arch/arc/boot/dts/ax*
10759F: Documentation/devicetree/bindings/arc/axs10*
10760
Lee Jones6c284c92015-05-12 14:13:58 +010010761SYSTEM CONFIGURATION (SYSCON)
10762M: Lee Jones <lee.jones@linaro.org>
10763M: Arnd Bergmann <arnd@arndb.de>
10764T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10765S: Supported
10766F: drivers/mfd/syscon.c
10767
Linus Torvalds1da177e2005-04-16 15:20:36 -070010768SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010769M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010771F: Documentation/filesystems/sysv-fs.txt
10772F: fs/sysv/
10773F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010774
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010775TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010776M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010777L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010778L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010779W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010780W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010781T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010782S: Supported
10783F: drivers/target/
10784F: include/target/
10785F: Documentation/target/
10786
Alan Cox4e688522008-04-30 00:52:11 -070010787TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010788M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010790F: Documentation/accounting/taskstats*
10791F: include/linux/taskstats*
10792F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010793
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010794TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010795M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010796L: netdev@vger.kernel.org
10797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010798F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010799F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010800F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010801
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010802TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010803M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10804M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010805W: http://tcp-lp-mod.sourceforge.net/
10806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010807F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010808
Antti Palosaari91952bc2012-10-01 12:28:46 -030010809TDA10071 MEDIA DRIVER
10810M: Antti Palosaari <crope@iki.fi>
10811L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010812W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010813W: http://palosaari.fi/linux/
10814Q: http://patchwork.linuxtv.org/project/linux-media/list/
10815T: git git://linuxtv.org/anttip/media_tree.git
10816S: Maintained
10817F: drivers/media/dvb-frontends/tda10071*
10818
10819TDA18212 MEDIA DRIVER
10820M: Antti Palosaari <crope@iki.fi>
10821L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010822W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010823W: http://palosaari.fi/linux/
10824Q: http://patchwork.linuxtv.org/project/linux-media/list/
10825T: git git://linuxtv.org/anttip/media_tree.git
10826S: Maintained
10827F: drivers/media/tuners/tda18212*
10828
10829TDA18218 MEDIA DRIVER
10830M: Antti Palosaari <crope@iki.fi>
10831L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010832W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010833W: http://palosaari.fi/linux/
10834Q: http://patchwork.linuxtv.org/project/linux-media/list/
10835T: git git://linuxtv.org/anttip/media_tree.git
10836S: Maintained
10837F: drivers/media/tuners/tda18218*
10838
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010839TDA18271 MEDIA DRIVER
10840M: Michael Krufky <mkrufky@linuxtv.org>
10841L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010842W: https://linuxtv.org
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010843W: http://github.com/mkrufky
10844Q: http://patchwork.linuxtv.org/project/linux-media/list/
10845T: git git://linuxtv.org/mkrufky/tuners.git
10846S: Maintained
10847F: drivers/media/tuners/tda18271*
10848
Michael Krufkye48307a2012-10-02 00:56:33 -030010849TDA827x MEDIA DRIVER
10850M: Michael Krufky <mkrufky@linuxtv.org>
10851L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010852W: https://linuxtv.org
Michael Krufkye48307a2012-10-02 00:56:33 -030010853W: http://github.com/mkrufky
10854Q: http://patchwork.linuxtv.org/project/linux-media/list/
10855T: git git://linuxtv.org/mkrufky/tuners.git
10856S: Maintained
10857F: drivers/media/tuners/tda8290.*
10858
Michael Krufky66cf9212012-10-02 00:56:28 -030010859TDA8290 MEDIA DRIVER
10860M: Michael Krufky <mkrufky@linuxtv.org>
10861L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010862W: https://linuxtv.org
Michael Krufky66cf9212012-10-02 00:56:28 -030010863W: http://github.com/mkrufky
10864Q: http://patchwork.linuxtv.org/project/linux-media/list/
10865T: git git://linuxtv.org/mkrufky/tuners.git
10866S: Maintained
10867F: drivers/media/tuners/tda8290.*
10868
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010869TDA9840 MEDIA DRIVER
10870M: Hans Verkuil <hverkuil@xs4all.nl>
10871L: linux-media@vger.kernel.org
10872T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010873W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010874S: Maintained
10875F: drivers/media/i2c/tda9840*
10876
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010877TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010878M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010879L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010880W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010881T: git git://linuxtv.org/media_tree.git
10882S: Odd fixes
10883F: drivers/media/tuners/tea5761.*
10884
10885TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010886M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010887L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010888W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010889T: git git://linuxtv.org/media_tree.git
10890S: Maintained
10891F: drivers/media/tuners/tea5767.*
10892
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010893TEA6415C MEDIA DRIVER
10894M: Hans Verkuil <hverkuil@xs4all.nl>
10895L: linux-media@vger.kernel.org
10896T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010897W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010898S: Maintained
10899F: drivers/media/i2c/tea6415c*
10900
10901TEA6420 MEDIA DRIVER
10902M: Hans Verkuil <hverkuil@xs4all.nl>
10903L: linux-media@vger.kernel.org
10904T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010905W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010906S: Maintained
10907F: drivers/media/i2c/tea6420*
10908
Jiri Pirko3d249d42011-11-11 22:16:48 +000010909TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010910M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010911L: netdev@vger.kernel.org
10912S: Supported
10913F: drivers/net/team/
10914F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010915F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010916
Vivien Didelot7d029122013-01-04 16:18:14 -050010917TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010918M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010919S: Maintained
10920F: arch/x86/platform/ts5500/
10921
Sean Young40ad4a32012-11-19 10:32:53 -030010922TECHNOTREND USB IR RECEIVER
10923M: Sean Young <sean@mess.org>
10924L: linux-media@vger.kernel.org
10925S: Maintained
10926F: drivers/media/rc/ttusbir.c
10927
Stephen Warrenadabdb02013-09-13 13:00:57 -060010928TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010929M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010930M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010931M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010932L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010933Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010934T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010935S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010936N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010937
Stephen Warrenadabdb02013-09-13 13:00:57 -060010938TEGRA CLOCK DRIVER
10939M: Peter De Schrijver <pdeschrijver@nvidia.com>
10940M: Prashant Gaikwad <pgaikwad@nvidia.com>
10941S: Supported
10942F: drivers/clk/tegra/
10943
10944TEGRA DMA DRIVER
10945M: Laxman Dewangan <ldewangan@nvidia.com>
10946S: Supported
10947F: drivers/dma/tegra20-apb-dma.c
10948
Stephen Warrenadabdb02013-09-13 13:00:57 -060010949TEGRA I2C DRIVER
10950M: Laxman Dewangan <ldewangan@nvidia.com>
10951S: Supported
10952F: drivers/i2c/busses/i2c-tegra.c
10953
10954TEGRA IOMMU DRIVERS
10955M: Hiroshi Doyu <hdoyu@nvidia.com>
10956S: Supported
10957F: drivers/iommu/tegra*
10958
10959TEGRA KBC DRIVER
10960M: Rakesh Iyer <riyer@nvidia.com>
10961M: Laxman Dewangan <ldewangan@nvidia.com>
10962S: Supported
10963F: drivers/input/keyboard/tegra-kbc.c
10964
Stephen Warrenadabdb02013-09-13 13:00:57 -060010965TEGRA PWM DRIVER
10966M: Thierry Reding <thierry.reding@gmail.com>
10967S: Supported
10968F: drivers/pwm/pwm-tegra.c
10969
10970TEGRA SERIAL DRIVER
10971M: Laxman Dewangan <ldewangan@nvidia.com>
10972S: Supported
10973F: drivers/tty/serial/serial-tegra.c
10974
10975TEGRA SPI DRIVER
10976M: Laxman Dewangan <ldewangan@nvidia.com>
10977S: Supported
10978F: drivers/spi/spi-tegra*
10979
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010980TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010981M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010982L: netdev@vger.kernel.org
10983S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010984F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010985
Alan Cox4e688522008-04-30 00:52:11 -070010986Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010987M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010988S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010989F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010990
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010991TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010992M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010993M: Max Filippov <jcmvbkbc@gmail.com>
10994L: linux-xtensa@linux-xtensa.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010995T: git git://github.com/czankel/xtensa-linux.git
Alan Cox4e688522008-04-30 00:52:11 -070010996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010997F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010998F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010999
Hans Verkuil5313ba62013-12-13 09:00:38 -030011000THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11001M: Hans Verkuil <hverkuil@xs4all.nl>
11002L: linux-media@vger.kernel.org
11003T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011004W: https://linuxtv.org
Hans Verkuil5313ba62013-12-13 09:00:38 -030011005S: Maintained
11006F: drivers/media/radio/radio-raremono.c
11007
Zhang Ruid3fb6952012-11-15 08:58:27 +080011008THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080011009M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010011010M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080011011L: linux-pm@vger.kernel.org
11012T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11013T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11014Q: https://patchwork.kernel.org/project/linux-pm/list/
11015S: Supported
11016F: drivers/thermal/
11017F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080011018F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080011019F: include/linux/cpu_cooling.h
11020F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080011021
Viresh Kumar64e05d82015-08-27 07:32:11 +053011022THERMAL/CPU_COOLING
11023M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
11024M: Viresh Kumar <viresh.kumar@linaro.org>
11025M: Javi Merino <javi.merino@arm.com>
11026L: linux-pm@vger.kernel.org
11027S: Supported
11028F: Documentation/thermal/cpu-cooling-api.txt
11029F: drivers/thermal/cpu_cooling.c
11030F: include/linux/cpu_cooling.h
11031
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050011032THINGM BLINK(1) USB RGB LED DRIVER
11033M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11034S: Maintained
11035F: drivers/hid/hid-thingm.c
11036
Alan Cox4e688522008-04-30 00:52:11 -070011037THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011038M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070011039L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -050011040L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011041W: http://ibm-acpi.sourceforge.net
11042W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070011043T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070011044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011045F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070011046
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011047TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010011048M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011049L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060011050L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040011051S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000011052F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040011053
Benoit Parrotccf963d2016-01-06 21:37:25 -020011054TI VPE/CAL DRIVERS
11055M: Benoit Parrot <bparrot@ti.com>
11056L: linux-media@vger.kernel.org
11057W: http://linuxtv.org/
11058Q: http://patchwork.linuxtv.org/project/linux-media/list/
11059S: Maintained
11060F: drivers/media/platform/ti-vpe/
11061
Max Filippov0c7665c2015-01-12 10:20:46 +030011062TI CDCE706 CLOCK DRIVER
11063M: Max Filippov <jcmvbkbc@gmail.com>
11064S: Maintained
11065F: drivers/clk/clk-cdce706.c
11066
Tero Kristo49b6a5e2014-07-02 17:03:50 +030011067TI CLOCK DRIVER
11068M: Tero Kristo <t-kristo@ti.com>
11069L: linux-omap@vger.kernel.org
11070S: Maintained
11071F: drivers/clk/ti/
11072F: include/linux/clk/ti.h
11073
Alex Dubov4020f2d2006-10-04 02:15:37 -070011074TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011075M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011077F: drivers/misc/tifm*
11078F: drivers/mmc/host/tifm_sd.c
11079F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070011080
Santosh Shilimkare0c52402014-07-10 11:30:08 -040011081TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040011082M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040011083L: linux-kernel@vger.kernel.org
11084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11085S: Maintained
11086F: drivers/soc/ti/*
11087T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11088
11089
M R Swami Reddy152ad442012-04-02 20:02:31 +053011090TI LM49xxx FAMILY ASoC CODEC DRIVERS
11091M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053011092M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053011093L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11094S: Maintained
11095F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053011096F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053011097
Kim, Milo0edd8072012-12-17 16:01:17 -080011098TI LP855x BACKLIGHT DRIVER
11099M: Milo Kim <milo.kim@ti.com>
11100S: Maintained
11101F: Documentation/backlight/lp855x-driver.txt
11102F: drivers/video/backlight/lp855x_bl.c
11103F: include/linux/platform_data/lp855x.h
11104
Kim, Milofaf13f6d2012-12-10 05:27:03 +000011105TI LP8727 CHARGER DRIVER
11106M: Milo Kim <milo.kim@ti.com>
11107S: Maintained
11108F: drivers/power/lp8727_charger.c
11109F: include/linux/platform_data/lp8727.h
11110
Kim, Milo22f12292012-12-10 05:27:55 +000011111TI LP8788 MFD DRIVER
11112M: Milo Kim <milo.kim@ti.com>
11113S: Maintained
11114F: drivers/iio/adc/lp8788_adc.c
11115F: drivers/leds/leds-lp8788.c
11116F: drivers/mfd/lp8788*.c
11117F: drivers/power/lp8788-charger.c
11118F: drivers/regulator/lp8788-*.c
11119F: include/linux/mfd/lp8788*.h
11120
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050011121TI NETCP ETHERNET DRIVER
11122M: Wingman Kwok <w-kwok2@ti.com>
11123M: Murali Karicheri <m-karicheri2@ti.com>
11124L: netdev@vger.kernel.org
11125S: Maintained
11126F: drivers/net/ethernet/ti/netcp*
11127
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070011128TI TAS571X FAMILY ASoC CODEC DRIVER
11129M: Kevin Cernekee <cernekee@chromium.org>
11130L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11131S: Odd Fixes
11132F: sound/soc/codecs/tas571x*
11133
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030011134TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030011135M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030011136L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11137S: Maintained
11138F: sound/soc/codecs/twl4030*
11139
Luciano Coelho90921012011-11-20 21:40:41 +020011140TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020011141L: linux-wireless@vger.kernel.org
11142W: http://wireless.kernel.org/en/users/Drivers/wl12xx
11143W: http://wireless.kernel.org/en/users/Drivers/wl1251
11144T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020011145S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020011146F: drivers/net/wireless/ti/
11147F: include/linux/wl12xx.h
11148
Per Lidene86eaa32006-01-12 16:45:18 +010011149TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070011150M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040011151M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050011152L: netdev@vger.kernel.org (core kernel code)
11153L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010011154W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010011155S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011156F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070011157F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010011158
Chris Metcalf867e3592010-05-28 23:09:12 -040011159TILE ARCHITECTURE
Chris Metcalfb9a279f2016-03-02 15:32:27 -050011160M: Chris Metcalf <cmetcalf@mellanox.com>
Chris Metcalf8c34d8d2016-03-04 11:12:28 -050011161W: http://www.mellanox.com/repository/solutions/tile-scm/
Fengguang Wu7fa129c2015-12-18 10:15:37 -050011162T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
Chris Metcalf867e3592010-05-28 23:09:12 -040011163S: Supported
11164F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040011165F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050011166F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040011167F: drivers/net/ethernet/tile/
11168F: drivers/rtc/rtc-tile.c
11169F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040011170F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040011171F: drivers/usb/host/*-tilegx.c
11172F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040011173
Linus Torvalds1da177e2005-04-16 15:20:36 -070011174TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011175M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080011176L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011177W: http://sourceforge.net/projects/tlan/
11178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011179F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070011180F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011181
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011182TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070011183M: Kentaro Takeda <takedakn@nttdata.co.jp>
11184M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090011185L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11186L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011187L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11188L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11189W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090011190T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011192F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090011193
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030011194TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030011195M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050011196L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030011197S: Maintained
11198F: drivers/platform/x86/topstar-laptop.c
11199
Linus Torvalds1da177e2005-04-16 15:20:36 -070011200TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070011201M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050011202L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070011203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011204F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011205
Azael Avalos0a63ca12015-03-06 18:14:42 -070011206TOSHIBA BLUETOOTH DRIVER
11207M: Azael Avalos <coproscefalo@gmail.com>
11208L: platform-driver-x86@vger.kernel.org
11209S: Maintained
11210F: drivers/platform/x86/toshiba_bluetooth.c
11211
11212TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11213M: Azael Avalos <coproscefalo@gmail.com>
11214L: platform-driver-x86@vger.kernel.org
11215S: Maintained
11216F: drivers/platform/x86/toshiba_haps.c
11217
Azael Avalos14991fc2015-09-28 20:32:28 -060011218TOSHIBA WMI HOTKEYS DRIVER
11219M: Azael Avalos <coproscefalo@gmail.com>
11220L: platform-driver-x86@vger.kernel.org
11221S: Maintained
11222F: drivers/platform/x86/toshiba-wmi.c
11223
Linus Torvalds1da177e2005-04-16 15:20:36 -070011224TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011225M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011226W: http://www.buzzard.org.uk/toshiba/
11227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011228F: drivers/char/toshiba.c
11229F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011230F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011231
Mats Randgaardd32d9862015-07-09 05:45:47 -030011232TOSHIBA TC358743 DRIVER
11233M: Mats Randgaard <matrandg@cisco.com>
11234L: linux-media@vger.kernel.org
11235S: Maintained
11236F: drivers/media/i2c/tc358743*
Mauro Carvalho Chehabb5dcee222015-11-10 12:01:44 -020011237F: include/media/i2c/tc358743.h
Mats Randgaardd32d9862015-07-09 05:45:47 -030011238
Pierre Ossmand719f902009-03-24 21:06:09 +010011239TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010011240M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011241L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010011242S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011243F: drivers/mmc/host/tmio_mmc*
11244F: drivers/mmc/host/sh_mobile_sdhi.c
11245F: include/linux/mmc/tmio.h
11246F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010011247
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011248TMP401 HARDWARE MONITOR DRIVER
11249M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070011250L: linux-hwmon@vger.kernel.org
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011251S: Maintained
11252F: Documentation/hwmon/tmp401
11253F: drivers/hwmon/tmp401.c
11254
Hugh Dickins98f32602009-05-21 20:33:58 +010011255TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070011256M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010011257L: linux-mm@kvack.org
11258S: Maintained
11259F: include/linux/shmem_fs.h
11260F: mm/shmem.c
11261
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011262TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011263M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011264L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011265W: https://linuxtv.org
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011266T: git git://linuxtv.org/media_tree.git
11267S: Odd fixes
11268F: drivers/media/usb/tm6000/
11269
Hans Verkuilc65fde12014-08-10 05:16:39 -030011270TW68 VIDEO4LINUX DRIVER
11271M: Hans Verkuil <hverkuil@xs4all.nl>
11272L: linux-media@vger.kernel.org
11273T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011274W: https://linuxtv.org
Hans Verkuilc65fde12014-08-10 05:16:39 -030011275S: Odd Fixes
11276F: drivers/media/pci/tw68/
11277
Alan Cox4e688522008-04-30 00:52:11 -070011278TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020011279M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030011280M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030011281M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010011282R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010011283W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070011284L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Jarkko Sakkinend9912842016-03-01 08:48:41 +020011285Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
11286T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
Alan Cox4e688522008-04-30 00:52:11 -070011287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011288F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070011289
Ashley Lai1a0f1b22014-12-04 21:01:51 -060011290TPM IBM_VTPM DEVICE DRIVER
11291M: Ashley Lai <ashleydlai@gmail.com>
11292W: http://tpmdd.sourceforge.net
11293L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11294S: Maintained
11295F: drivers/char/tpm/tpm_ibmvtpm*
11296
Joe Perchesd6f005a2009-10-26 16:49:40 -070011297TRACING
11298M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070011299M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011300T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070011301S: Maintained
11302F: Documentation/trace/ftrace.txt
11303F: arch/*/*/*/ftrace.h
11304F: arch/*/kernel/ftrace.c
11305F: include/*/ftrace.h
11306F: include/linux/trace*.h
11307F: include/trace/
11308F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000011309F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070011310
Linus Torvalds1da177e2005-04-16 15:20:36 -070011311TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070011312M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070011313T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011314S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020011315K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070011316
Alan Cox4e688522008-04-30 00:52:11 -070011317TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080011318M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070011319M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080011320S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070011321T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030011322F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020011323F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011324F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010011325F: include/linux/serial_core.h
11326F: include/linux/serial.h
11327F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011328F: include/uapi/linux/serial_core.h
11329F: include/uapi/linux/serial.h
11330F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070011331
Antti Palosaari91952bc2012-10-01 12:28:46 -030011332TUA9001 MEDIA DRIVER
11333M: Antti Palosaari <crope@iki.fi>
11334L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011335W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030011336W: http://palosaari.fi/linux/
11337Q: http://patchwork.linuxtv.org/project/linux-media/list/
11338T: git git://linuxtv.org/anttip/media_tree.git
11339S: Maintained
11340F: drivers/media/tuners/tua9001*
11341
Grant Grundler740db6d2008-02-17 11:53:49 -070011342TULIP NETWORK DRIVERS
Grant Grundler740db6d2008-02-17 11:53:49 -070011343L: netdev@vger.kernel.org
Grant Grundlercf869eb2015-11-19 17:56:12 -080011344L: linux-parisc@vger.kernel.org
11345S: Orphan
Joe Perches0f04e2a2012-01-10 15:08:56 -080011346F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011347
11348TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000011349M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011350W: http://vtun.sourceforge.net/tun
11351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011352F: Documentation/networking/tuntap.txt
11353F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011354
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011355TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011356M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020011357M: Ralf Baechle <ralf@linux-mips.org>
11358L: linux-mips@linux-mips.org
11359Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011361F: drivers/tc/
11362F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011363
Linus Torvalds1da177e2005-04-16 15:20:36 -070011364U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011365M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011366L: linux-scsi@vger.kernel.org
11367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011368F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011369
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070011370UBI FILE SYSTEM (UBIFS)
Richard Weinbergera7859932016-03-03 14:22:14 +010011371M: Richard Weinberger <richard@nod.at>
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011372M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030011373M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070011374L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030011375T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070011376W: http://www.linux-mtd.infradead.org/doc/ubifs.html
Richard Weinbergera7859932016-03-03 14:22:14 +010011377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011378F: Documentation/filesystems/ubifs.txt
11379F: fs/ubifs/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070011380
Greg Ungerere1632fa2015-06-19 10:40:03 +100011381UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070011382M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010011383W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100011384L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010011385L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100011386T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010011387S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100011388F: arch/m68k/coldfire/
11389F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070011390F: arch/m68k/*/*_no.*
11391F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010011392
Linus Torvalds1da177e2005-04-16 15:20:36 -070011393UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070011394M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011396F: Documentation/filesystems/udf.txt
11397F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011398
Alan Coxcc2020e2008-05-19 14:21:51 +010011399UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011400M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010011401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011402F: Documentation/filesystems/ufs.txt
11403F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010011404
David Herrmann0a09d3a2012-06-10 15:16:28 +020011405UHID USERSPACE HID IO DRIVER:
11406M: David Herrmann <dh.herrmann@googlemail.com>
11407L: linux-input@vger.kernel.org
11408S: Maintained
11409F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011410F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020011411
David Vrabel18332a82008-09-17 16:34:44 +010011412ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010011413L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010011414S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000011415F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070011416F: include/linux/uwb.h
11417F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010011418
GuanXuetaob31d8272011-01-16 00:35:49 +080011419UNICORE32 ARCHITECTURE:
11420M: Guan Xuetao <gxt@mprc.pku.edu.cn>
11421W: http://mprc.pku.edu.cn/~guanxuetao/linux
11422S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080011423T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080011424F: arch/unicore32/
11425
Tony Finchd8379ab2009-11-27 15:50:30 +000011426UNIFDEF
11427M: Tony Finch <dot@dotat.at>
11428W: http://dotat.at/prog/unifdef
11429S: Maintained
11430F: scripts/unifdef.c
11431
Linus Torvalds1da177e2005-04-16 15:20:36 -070011432UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011433M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011434W: http://www.kernel.dk
11435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011436F: Documentation/cdrom/
11437F: drivers/cdrom/cdrom.c
11438F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011439F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011440
Benjamin Romer56df0122014-03-07 13:02:21 -060011441UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070011442M: David Kershner <david.kershner@unisys.com>
11443L: sparmaintainer@unisys.com (Unisys internal)
11444S: Supported
11445F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060011446
Vinayak Holikatti9941fa6e2012-04-20 14:11:50 +053011447UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11448M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa6e2012-04-20 14:11:50 +053011449L: linux-scsi@vger.kernel.org
11450S: Supported
11451F: Documentation/scsi/ufs.txt
11452F: drivers/scsi/ufs/
11453
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070011454UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011455M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010011456M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070011457W: http://www.linux-mtd.infradead.org/
11458L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020011459T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010011460S: Supported
Joe Perches80811492009-04-08 20:20:27 -070011461F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070011462F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011463F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070011464
Linus Torvalds1da177e2005-04-16 15:20:36 -070011465USB ACM DRIVER
Oliver Neukumca1c3e62016-02-08 18:30:34 +010011466M: Oliver Neukum <oneukum@suse.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070011467L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011469F: Documentation/usb/acm.txt
11470F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011471
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020011472USB AR5523 WIRELESS DRIVER
11473M: Pontus Fuchs <pontus.fuchs@gmail.com>
11474L: linux-wireless@vger.kernel.org
11475S: Maintained
11476F: drivers/net/wireless/ath/ar5523/
11477
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011478USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000011479M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011480M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011481L: linux-usb@vger.kernel.org
11482L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011483S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011484F: drivers/usb/storage/uas.c
11485
Linus Torvalds1da177e2005-04-16 15:20:36 -070011486USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011487M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011488L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011490F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011491F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011492
Keith Packard66e3e592015-03-19 20:36:49 -070011493USB CHAOSKEY DRIVER
11494M: Keith Packard <keithp@keithp.com>
11495L: linux-usb@vger.kernel.org
11496S: Maintained
11497F: drivers/usb/misc/chaoskey.c
11498
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011499USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011500M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011501L: linux-usb@vger.kernel.org
11502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011503F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011504
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011505USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011506M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011507L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011508W: http://www.linux-usb.org/usbnet
11509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011510F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011511
Alan Coxcc2020e2008-05-19 14:21:51 +010011512USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011513M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011514L: rio500-users@lists.sourceforge.net
11515W: http://rio500.sourceforge.net
11516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011517F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011518
Linus Torvalds1da177e2005-04-16 15:20:36 -070011519USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011520M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011521L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011523F: Documentation/usb/ehci.txt
11524F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011525
David Brownell69ae9e32006-11-14 02:03:31 -080011526USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbia55f6282016-02-03 20:23:01 +020011527M: Felipe Balbi <balbi@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011528L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011529W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +030011530T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011532F: drivers/usb/gadget/
11533F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011534
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011535USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011536M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +010011537R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011538L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011539T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011540S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011541F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011542F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011543
Olav Kongas959eea22005-11-03 17:38:14 +020011544USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011545M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011546L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011548F: drivers/usb/host/isp116x*
11549F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011550
Woojung.Huh@microchip.com146498e2016-02-25 23:33:16 +000011551USB LAN78XX ETHERNET DRIVER
11552M: Woojung Huh <woojung.huh@microchip.com>
11553M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11554L: netdev@vger.kernel.org
11555S: Maintained
11556F: drivers/net/usb/lan78xx.*
11557
Linus Torvalds1da177e2005-04-16 15:20:36 -070011558USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011559M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011560L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011561L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011562S: Maintained
11563W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011564F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011565
Clemens Ladischaf399172011-01-10 16:32:54 +010011566USB MIDI DRIVER
11567M: Clemens Ladisch <clemens@ladisch.de>
11568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11569T: git git://git.alsa-project.org/alsa-kernel.git
11570S: Maintained
11571F: sound/usb/midi.*
11572
Joe Perches444ce9d2013-08-01 21:03:32 -070011573USB NETWORKING DRIVERS
11574L: linux-usb@vger.kernel.org
11575S: Odd Fixes
11576F: drivers/net/usb/
11577
Linus Torvalds1da177e2005-04-16 15:20:36 -070011578USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011579M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011580L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011582F: Documentation/usb/ohci.txt
11583F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011584
Peter Chen963ffa32015-02-15 12:22:59 +080011585USB OTG FSM (Finite State Machine)
Peter Chen60d77b3d2015-12-25 15:54:32 +080011586M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +080011587T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011588L: linux-usb@vger.kernel.org
11589S: Maintained
11590F: drivers/usb/common/usb-otg-fsm.c
11591
Valentina Manea563da3a2014-08-20 07:31:02 +030011592USB OVER IP DRIVER
11593M: Valentina Manea <valentina.manea.m@gmail.com>
11594M: Shuah Khan <shuah.kh@samsung.com>
11595L: linux-usb@vger.kernel.org
11596S: Maintained
Christian Lampartera6d6fc22016-02-24 19:30:35 +010011597F: Documentation/usb/usbip_protocol.txt
Valentina Manea563da3a2014-08-20 07:31:02 +030011598F: drivers/usb/usbip/
11599F: tools/usb/usbip/
11600
Linus Torvalds1da177e2005-04-16 15:20:36 -070011601USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011602M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011603L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011604L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011605T: git git://github.com/petkan/pegasus.git
11606W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011608F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011609
Felipe Balbid3ad5582012-05-21 16:24:49 +030011610USB PHY LAYER
Felipe Balbia55f6282016-02-03 20:23:01 +020011611M: Felipe Balbi <balbi@kernel.org>
Felipe Balbid3ad5582012-05-21 16:24:49 +030011612L: linux-usb@vger.kernel.org
11613T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11614S: Maintained
11615F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011616
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011617USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011618M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011619L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011620S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011621F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011622
Bjørn Mork4521b472015-12-03 19:24:23 +010011623USB QMI WWAN NETWORK DRIVER
11624M: Bjørn Mork <bjorn@mork.no>
11625L: netdev@vger.kernel.org
11626S: Maintained
11627F: Documentation/ABI/testing/sysfs-class-net-qmi
11628F: drivers/net/usb/qmi_wwan.c
11629
Linus Torvalds1da177e2005-04-16 15:20:36 -070011630USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011631M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011632L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011633L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011634T: git git://github.com/petkan/rtl8150.git
11635W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011637F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011638
Greg KHf896b792013-10-30 11:07:31 -070011639USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011640M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011641L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011643F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011644F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011645F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011646
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011647USB SMSC75XX ETHERNET DRIVER
11648M: Steve Glendinning <steve.glendinning@shawell.net>
11649L: netdev@vger.kernel.org
11650S: Maintained
11651F: drivers/net/usb/smsc75xx.*
11652
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011653USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011654M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011655L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011657F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011658
Linus Torvalds1da177e2005-04-16 15:20:36 -070011659USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011660M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011661L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011662W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011663T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011664S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011665F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011666F: drivers/usb/
11667F: include/linux/usb.h
11668F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011669
11670USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011671M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011672L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011674F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011675
David Brownell69ae9e32006-11-14 02:03:31 -080011676USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011677M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011678L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011679W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011681F: drivers/net/usb/usbnet.c
11682F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011683
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011684USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011685M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011686L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011687L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011688T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011689W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011690S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011691F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011692F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011693
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011694USB VISION DRIVER
11695M: Hans Verkuil <hverkuil@xs4all.nl>
11696L: linux-media@vger.kernel.org
11697T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011698W: https://linuxtv.org
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011699S: Odd Fixes
11700F: drivers/media/usb/usbvision/
11701
Laurent Pinchart8282da42012-10-04 02:32:42 +020011702USB WEBCAM GADGET
11703M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11704L: linux-usb@vger.kernel.org
11705S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011706F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011707F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011708
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011709USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011710M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011711L: linux-wireless@vger.kernel.org
11712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011713F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011714
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011715USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011716M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011717L: linux-usb@vger.kernel.org
11718S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011719F: drivers/usb/host/xhci*
11720F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011721
Linus Torvalds1da177e2005-04-16 15:20:36 -070011722USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011723L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011724W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011725S: Orphan
Kalle Valoed0ad062015-11-18 07:39:37 +020011726F: drivers/net/wireless/zydas/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011727
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011728USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011729M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011730L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011731L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011732T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011733W: http://royale.zerezo.com/zr364xx/
11734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011735F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011736F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011737
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011738ULPI BUS
11739M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11740L: linux-usb@vger.kernel.org
11741S: Maintained
11742F: drivers/usb/common/ulpi.c
11743F: include/linux/ulpi/
11744
Randy Dunlape7839f22008-10-12 16:11:45 -070011745USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011746M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011747M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011748L: user-mode-linux-devel@lists.sourceforge.net
11749L: user-mode-linux-user@lists.sourceforge.net
11750W: http://user-mode-linux.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -080011751T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011752S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011753F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011754F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011755F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011756F: fs/hostfs/
11757F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011758
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011759USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011760M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011761M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011762S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011763T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011764F: Documentation/DocBook/uio-howto.tmpl
11765F: drivers/uio/
11766F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011767
Karel Zak256cccb2012-06-01 10:13:09 +020011768UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011769M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011770L: util-linux@vger.kernel.org
11771W: http://en.wikipedia.org/wiki/Util-linux
11772T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011773S: Maintained
11774
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011775UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011776M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011777L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011778W: http://dev.gentoo.org/~spock/projects/uvesafb/
11779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011780F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011781F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011782
Stefan Agner456930d2015-09-02 18:06:33 -070011783VF610 NAND DRIVER
11784M: Stefan Agner <stefan@agner.ch>
11785L: linux-mtd@lists.infradead.org
11786S: Supported
11787F: drivers/mtd/nand/vf610_nfc.c
11788
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011789VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011790M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011792F: Documentation/filesystems/vfat.txt
11793F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011794
Alex Williamsoncba33452012-07-31 08:16:22 -060011795VFIO DRIVER
11796M: Alex Williamson <alex.williamson@redhat.com>
11797L: kvm@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011798T: git git://github.com/awilliam/linux-vfio.git
Alex Williamsoncba33452012-07-31 08:16:22 -060011799S: Maintained
11800F: Documentation/vfio.txt
11801F: drivers/vfio/
11802F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011803F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011804
Alex Williamsona714ea52015-06-18 11:59:22 -060011805VFIO PLATFORM DRIVER
11806M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11807L: kvm@vger.kernel.org
11808S: Maintained
11809F: drivers/vfio/platform/
11810
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011811VIDEOBUF2 FRAMEWORK
11812M: Pawel Osciak <pawel@osciak.com>
11813M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011814M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011815L: linux-media@vger.kernel.org
11816S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011817F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011818F: include/media/videobuf2-*
11819
Stephen Chandler Paul5523662e2015-10-24 13:10:29 -070011820VIRTUAL SERIO DEVICE DRIVER
11821M: Stephen Chandler Paul <thatslyude@gmail.com>
11822S: Maintained
11823F: drivers/input/serio/userio.c
11824F: include/uapi/linux/userio.h
11825
Amit Shah9a824462010-03-23 18:23:09 +053011826VIRTIO CONSOLE DRIVER
11827M: Amit Shah <amit.shah@redhat.com>
11828L: virtualization@lists.linux-foundation.org
11829S: Maintained
11830F: drivers/char/virtio_console.c
11831F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011832F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011833
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011834VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011835M: "Michael S. Tsirkin" <mst@redhat.com>
11836L: virtualization@lists.linux-foundation.org
11837S: Maintained
11838F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011839F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011840F: drivers/net/virtio_net.c
11841F: drivers/block/virtio_blk.c
11842F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011843F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011844
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011845VIRTIO DRIVERS FOR S390
11846M: Christian Borntraeger <borntraeger@de.ibm.com>
11847M: Cornelia Huck <cornelia.huck@de.ibm.com>
11848L: linux-s390@vger.kernel.org
11849L: virtualization@lists.linux-foundation.org
11850L: kvm@vger.kernel.org
11851S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011852F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011853
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011854VIRTIO GPU DRIVER
11855M: David Airlie <airlied@linux.ie>
11856M: Gerd Hoffmann <kraxel@redhat.com>
11857L: dri-devel@lists.freedesktop.org
11858L: virtualization@lists.linux-foundation.org
11859S: Maintained
11860F: drivers/gpu/drm/virtio/
11861F: include/uapi/linux/virtio_gpu.h
11862
Michael S. Tsirkin3a4d5c942010-01-14 06:17:27 +000011863VIRTIO HOST (VHOST)
11864M: "Michael S. Tsirkin" <mst@redhat.com>
11865L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011866L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c942010-01-14 06:17:27 +000011867L: netdev@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011868T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
Michael S. Tsirkin3a4d5c942010-01-14 06:17:27 +000011869S: Maintained
11870F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011871F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c942010-01-14 06:17:27 +000011872
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011873VIRTIO INPUT DRIVER
11874M: Gerd Hoffmann <kraxel@redhat.com>
11875S: Maintained
11876F: drivers/virtio/virtio_input.c
11877F: include/uapi/linux/virtio_input.h
11878
Linus Torvalds1da177e2005-04-16 15:20:36 -070011879VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011880S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011881F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011882
Harald Weltef0bf7f62009-06-17 20:22:39 +020011883VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011884M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011885M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011886S: Maintained
11887F: drivers/mmc/host/via-sdmmc.c
11888
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011889VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011890M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011891L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011892S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011893F: include/linux/via-core.h
11894F: include/linux/via-gpio.h
11895F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011896F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011897
Francois Romieu01f20732007-01-26 00:57:17 -080011898VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011899M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011900L: netdev@vger.kernel.org
11901S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011902F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011903
Alex Williamsonf73f8172015-09-18 22:29:39 +080011904VIRT LIB
11905M: Alex Williamson <alex.williamson@redhat.com>
11906M: Paolo Bonzini <pbonzini@redhat.com>
11907L: kvm@vger.kernel.org
11908S: Supported
11909F: virt/lib/
11910
Hans Verkuil77911fd2014-12-10 04:22:37 -030011911VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011912M: Hans Verkuil <hverkuil@xs4all.nl>
11913L: linux-media@vger.kernel.org
11914T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011915W: https://linuxtv.org
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011916S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011917F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011918
Patrick McHardybe7f8272007-10-23 20:26:36 -070011919VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011920M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011921L: netdev@vger.kernel.org
11922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011923F: drivers/net/macvlan.c
11924F: include/linux/if_*vlan.h
11925F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011926
Florian Fainelli55e331c2009-06-16 15:33:53 -070011927VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011928M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011929L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011930S: Maintained
11931F: drivers/vlynq/vlynq.c
11932F: include/linux/vlynq.h
11933
Martyn Welch390beae2012-05-03 17:52:36 +010011934VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011935M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011936M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011937M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11938L: devel@driverdev.osuosl.org
11939S: Maintained
11940T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11941F: Documentation/vme_api.txt
11942F: drivers/staging/vme/
11943F: drivers/vme/
11944F: include/linux/vme*
11945
Alok Kataria4488e092013-09-04 14:23:41 +053011946VMWARE HYPERVISOR INTERFACE
11947M: Alok Kataria <akataria@vmware.com>
11948L: virtualization@lists.linux-foundation.org
11949S: Supported
11950F: arch/x86/kernel/cpu/vmware.c
11951
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011952VMWARE BALLOON DRIVER
11953M: Xavier Deguillard <xdeguillard@vmware.com>
11954M: Philip Moltmann <moltmann@vmware.com>
11955M: "VMware, Inc." <pv-drivers@vmware.com>
11956L: linux-kernel@vger.kernel.org
11957S: Maintained
11958F: drivers/misc/vmw_balloon.c
11959
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011960VMWARE VMMOUSE SUBDRIVER
11961M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11962M: "VMware, Inc." <pv-drivers@vmware.com>
11963L: linux-input@vger.kernel.org
11964S: Maintained
11965F: drivers/input/mouse/vmmouse.c
11966F: drivers/input/mouse/vmmouse.h
11967
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011968VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011969M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011970M: "VMware, Inc." <pv-drivers@vmware.com>
11971L: netdev@vger.kernel.org
11972S: Maintained
11973F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011974
Alok Kataria851b1642009-10-13 14:51:05 -070011975VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011976M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011977M: VMware PV-Drivers <pv-drivers@vmware.com>
11978L: linux-scsi@vger.kernel.org
11979S: Maintained
11980F: drivers/scsi/vmw_pvscsi.c
11981F: drivers/scsi/vmw_pvscsi.h
11982
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011983VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011984M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011985M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011986L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011987W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011988T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011990F: drivers/regulator/
11991F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011992
David Ahern081958e2015-08-25 10:26:22 -070011993VRF
11994M: David Ahern <dsa@cumulusnetworks.com>
11995M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11996L: netdev@vger.kernel.org
11997S: Maintained
11998F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011999F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070012000
Juerg Haefligerab413192006-09-24 20:54:04 +020012001VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012002M: Juerg Haefliger <juergh@gmail.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012003L: linux-hwmon@vger.kernel.org
Juerg Haefligerab413192006-09-24 20:54:04 +020012004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012005F: Documentation/hwmon/vt1211
12006F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020012007
Roger Lucas1de9e372005-11-26 20:20:05 +010012008VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012009M: Roger Lucas <vt8231@hiddenengine.co.uk>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012010L: linux-hwmon@vger.kernel.org
Roger Lucas1de9e372005-11-26 20:20:05 +010012011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012012F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010012013
Tony Olech88095e72011-05-14 16:48:13 -040012014VUB300 USB to SDIO/SD/MMC bridge chip
12015M: Tony Olech <tony.olech@elandigitalsystems.com>
12016L: linux-mmc@vger.kernel.org
12017L: linux-usb@vger.kernel.org
12018S: Supported
12019F: drivers/mmc/host/vub300.c
12020
Linus Torvalds1da177e2005-04-16 15:20:36 -070012021W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070012022M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012024F: Documentation/w1/
12025F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012026
Charles Spirakis13927072006-07-05 18:05:15 +020012027W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012028M: Marc Hulsman <m.hulsman@tudelft.nl>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012029L: linux-hwmon@vger.kernel.org
Marc Hulsman25845c22008-06-08 10:59:41 -040012030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012031F: Documentation/hwmon/w83791d
12032F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020012033
Rudolf Marek61db0112006-12-12 18:18:30 +010012034W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012035M: Rudolf Marek <r.marek@assembler.cz>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012036L: linux-hwmon@vger.kernel.org
Rudolf Marek61db0112006-12-12 18:18:30 +010012037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012038F: Documentation/hwmon/w83793
12039F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010012040
Jean Delvaree3760b42010-10-28 20:31:49 +020012041W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070012042M: Jean Delvare <jdelvare@suse.com>
Guenter Roeck968ce1b2016-03-22 15:11:03 -070012043L: linux-hwmon@vger.kernel.org
Jean Delvaree3760b42010-10-28 20:31:49 +020012044S: Maintained
12045F: drivers/hwmon/w83795.c
12046
Linus Torvalds1da177e2005-04-16 15:20:36 -070012047W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012048M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012050F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070012051
Hans de Goedeb4e05922014-07-20 13:35:44 -070012052WACOM PROTOCOL 4 SERIAL TABLETS
12053M: Julian Squires <julian@cipht.net>
12054M: Hans de Goede <hdegoede@redhat.com>
12055L: linux-input@vger.kernel.org
12056S: Maintained
12057F: drivers/input/tablet/wacom_serial4.c
12058
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012059WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070012060M: Wim Van Sebroeck <wim@iguana.be>
Guenter Roeck1f32f832015-12-05 22:18:25 -080012061R: Guenter Roeck <linux@roeck-us.net>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000012062L: linux-watchdog@vger.kernel.org
12063W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010012064T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012066F: Documentation/watchdog/
12067F: drivers/watchdog/
12068F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012069F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010012070
Linus Torvalds1da177e2005-04-16 15:20:36 -070012071WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012072M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012073L: linux-scsi@vger.kernel.org
12074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012075F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070012076
David Herrmannb22e00f2011-09-06 13:50:40 +020012077WIIMOTE HID DRIVER
12078M: David Herrmann <dh.herrmann@googlemail.com>
12079L: linux-input@vger.kernel.org
12080S: Maintained
12081F: drivers/hid/hid-wiimote*
12082
David Härdemane258b802009-09-21 17:04:53 -070012083WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070012084M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070012085S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070012086F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070012087
William Breathitt Grayc36a4832016-02-28 23:54:46 -050012088WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12089M: William Breathitt Gray <vilhelm.gray@gmail.com>
12090L: linux-watchdog@vger.kernel.org
12091S: Maintained
12092F: drivers/watchdog/ebc-c384_wdt.c
12093
William Breathitt Gray9c26df92016-01-20 13:45:33 -050012094WINSYSTEMS WS16C48 GPIO DRIVER
12095M: William Breathitt Gray <vilhelm.gray@gmail.com>
12096L: linux-gpio@vger.kernel.org
12097S: Maintained
12098F: drivers/gpio/gpio-ws16c48.c
12099
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012100WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070012101M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012102M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070012103L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012104S: Supported
12105W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070012106F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070012107F: include/linux/wimax/debug.h
12108F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012109F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070012110F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080012111
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012112WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012113M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012115F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050012116
Linus Torvalds1da177e2005-04-16 15:20:36 -070012117WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012118M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070012119L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030012120W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070012121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012122F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070012123
Mark Brown055bcbc2010-08-13 14:18:12 +010012124WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010012125L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010012126T: git https://github.com/CirrusLogic/linux-drivers.git
12127W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010012128S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080012129F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000012130F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12131F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12132F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010012133F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010012134F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012135F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010012136F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010012137F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012138F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050012139F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090012140F: drivers/input/misc/wm831x-on.c
12141F: drivers/input/touchscreen/wm831x-ts.c
12142F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010012143F: drivers/mfd/arizona*
12144F: drivers/mfd/wm*.c
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000012145F: drivers/mfd/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010012146F: drivers/power/wm83*.c
12147F: drivers/rtc/rtc-wm83*.c
12148F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010012149F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010012150F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010012151F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010012152F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010012153F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080012154F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090012155F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010012156F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010012157F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010012158F: sound/soc/codecs/wm*
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000012159F: sound/soc/codecs/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010012160
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010012161WORKQUEUE
12162M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080012163R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010012164T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12165S: Maintained
12166F: include/linux/workqueue.h
12167F: kernel/workqueue.c
12168F: Documentation/workqueue.txt
12169
Linus Torvalds1da177e2005-04-16 15:20:36 -070012170X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000012171M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012172L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000012173S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070012174F: Documentation/networking/x25*
12175F: include/net/x25*
12176F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012177
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070012178X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070012179M: Thomas Gleixner <tglx@linutronix.de>
12180M: Ingo Molnar <mingo@redhat.com>
12181M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080012182M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010012183L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010012184T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070012185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012186F: Documentation/x86/
12187F: arch/x86/
Randy Dunlape2d1d6c02008-10-12 16:11:31 -070012188
Matthew Garrettd09448532010-02-11 10:40:13 -050012189X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070012190M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd09448532010-02-11 10:40:13 -050012191L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070012192T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -050012193S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070012194F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010012195F: drivers/platform/olpc/
Matthew Garrettd09448532010-02-11 10:40:13 -050012196
Ingo Molnarc1f5c542011-06-18 22:51:13 +020012197X86 MCE INFRASTRUCTURE
12198M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010012199M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020012200L: linux-edac@vger.kernel.org
12201S: Maintained
12202F: arch/x86/kernel/cpu/mcheck/*
12203
Borislav Petkov79ebdc92015-10-20 11:54:49 +020012204X86 MICROCODE UPDATE SUPPORT
12205M: Borislav Petkov <bp@alien8.de>
12206S: Maintained
12207F: arch/x86/kernel/cpu/microcode/*
12208
Andy Lutomirskif0905c52014-12-12 16:25:47 -080012209X86 VDSO
12210M: Andy Lutomirski <luto@amacapital.net>
12211L: linux-kernel@vger.kernel.org
12212T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12213S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020012214F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080012215
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012216XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020012217M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012218L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012219W: https://linuxtv.org
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012220T: git git://linuxtv.org/media_tree.git
12221S: Maintained
12222F: drivers/media/tuners/tuner-xc2028.*
12223
Ian Campbellc4468082011-04-27 15:26:46 -070012224XEN HYPERVISOR INTERFACE
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040012225M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
12226M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk101ecde2016-04-01 11:26:08 -040012227M: Juergen Gross <jgross@suse.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012228L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000012229T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070012230S: Supported
12231F: arch/x86/xen/
12232F: drivers/*/xen-*front.c
12233F: drivers/xen/
12234F: arch/x86/include/asm/xen/
12235F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012236F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070012237
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012238XEN HYPERVISOR ARM
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012239M: Stefano Stabellini <sstabellini@kernel.org>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012240L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012241S: Maintained
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012242F: arch/arm/xen/
12243F: arch/arm/include/asm/xen/
12244
Stefano Stabellinib475e832013-06-04 16:13:23 +000012245XEN HYPERVISOR ARM64
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012246M: Stefano Stabellini <sstabellini@kernel.org>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012247L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini85d1a292016-03-29 11:01:16 +010012248S: Maintained
Stefano Stabellinib475e832013-06-04 16:13:23 +000012249F: arch/arm64/xen/
12250F: arch/arm64/include/asm/xen/
12251
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012252XEN NETWORK BACKEND DRIVER
Wei Liu83860402013-09-26 12:41:53 +010012253M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012254L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012255L: netdev@vger.kernel.org
12256S: Supported
12257F: drivers/net/xen-netback/*
12258
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012259XEN PCI SUBSYSTEM
12260M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012261L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020012262S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012263F: arch/x86/pci/*xen*
12264F: drivers/pci/*xen*
12265
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012266XEN BLOCK SUBSYSTEM
12267M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010012268M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012269L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12270S: Supported
12271F: drivers/block/xen-blkback/*
12272F: drivers/block/xen*
12273
Juergen Gross15d03602014-08-28 06:44:13 +020012274XEN PVSCSI DRIVERS
12275M: Juergen Gross <jgross@suse.com>
12276L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12277L: linux-scsi@vger.kernel.org
12278S: Supported
12279F: drivers/scsi/xen-scsifront.c
12280F: drivers/xen/xen-scsiback.c
12281F: include/xen/interface/io/vscsiif.h
12282
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012283XEN SWIOTLB SUBSYSTEM
12284M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012285L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012286S: Supported
12287F: arch/x86/xen/*swiotlb*
12288F: drivers/xen/*swiotlb*
12289
Linus Torvalds1da177e2005-04-16 15:20:36 -070012290XFS FILESYSTEM
12291P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090012292M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000012293M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100012294L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070012295W: http://oss.sgi.com/projects/xfs
Fengguang Wu9f273c22016-01-20 15:03:25 -080012296T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070012298F: Documentation/filesystems/xfs.txt
12299F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012300
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012301XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000012302M: Anirudha Sarangi <anirudh@xilinx.com>
12303M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012304S: Maintained
12305F: drivers/net/ethernet/xilinx/xilinx_axienet*
12306
Peter Korsgaard238b8722006-12-06 20:35:17 -080012307XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012308M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080012309L: linux-serial@vger.kernel.org
12310S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012311F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080012312
Laurent Pinchartdf330512013-05-15 11:36:19 -030012313XILINX VIDEO IP CORES
12314M: Hyun Kwon <hyun.kwon@xilinx.com>
12315M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12316L: linux-media@vger.kernel.org
12317T: git git://linuxtv.org/media_tree.git
12318S: Supported
12319F: Documentation/devicetree/bindings/media/xilinx/
12320F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030012321F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030012322
Eli Billauer74316942014-09-09 09:38:01 +030012323XILLYBUS DRIVER
12324M: Eli Billauer <eli.billauer@gmail.com>
12325L: linux-kernel@vger.kernel.org
12326S: Supported
12327F: drivers/char/xillybus/
12328
Max Filippovf620e4b2014-03-12 21:55:26 +040012329XTENSA XTFPGA PLATFORM SUPPORT
12330M: Max Filippov <jcmvbkbc@gmail.com>
12331L: linux-xtensa@linux-xtensa.org
12332S: Maintained
12333F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030012334F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040012335
Linus Torvalds1da177e2005-04-16 15:20:36 -070012336YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012337M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012338L: linux-hams@vger.kernel.org
12339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012340F: drivers/net/hamradio/yam*
12341F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012342
Henkaf64a5e2005-10-12 15:02:56 +020012343YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012344M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020012345L: usbb2k-api-dev@nongnu.org
12346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012347F: Documentation/input/yealink.txt
12348F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020012349
Linus Torvalds1da177e2005-04-16 15:20:36 -070012350Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012351M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012352W: http://yaina.de/jreuter/
12353W: http://www.qsl.net/dl1bke/
12354L: linux-hams@vger.kernel.org
12355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012356F: Documentation/networking/z8530drv.txt
12357F: drivers/net/hamradio/*scc.c
12358F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012359
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012360ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0bb181c2016-02-02 16:57:23 -080012361M: Seth Jennings <sjenning@redhat.com>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012362L: linux-mm@kvack.org
12363S: Maintained
12364F: mm/zbud.c
12365F: include/linux/zbud.h
12366
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012367ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012368M: Daniel Drake <dsd@gentoo.org>
12369M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012370W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070012371L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012372L: zd1211-devs@lists.sourceforge.net (subscribers-only)
12373S: Maintained
Kalle Valo69483002015-11-18 09:27:32 +020012374F: drivers/net/wireless/zydas/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012375
Dan Streetman20263022015-06-30 14:59:57 -070012376ZPOOL COMPRESSED PAGE STORAGE API
12377M: Dan Streetman <ddstreet@ieee.org>
12378L: linux-mm@kvack.org
12379S: Maintained
12380F: mm/zpool.c
12381F: include/linux/zpool.h
12382
Linus Torvalds1da177e2005-04-16 15:20:36 -070012383ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070012384L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030012385L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070012386W: http://mjpeg.sourceforge.net/driver-zoran/
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012387T: hg https://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030012388S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030012389F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012390
Minchan Kim6920f2c2014-01-30 15:45:56 -080012391ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12392M: Minchan Kim <minchan@kernel.org>
12393M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070012394R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080012395L: linux-kernel@vger.kernel.org
12396S: Maintained
12397F: drivers/block/zram/
12398F: Documentation/blockdev/zram.txt
12399
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012400ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012401M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012402S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012403F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012404
Minchan Kimeae70d02014-01-30 15:45:57 -080012405ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12406M: Minchan Kim <minchan@kernel.org>
12407M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070012408R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080012409L: linux-mm@kvack.org
12410S: Maintained
12411F: mm/zsmalloc.c
12412F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070012413F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080012414
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012415ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0bb181c2016-02-02 16:57:23 -080012416M: Seth Jennings <sjenning@redhat.com>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012417L: linux-mm@kvack.org
12418S: Maintained
12419F: mm/zswap.c
12420
Linus Torvalds1da177e2005-04-16 15:20:36 -070012421THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070012422M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070012423L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080012424Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040012425T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012426S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070012427F: *
12428F: */