blob: 7b8c0583381a2d5463c2f5510fb36c8498497149 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
Akash Shende6f9e2452015-02-16 15:59:48 -080037 (scripts/checkpatch.pl) to catch trivial style violations.
Andy Whitcroft0a920b52007-06-01 00:46:48 -070038 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Stephen Hemminger08602d72015-06-03 13:32:02 -070054 of the Linux Foundation certificate of contribution and should
55 include a Signed-off-by: line. The current version of this
56 "Developer's Certificate of Origin" (DCO) is listed in the file
Randy Dunlap45003712007-08-30 23:56:37 -070057 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
Paul E. McKenneyeafbaac2014-06-02 09:06:37 -070073 R: Designated reviewer: FullName <address@domain>
74 These reviewers should be CCed on patches.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070075 L: Mailing list that is relevant to this area
76 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080077 Q: Patchwork web based patch tracking system site
Joe Perchescea83212014-03-03 15:38:38 -080078 T: SCM tree type and location.
79 Type is one of: git, hg, quilt, stgit, topgit
Joe Perchesc7c4fb12009-10-26 16:49:48 -070080 S: Status, one of the following:
81 Supported: Someone is actually paid to look after this.
82 Maintained: Someone actually looks after it.
83 Odd Fixes: It has a maintainer but they don't have time to do
84 much other than throw the odd patch in. See below..
85 Orphan: No current maintainer [but maybe you could take the
86 role as you write your new code].
87 Obsolete: Old code. Something tagged obsolete generally means
88 it has been replaced by a better system and you
89 should be using that.
90 F: Files and directories with wildcard patterns.
91 A trailing slash includes all files and subdirectory files.
92 F: drivers/net/ all files in and below drivers/net
93 F: drivers/net/* all files in drivers/net, but not below
94 F: */net/* all files in "any top level directory"/net
95 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070096 N: Files and directories with regex patterns.
97 N: [^a-z]tegra all files whose path contains the word tegra
98 One pattern per line. Multiple N: lines acceptable.
Joe Perches6ab88e02014-01-23 15:54:22 -080099 scripts/get_maintainer.pl has different behavior for files that
100 match F: pattern and matches of N: patterns. By default,
101 get_maintainer will not look at git log history when an F: pattern
102 match occurs. When an N: match occurs, git log history is used
103 to also notify the people that have git commit signatures.
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 X: Files and directories that are NOT maintained, same rules as F:
105 Files exclusions are tested before file matches.
106 Can be useful for excluding a specific subdirectory, for instance:
107 F: net/
108 X: net/ipv6/
109 matches all files in and below net excluding net/ipv6/
110 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700111 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700113 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700115 matches patches or files that contain one or more of the words
116 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119Note: For the hard of thinking, this list is meant to remain in alphabetical
120order. If you could add yourselves to it in alphabetical order that would be
121so much easier [Ed]
122
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700123Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700125 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700126
Steffen Klasserta6d89912007-08-10 14:05:27 -07001273C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700128M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700129L: netdev@vger.kernel.org
130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700131F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700132F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700135M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700136L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700138F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
adam radfordc4de0ce2010-03-08 12:40:36 -08001403WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800143W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800145F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
14753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700148M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149L: linux-scsi@vger.kernel.org
150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700151F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Alexander Aring68d96dc2014-07-11 10:24:19 +02001536LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154M: Alexander Aring <alex.aring@gmail.com>
Jukka Rissanen6970c342014-09-15 11:03:36 +0300155M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Alexander Aring68d96dc2014-07-11 10:24:19 +0200156L: linux-bluetooth@vger.kernel.org
Varka Bhadramebef9c12014-08-08 17:32:45 +0530157L: linux-wpan@vger.kernel.org
Alexander Aring68d96dc2014-07-11 10:24:19 +0200158S: Maintained
159F: net/6lowpan/
Alexander Aring6304f8f2014-07-28 15:16:30 +0200160F: include/net/6lowpan.h
Alexander Aringea9eb692015-08-11 21:44:10 +0200161F: Documentation/networking/6lowpan.txt
Alexander Aring68d96dc2014-07-11 10:24:19 +0200162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700164M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165L: linux-hams@vger.kernel.org
166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700167F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700170M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700173F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
1758250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800176M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177L: linux-serial@vger.kernel.org
178W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700179S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700180T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800181F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700182F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
1848390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700185L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000186S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700187F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001899P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700190M: Eric Van Hensbergen <ericvh@gmail.com>
191M: Ron Minnich <rminnich@sandia.gov>
192M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100193L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500194W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800195Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800196T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700198F: Documentation/filesystems/9p.txt
199F: fs/9p/
Rob Landley2315cb12013-05-28 13:47:58 -0500200F: net/9p/
201F: include/net/9p/
202F: include/uapi/linux/virtio_9p.h
203F: include/trace/events/9p.h
204
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800205
Antti Palosaari91952bc2012-10-01 12:28:46 -0300206A8293 MEDIA DRIVER
207M: Antti Palosaari <crope@iki.fi>
208L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200209W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300210W: http://palosaari.fi/linux/
211Q: http://patchwork.linuxtv.org/project/linux-media/list/
212T: git git://linuxtv.org/anttip/media_tree.git
213S: Maintained
214F: drivers/media/dvb-frontends/a8293*
215
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700216AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700217M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700218L: linux-scsi@vger.kernel.org
219W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700221F: Documentation/scsi/aacraid.txt
222F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Josh Triplettea8f8fc2014-06-06 14:38:27 -0700224ABI/API
225L: linux-api@vger.kernel.org
226F: Documentation/ABI/
227F: include/linux/syscalls.h
228F: include/uapi/
229F: kernel/sys_ni.c
230
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700231ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100232M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200233L: lm-sensors@lm-sensors.org
234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700235F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200236
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700237ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700238M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700239L: lm-sensors@lm-sensors.org
240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700241F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700242
William Breathitt Gray1b06d642016-01-20 13:50:11 -0500243ACCES 104-DIO-48E GPIO DRIVER
244M: William Breathitt Gray <vilhelm.gray@gmail.com>
245L: linux-gpio@vger.kernel.org
246S: Maintained
247F: drivers/gpio/gpio-104-dio-48e.c
248
William Breathitt Gray6ddcf9b2015-11-23 12:54:50 -0500249ACCES 104-IDI-48 GPIO DRIVER
250M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
251L: linux-gpio@vger.kernel.org
252S: Maintained
253F: drivers/gpio/gpio-104-idi-48.c
254
William Breathitt Graye2558982015-10-28 17:24:16 -0400255ACCES 104-IDIO-16 GPIO DRIVER
256M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
257L: linux-gpio@vger.kernel.org
258S: Maintained
259F: drivers/gpio/gpio-104-idio-16.c
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700262M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263L: linux-acenic@sunsite.dk
264S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700265F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Peter Feuerere86435e2009-06-21 18:53:03 +0200267ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700268M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500269L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700270W: http://piie.net/?section=acerhdf
271S: Maintained
272F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200273
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000274ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800275M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500276L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700278F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280ACPI
Joe Perches9c3646d2015-06-25 15:02:00 -0700281M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +0100282M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500283L: linux-acpi@vger.kernel.org
Rafael J. Wysocki360818b2013-10-09 01:48:26 +0200284W: https://01.org/linux-acpi
285Q: https://patchwork.kernel.org/project/linux-acpi/list/
286T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Len Brown8b59a452007-01-08 19:03:28 -0500287S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700288F: drivers/acpi/
289F: drivers/pnp/pnpacpi/
290F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700291F: include/acpi/
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800292F: Documentation/acpi/
Lv Zheng89ca78a2013-06-20 08:02:44 +0800293F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600294F: drivers/pci/*acpi*
295F: drivers/pci/*/*acpi*
296F: drivers/pci/*/*/*acpi*
Yaowei Bai3a75ef02015-01-17 15:31:07 +0800297F: tools/power/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500298
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200299ACPI COMPONENT ARCHITECTURE (ACPICA)
300M: Robert Moore <robert.moore@intel.com>
301M: Lv Zheng <lv.zheng@intel.com>
Joe Perches9c3646d2015-06-25 15:02:00 -0700302M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200303L: linux-acpi@vger.kernel.org
304L: devel@acpica.org
305W: https://acpica.org/
306W: https://github.com/acpica/acpica/
307Q: https://patchwork.kernel.org/project/linux-acpi/list/
308T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
309S: Supported
310F: drivers/acpi/acpica/
311F: include/acpi/
Lv Zheng2754c442014-01-15 12:04:24 +0800312F: tools/power/acpi/
Rafael J. Wysocki37749292013-10-09 01:48:35 +0200313
Len Brown8b59a452007-01-08 19:03:28 -0500314ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700315M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500316L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200317W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700319F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Len Brown8b59a452007-01-08 19:03:28 -0500321ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500323L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200324W: https://01.org/linux-acpi
Len Brown8b59a452007-01-08 19:03:28 -0500325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700326F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700327
Len Brown359acec2007-02-10 01:59:24 -0500328ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500330L: linux-acpi@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +0200331W: https://01.org/linux-acpi
Len Brown359acec2007-02-10 01:59:24 -0500332S: Supported
Dan Carpenter86f98a32015-12-01 11:58:40 +0300333F: drivers/acpi/acpi_video.c
Len Brown359acec2007-02-10 01:59:24 -0500334
Carlos Corbachobff431e2008-02-05 02:17:04 +0000335ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500336L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000339
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100340AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700341M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200342W: http://wiki.parisc-linux.org/AD1889
343L: linux-parisc@vger.kernel.org
344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700345F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
348M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700349W: http://wiki.analog.com/AD5254
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800350W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/misc/ad525x_dpot.c
353
354AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
355M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700356W: http://wiki.analog.com/AD5398
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800357W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358S: Supported
359F: drivers/regulator/ad5398.c
360
361AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
362M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700363W: http://wiki.analog.com/AD7142
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800364W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365S: Supported
366F: drivers/input/misc/ad714x.c
367
368AD7877 TOUCHSCREEN DRIVER
369M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700370W: http://wiki.analog.com/AD7877
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800371W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000372S: Supported
373F: drivers/input/touchscreen/ad7877.c
374
375AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
376M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700377W: http://wiki.analog.com/AD7879
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800378W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000379S: Supported
380F: drivers/input/touchscreen/ad7879.c
381
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700382ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
Jiri Kosinae5f64502015-08-09 09:11:34 +0200383M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700384S: Maintained
385
Michael Hennerich7302b9d2015-12-11 11:17:15 +0100386ADF7242 IEEE 802.15.4 RADIO DRIVER
387M: Michael Hennerich <michael.hennerich@analog.com>
388W: https://wiki.analog.com/ADF7242
389W: http://ez.analog.com/community/linux-device-drivers
390L: linux-wpan@vger.kernel.org
391S: Supported
392F: drivers/net/ieee802154/adf7242.c
393F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395ADM1025 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700396M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200397L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700399F: Documentation/hwmon/adm1025
400F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Corentin Labbecae2caa2007-02-14 21:15:04 +0100402ADM1029 HARDWARE MONITOR DRIVER
LABBE Corentinfce8ffa2014-05-08 16:07:45 +0200403M: Corentin Labbe <clabbe.montjoie@gmail.com>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100404L: lm-sensors@lm-sensors.org
405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700406F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100407
Michael Wucc0b88c2007-08-31 01:15:25 -0400408ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400409L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200410W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400411S: Orphan
Kalle Valod4a17302015-11-17 19:49:19 +0200412F: drivers/net/wireless/admtek/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400413
Sakari Ailuse8e31622012-11-12 18:14:39 -0300414ADP1653 FLASH CONTROLLER DRIVER
415M: Sakari Ailus <sakari.ailus@iki.fi>
416L: linux-media@vger.kernel.org
417S: Maintained
418F: drivers/media/i2c/adp1653.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -0200419F: include/media/i2c/adp1653.h
Sakari Ailuse8e31622012-11-12 18:14:39 -0300420
Michael Hennerich527a1a82010-10-28 11:31:28 +0000421ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
422M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700423W: http://wiki.analog.com/ADP5520
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800424W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000425S: Supported
426F: drivers/mfd/adp5520.c
427F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700428F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800429F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000430F: drivers/input/keyboard/adp5520-keys.c
431
432ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
433M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700434W: http://wiki.analog.com/ADP5588
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800435W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000436S: Supported
437F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800438F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000439
440ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
441M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700442W: http://wiki.analog.com/ADP8860
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800443W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000444S: Supported
445F: drivers/video/backlight/adp8860_bl.c
446
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100447ADS1015 HARDWARE MONITOR DRIVER
448M: Dirk Eibach <eibach@gdsys.de>
449L: lm-sensors@lm-sensors.org
450S: Maintained
451F: Documentation/hwmon/ads1015
452F: drivers/hwmon/ads1015.c
453F: include/linux/i2c/ads1015.h
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700456M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Jean Delvareb058b852009-12-09 20:36:08 +0100460ADT7475 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700461M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb058b852009-12-09 20:36:08 +0100462L: lm-sensors@lm-sensors.org
463S: Maintained
464F: Documentation/hwmon/adt7475
465F: drivers/hwmon/adt7475.c
466
Michael Hennerich527a1a82010-10-28 11:31:28 +0000467ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
468M: Michael Hennerich <michael.hennerich@analog.com>
Joe Perchesa3f531a2011-03-22 16:34:28 -0700469W: http://wiki.analog.com/ADXL345
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800470W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000471S: Supported
472F: drivers/input/misc/adxl34x.c
473
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400474ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Matthew Wilcox <matthew@wil.cx>
Jiri Slabyd8130622015-07-17 16:23:20 -0700476M: Hannes Reinecke <hare@suse.com>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400477L: linux-scsi@vger.kernel.org
478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700479F: Documentation/scsi/advansys.txt
480F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700483M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Antti Palosaari91952bc2012-10-01 12:28:46 -0300487AF9013 MEDIA DRIVER
488M: Antti Palosaari <crope@iki.fi>
489L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200490W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300491W: http://palosaari.fi/linux/
492Q: http://patchwork.linuxtv.org/project/linux-media/list/
493T: git git://linuxtv.org/anttip/media_tree.git
494S: Maintained
495F: drivers/media/dvb-frontends/af9013*
496
497AF9033 MEDIA DRIVER
498M: Antti Palosaari <crope@iki.fi>
499L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200500W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -0300501W: http://palosaari.fi/linux/
502Q: http://patchwork.linuxtv.org/project/linux-media/list/
503T: git git://linuxtv.org/anttip/media_tree.git
504S: Maintained
505F: drivers/media/dvb-frontends/af9033*
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200508L: linux-fsdevel@vger.kernel.org
509S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700510F: Documentation/filesystems/affs.txt
511F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700513AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700514M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700515L: linux-afs@lists.infradead.org
516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700517F: fs/afs/
518F: include/net/af_rxrpc.h
519F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700522M: David Airlie <airlied@linux.ie>
Dave Airlie878eaf62014-02-27 14:51:55 +1000523T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700525F: drivers/char/agp/
526F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800527F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700530M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531L: linux-scsi@vger.kernel.org
532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700533F: drivers/scsi/aha152x*
534F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Hannes Reinecke64624d42007-10-19 10:32:29 +0200536AIC7XXX / AIC79XX SCSI DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -0700537M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200538L: linux-scsi@vger.kernel.org
539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700540F: drivers/scsi/aic7xxx/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200541
Hans Verkuil450500a2012-11-23 07:11:33 -0300542AIMSLAB FM RADIO RECEIVER DRIVER
543M: Hans Verkuil <hverkuil@xs4all.nl>
544L: linux-media@vger.kernel.org
545T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200546W: https://linuxtv.org
Hans Verkuil450500a2012-11-23 07:11:33 -0300547S: Maintained
548F: drivers/media/radio/radio-aimslab*
549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700550AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700551M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700552L: linux-aio@kvack.org
553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700554F: fs/aio.c
555F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700556
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300557AIRSPY MEDIA DRIVER
558M: Antti Palosaari <crope@iki.fi>
559L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -0200560W: https://linuxtv.org
Antti Palosaari469d4ec2014-07-17 21:57:14 -0300561W: http://palosaari.fi/linux/
562Q: http://patchwork.linuxtv.org/project/linux-media/list/
563T: git git://linuxtv.org/anttip/media_tree.git
564S: Maintained
565F: drivers/media/usb/airspy/
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700568M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700569L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570W: http://www.linux-usb.org/SpeedTouch/
571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700572F: drivers/usb/atm/speedtch.c
573F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Pierre Ossman272f1332007-05-14 21:25:26 +0200575ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700576M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200579
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000580ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700581M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100582L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700584F: Documentation/i2c/busses/i2c-ali1563
585F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000586
LABBE Corentinbc368792015-07-17 16:39:42 +0200587ALLWINNER SECURITY SYSTEM
588M: Corentin Labbe <clabbe.montjoie@gmail.com>
589L: linux-crypto@vger.kernel.org
590S: Maintained
591F: drivers/crypto/sunxi-ss/
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700594M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700595M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500596M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700597S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700598L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700599F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Ley Foon Tanf62092f2015-02-04 16:32:18 +0800601ALTERA MAILBOX DRIVER
602M: Ley Foon Tan <lftan@altera.com>
603L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
604S: Maintained
605F: drivers/mailbox/mailbox-altera.c
606
Tien Hock Lohc5abbba2015-02-24 01:53:03 -0800607ALTERA PIO DRIVER
608M: Tien Hock Loh <thloh@altera.com>
609L: linux-gpio@vger.kernel.org
610S: Maintained
611F: drivers/gpio/gpio-altera.c
612
Vince Bridgers16b8b922014-03-17 17:52:40 -0500613ALTERA TRIPLE SPEED ETHERNET DRIVER
Vince Bridgersc53fed02014-10-09 10:08:42 -0500614M: Vince Bridgers <vbridger@opensource.altera.com>
Vince Bridgers16b8b922014-03-17 17:52:40 -0500615L: netdev@vger.kernel.org
616L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
617S: Maintained
618F: drivers/net/ethernet/altera/
619
Tobias Klauseradf92512011-02-09 10:58:29 +0100620ALTERA UART/JTAG UART SERIAL DRIVERS
621M: Tobias Klauser <tklauser@distanz.ch>
622L: linux-serial@vger.kernel.org
Tobias Klauser61bd0942014-02-25 15:01:49 -0800623L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Tobias Klauseradf92512011-02-09 10:58:29 +0100624S: Maintained
625F: drivers/tty/serial/altera_uart.c
626F: drivers/tty/serial/altera_jtaguart.c
627F: include/linux/altera_uart.h
628F: include/linux/altera_jtaguart.h
629
Tom Lendackyf4875e12013-11-12 11:46:57 -0600630AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
631M: Tom Lendacky <thomas.lendacky@amd.com>
632L: linux-crypto@vger.kernel.org
633S: Supported
634F: drivers/crypto/ccp/
635F: include/linux/ccp.h
636
Andreas Herrmann512d1022011-05-25 20:43:31 +0200637AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Huang Rui96818b52015-12-10 11:56:11 +0800638M: Huang Rui <ray.huang@amd.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200639L: lm-sensors@lm-sensors.org
Huang Rui96818b52015-12-10 11:56:11 +0800640S: Supported
Andreas Herrmann512d1022011-05-25 20:43:31 +0200641F: Documentation/hwmon/fam15h_power
642F: drivers/hwmon/fam15h_power.c
643
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700644AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Jordan Crouse67d76712008-05-12 14:02:22 -0700645L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Greg Kroah-Hartmanb4731972015-09-25 20:45:27 -0700646S: Orphan
Joe Perchesfaf2e1d2014-08-08 14:26:18 -0700647F: drivers/usb/gadget/udc/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700648
Jordan Crousef90b8112006-01-06 00:12:14 -0800649AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800650P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700651L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800652W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700654F: drivers/char/hw_random/geode-rng.c
655F: drivers/crypto/geode*
Jingoo Han8a61f012014-07-01 15:36:01 +0900656F: drivers/video/fbdev/geode/
Joe Perches679655d2009-04-07 20:44:32 -0700657F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800658
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200659AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200660M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200661L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100662T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200663S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800664F: drivers/iommu/amd_iommu*.[ch]
665F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200666
Oded Gabbay16423d62014-07-15 13:08:36 +0300667AMD KFD
Oded Gabbay1241e0b2015-05-10 12:37:28 +0300668M: Oded Gabbay <oded.gabbay@gmail.com>
Joe Perches49e7d9d2015-04-15 16:17:31 -0700669L: dri-devel@lists.freedesktop.org
670T: git git://people.freedesktop.org/~gabbayo/linux.git
671S: Supported
Oded Gabbay130e0372015-06-12 21:35:14 +0300672F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
673F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
Oded Gabbay32c22e92015-06-12 21:38:22 +0300674F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
Ben Gozff758a12014-10-07 14:43:07 +0300675F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
Joe Perches49e7d9d2015-04-15 16:17:31 -0700676F: drivers/gpu/drm/amd/amdkfd/
Oded Gabbay04df25d2015-01-05 18:15:45 +0200677F: drivers/gpu/drm/amd/include/cik_structs.h
678F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
Ben Gozff758a12014-10-07 14:43:07 +0300679F: drivers/gpu/drm/amd/include/vi_structs.h
Joe Perches49e7d9d2015-04-15 16:17:31 -0700680F: drivers/gpu/drm/radeon/radeon_kfd.c
681F: drivers/gpu/drm/radeon/radeon_kfd.h
682F: include/uapi/linux/kfd_ioctl.h
Oded Gabbay16423d62014-07-15 13:08:36 +0300683
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500684AMD XGBE DRIVER
685M: Tom Lendacky <thomas.lendacky@amd.com>
686L: netdev@vger.kernel.org
687S: Supported
688F: drivers/net/ethernet/amd/xgbe/
Lendacky, Thomas45198c72014-06-05 09:15:24 -0500689
Stelian Pop284f42b2006-12-12 18:18:31 +0100690AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100692S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200693F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100694
Tom Tuckerf94b5332006-09-22 15:22:48 -0700695AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700696M: Tom Tucker <tom@opengridcomputing.com>
697M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700698L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700700F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700701
Hans Verkuil531fca12012-11-23 06:53:24 -0300702ANALOG DEVICES INC AD9389B DRIVER
703M: Hans Verkuil <hans.verkuil@cisco.com>
704L: linux-media@vger.kernel.org
705S: Maintained
706F: drivers/media/i2c/ad9389b*
707
Lars-Peter Clausen614b4382015-01-23 12:52:34 -0300708ANALOG DEVICES INC ADV7180 DRIVER
709M: Lars-Peter Clausen <lars@metafoo.de>
710L: linux-media@vger.kernel.org
711W: http://ez.analog.com/community/linux-device-drivers
712S: Supported
713F: drivers/media/i2c/adv7180.c
714
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300715ANALOG DEVICES INC ADV7511 DRIVER
716M: Hans Verkuil <hans.verkuil@cisco.com>
717L: linux-media@vger.kernel.org
718S: Maintained
719F: drivers/media/i2c/adv7511*
720
Hans Verkuil531fca12012-11-23 06:53:24 -0300721ANALOG DEVICES INC ADV7604 DRIVER
722M: Hans Verkuil <hans.verkuil@cisco.com>
723L: linux-media@vger.kernel.org
724S: Maintained
725F: drivers/media/i2c/adv7604*
726
Hans Verkuilc40ddfa2013-08-12 10:02:48 -0300727ANALOG DEVICES INC ADV7842 DRIVER
728M: Hans Verkuil <hans.verkuil@cisco.com>
729L: linux-media@vger.kernel.org
730S: Maintained
731F: drivers/media/i2c/adv7842*
732
Michael Hennerich527a1a82010-10-28 11:31:28 +0000733ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200734M: Lars-Peter Clausen <lars@metafoo.de>
Michael Hennerich527a1a82010-10-28 11:31:28 +0000735L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700736W: http://wiki.analog.com/
Sonic Zhanga4edbc12014-01-29 14:05:55 -0800737W: http://ez.analog.com/community/linux-device-drivers
Michael Hennerich527a1a82010-10-28 11:31:28 +0000738S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100739F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200740F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000741F: sound/soc/codecs/ad1*
Mark Brownae48f5e2013-08-07 18:01:08 +0100742F: sound/soc/codecs/ad7*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000743F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100744F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000745
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400746ANALOG DEVICES INC ASOC DRIVERS
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -0700747L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400748L: alsa-devel@alsa-project.org (moderated for non-subscribers)
749W: http://blackfin.uclinux.org/
750S: Supported
751F: sound/soc/blackfin/*
Rob Herring7d1f9012014-12-26 13:47:30 -0600752
Lars-Peter Clausen4ce72ab2014-08-18 09:08:00 +0100753ANALOG DEVICES INC IIO DRIVERS
754M: Lars-Peter Clausen <lars@metafoo.de>
755M: Michael Hennerich <Michael.Hennerich@analog.com>
756W: http://wiki.analog.com/
757W: http://ez.analog.com/community/linux-device-drivers
758S: Supported
759F: drivers/iio/*/ad*
760X: drivers/iio/*/adjd*
761F: drivers/staging/iio/*/ad*
762F: staging/iio/trigger/iio-trig-bfin-timer.c
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400763
Lars-Peter Clausen0e3b67b2015-08-20 17:39:13 +0200764ANALOG DEVICES INC DMA DRIVERS
765M: Lars-Peter Clausen <lars@metafoo.de>
766W: http://ez.analog.com/community/linux-device-drivers
767S: Supported
768F: drivers/dma/dma-axi-dmac.c
769
Greg KH41c9e952015-01-18 16:33:24 +0900770ANDROID DRIVERS
771M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Baruch Siach27682402015-03-18 21:29:10 +0200772M: Arve Hjønnevåg <arve@android.com>
Greg KH41c9e952015-01-18 16:33:24 +0900773M: Riley Andrews <riandrews@android.com>
Lee Campbell0e4a5662015-05-24 14:47:38 -0700774T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg KH41c9e952015-01-18 16:33:24 +0900775L: devel@driverdev.osuosl.org
776S: Supported
777F: drivers/android/
778F: drivers/staging/android/
779
Johannes Berg42269062006-07-25 16:15:50 +0200780AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700781M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000782L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700783L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700785F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787APM DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +0200788M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina81024fc2011-05-04 13:41:31 +0200789S: Odd fixes
Fengguang Wu9f273c22016-01-20 15:03:25 -0800790T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
Joe Perches679655d2009-04-07 20:44:32 -0700791F: arch/x86/kernel/apm_32.c
792F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800793F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200794F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700796APPLE BCM5974 MULTITOUCH DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800797M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700798L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800799S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700800F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700801
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700802APPLE SMC DRIVER
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800803M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200804L: lm-sensors@lm-sensors.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -0800805S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700806F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700809M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700811F: drivers/net/appletalk/
812F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Duc Dang21c75322015-08-12 17:01:12 -0700814APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
815M: Duc Dang <dhdang@apm.com>
816S: Supported
817F: arch/arm64/boot/dts/apm/
818
Iyappan Subramanian24299502014-08-07 15:14:25 -0700819APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
820M: Iyappan Subramanian <isubramanian@apm.com>
821M: Keyur Chudgar <kchudgar@apm.com>
Iyappan Subramanian24299502014-08-07 15:14:25 -0700822S: Supported
823F: drivers/net/ethernet/apm/xgene/
824F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
825
Laurent Pinchart62a37dc2013-08-09 08:46:11 -0300826APTINA CAMERA SENSOR PLL
827M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
828L: linux-media@vger.kernel.org
829S: Maintained
830F: drivers/media/i2c/aptina-pll.*
831
Jaya Kumar1154ea72005-06-21 17:17:04 -0700832ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700833M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700834S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900835F: drivers/video/fbdev/arcfb.c
836F: drivers/video/fbdev/core/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700837
Michael Grzeschikc38f6ac2015-09-17 15:26:16 +0200838ARCNET NETWORK LAYER
839M: Michael Grzeschik <m.grzeschik@pengutronix.de>
840L: netdev@vger.kernel.org
841S: Maintained
842F: drivers/net/arcnet/
843F: include/uapi/linux/if_arcnet.h
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700848F: arch/arm/lib/floppydma.S
849F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Will Deacon6f965212011-07-01 14:38:53 +0100851ARM PMU PROFILING AND DEBUGGING
852M: Will Deacon <will.deacon@arm.com>
Mark Rutland70e238d2015-10-02 10:55:08 +0100853R: Mark Rutland <mark.rutland@arm.com>
Will Deacon6f965212011-07-01 14:38:53 +0100854S: Maintained
Mark Rutlanddd06a842015-10-02 10:55:07 +0100855F: arch/arm*/kernel/perf_*
Will Deacon6f965212011-07-01 14:38:53 +0100856F: arch/arm/oprofile/common.c
Mark Rutlanddd06a842015-10-02 10:55:07 +0100857F: arch/arm*/kernel/hw_breakpoint.c
858F: arch/arm*/include/asm/hw_breakpoint.h
859F: arch/arm*/include/asm/perf_event.h
Mark Rutlandfa8ad782015-07-06 12:23:53 +0100860F: drivers/perf/arm_pmu.c
861F: include/linux/perf/arm_pmu.h
Will Deacon6f965212011-07-01 14:38:53 +0100862
Russell Kingd4275352009-04-16 14:05:27 +0100863ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700864M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100866W: http://www.arm.linux.org.uk/
867S: Maintained
868F: arch/arm/
869
Stephen Boydd323c2432012-10-24 11:00:29 -0700870ARM SUB-ARCHITECTURES
871L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800872S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700873F: arch/arm/mach-*/
874F: arch/arm/plat-*/
875T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
876
Russell Kingcefbf4e2009-11-22 17:40:28 +0000877ARM PRIMECELL AACI PL041 DRIVER
878M: Russell King <linux@arm.linux.org.uk>
879S: Maintained
880F: sound/arm/aaci.*
881
882ARM PRIMECELL CLCD PL110 DRIVER
883M: Russell King <linux@arm.linux.org.uk>
884S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +0900885F: drivers/video/fbdev/amba-clcd.*
Russell Kingcefbf4e2009-11-22 17:40:28 +0000886
887ARM PRIMECELL KMI PL050 DRIVER
888M: Russell King <linux@arm.linux.org.uk>
889S: Maintained
890F: drivers/input/serio/ambakmi.*
891F: include/linux/amba/kmi.h
892
Russell King2761f5c2007-05-24 06:56:08 +0200893ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000894M: Russell King <linux@arm.linux.org.uk>
895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700896F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000897F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200898
Russell King1b4304e2013-02-11 15:26:27 +0000899ARM PRIMECELL UART PL010 AND PL011 DRIVERS
900M: Russell King <linux@arm.linux.org.uk>
901S: Maintained
902F: drivers/tty/serial/amba-pl01*.c
903F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800904
Russell Kingcefbf4e2009-11-22 17:40:28 +0000905ARM PRIMECELL BUS SUPPORT
906M: Russell King <linux@arm.linux.org.uk>
907S: Maintained
908F: drivers/amba/
909F: include/linux/amba/bus.h
910
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700912M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800914S: Maintained
915
Sergey Lapin9c784f92008-08-03 02:29:48 +0100916ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700917M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100919S: Maintained
920
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800921ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700922M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800924S: Maintained
925
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100926ARM/Allwinner sunXi SoC support
Maxime Ripard1b106692012-11-15 21:51:26 +0100927M: Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100928M: Chen-Yu Tsai <wens@csie.org>
Maxime Ripard1b106692012-11-15 21:51:26 +0100929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
930S: Maintained
Maxime Ripard5c6dcd72015-10-07 18:39:40 +0100931N: sun[x456789]i
Maxime Ripard60b0f382013-12-30 16:03:33 +0100932
933ARM/Allwinner SoC Clock Support
934M: Emilio López <emilio@elopez.com.ar>
935S: Maintained
936F: drivers/clk/sunxi/
Maxime Ripard1b106692012-11-15 21:51:26 +0100937
Carlo Caione7c1e3872014-09-12 20:18:31 +0200938ARM/Amlogic MesonX SoC support
939M: Carlo Caione <carlo@caione.org>
940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941S: Maintained
Beniamino Galvani12ddbad2014-11-18 17:22:34 -0300942F: drivers/media/rc/meson-ir.c
Carlo Caione7c1e3872014-09-12 20:18:31 +0200943N: meson[x68]
944
Tsahee Zidenbergeff506f2015-03-12 13:53:25 +0200945ARM/Annapurna Labs ALPINE ARCHITECTURE
946M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
947S: Maintained
948F: arch/arm/mach-alpine/
949
Alexandre Belloni8dca5ce2015-09-02 18:24:21 +0200950ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800951M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferred68b35f2015-04-29 11:57:18 +0200952M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800953M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800955W: http://www.linux4sam.org
Fengguang Wu9f273c22016-01-20 15:03:25 -0800956T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800957S: Supported
958F: arch/arm/mach-at91/
Alexandre Bellonif0a0a582014-11-07 21:58:21 +0100959F: include/soc/at91/
Mark Brown70e389c2013-10-16 12:04:07 +0100960F: arch/arm/boot/dts/at91*.dts
961F: arch/arm/boot/dts/at91*.dtsi
962F: arch/arm/boot/dts/sama*.dts
963F: arch/arm/boot/dts/sama*.dtsi
Alexandre Belloni5f58c972015-01-12 19:42:14 +0100964F: arch/arm/include/debug/at91.S
Andrew Victord4a89c72006-12-04 13:56:21 +0100965
Boris BREZILLON6e05dd42014-05-27 13:39:28 +0200966ARM/ATMEL AT91 Clock Support
967M: Boris Brezillon <boris.brezillon@free-electrons.com>
968S: Maintained
969F: drivers/clk/at91
970
Rob Herring986cf2e2011-06-22 11:28:53 -0500971ARM/CALXEDA HIGHBANK ARCHITECTURE
Rob Herring5d3ad8a2013-12-03 10:20:16 -0600972M: Rob Herring <robh@kernel.org>
Rob Herring986cf2e2011-06-22 11:28:53 -0500973L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
974S: Maintained
975F: arch/arm/mach-highbank/
976
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300977ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +0200978M: Krzysztof Halasa <khalasa@piap.pl>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300979S: Maintained
980F: arch/arm/mach-cns3xxx/
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300981
Sunil Goutham4863dea2015-05-26 19:20:15 -0700982ARM/CAVIUM THUNDER NETWORK DRIVER
983M: Sunil Goutham <sgoutham@cavium.com>
984M: Robert Richter <rric@kernel.org>
985L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
986S: Supported
Aleksey Makarov322e5cc2015-08-30 12:29:09 +0300987F: drivers/net/ethernet/cavium/thunder/
Sunil Goutham4863dea2015-05-26 19:20:15 -0700988
Alexander Shiyan386ab512012-11-17 17:57:24 +0400989ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
990M: Alexander Shiyan <shc_work@mail.ru>
991L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992S: Odd Fixes
Alexander Shiyanb8ba3872014-02-15 12:05:33 +0400993N: clps711x
Alexander Shiyan386ab512012-11-17 17:57:24 +0400994
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800995ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100996M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000997M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700998L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800999S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +01001000F: arch/arm/mach-ep93xx/
1001F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001002
1003ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001004M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001005L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001006S: Maintained
1007
Russell Kingd4275352009-04-16 14:05:27 +01001008ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001009M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001010L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -07001011S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001012F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -07001013F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +01001014
Mike Rapoportd48134e2008-08-20 09:03:26 +01001015ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001017L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001018S: Maintained
1019
Hubert Feurstein94150092009-10-07 08:36:07 +01001020ARM/CONTEC MICRO9 MACHINE SUPPORT
1021M: Hubert Feurstein <hubert.feurstein@contec.at>
1022S: Maintained
1023F: arch/arm/mach-ep93xx/micro9.c
1024
Pratik Patela06ae862014-11-03 11:07:35 -07001025ARM/CORESIGHT FRAMEWORK AND DRIVERS
1026M: Mathieu Poirier <mathieu.poirier@linaro.org>
1027L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1028S: Maintained
Mathieu Poirier01081f52015-03-30 14:13:41 -06001029F: drivers/hwtracing/coresight/*
Pratik Patela06ae862014-11-03 11:07:35 -07001030F: Documentation/trace/coresight.txt
1031F: Documentation/devicetree/bindings/arm/coresight.txt
Mathieu Poirier7a25ec82014-11-10 14:06:42 -07001032F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
Pratik Patela06ae862014-11-03 11:07:35 -07001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001035M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036S: Maintained
1037
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001038ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001039M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001040L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Krollb60e23b2015-05-07 19:29:03 +02001041T: git git://github.com/ulli-kroll/linux.git
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001042S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001043F: arch/arm/mach-gemini/
Hans Ulli Kroll98a9bb52015-05-20 17:49:31 +02001044F: drivers/rtc/rtc-gemini.c
Paulius Zaleckas881a95f2009-03-26 10:06:27 +02001045
Barry Songa990cbd2011-07-12 21:44:10 +08001046ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
Barry Song5abf58b2013-09-29 22:45:10 +08001047M: Barry Song <baohua@kernel.org>
Barry Songa990cbd2011-07-12 21:44:10 +08001048L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +08001049T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +08001050S: Maintained
1051F: arch/arm/mach-prima2/
Joe Perches4a9c44f2014-08-08 14:25:03 -07001052F: drivers/clk/sirf/
Barry Song05f30e82013-09-29 22:45:09 +08001053F: drivers/clocksource/timer-prima2.c
Barry Song5833ac92015-01-12 00:04:43 +08001054F: drivers/clocksource/timer-atlas7.c
Barry Songf8505ef2014-01-03 11:24:13 +08001055N: [^a-z]sirf
Barry Songa990cbd2011-07-12 21:44:10 +08001056
Baruch Siachc9d862c2015-04-28 13:59:43 +03001057ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1058M: Baruch Siach <baruch@tkos.co.il>
1059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1060S: Maintained
Baruch Siachcde137a2015-07-06 14:41:46 +03001061F: arch/arm/boot/dts/cx92755*
Baruch Siachc9d862c2015-04-28 13:59:43 +03001062N: digicolor
1063
Russell Kingd4275352009-04-16 14:05:27 +01001064ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001066L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001067W: http://www.arm.linux.org.uk/
1068S: Maintained
1069F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07001070F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +01001071
Uwe Kleine-König4721f3c2013-12-20 21:21:59 +01001072ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1073M: Uwe Kleine-König <kernel@pengutronix.de>
1074L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1075S: Maintained
1076N: efm32
1077
Russell Kinga9da4f72008-07-12 21:42:04 +01001078ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -07001079M: Daniel Ribeiro <drwyrm@gmail.com>
1080M: Stefan Schmidt <stefan@openezx.org>
1081M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +02001082L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +01001083W: http://www.openezx.org/
1084S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +02001085T: topgit git://git.openezx.org/openezx.git
1086F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +01001087
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001088ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001089M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001090L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +01001091S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -07001092T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +03001093F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +02001094
Russell Kingd4275352009-04-16 14:05:27 +01001095ARM/FOOTBRIDGE ARCHITECTURE
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/include/asm/hardware/dec21285.h
1101F: arch/arm/mach-footbridge/
1102
Sascha Hauer86183a52008-07-24 23:50:35 +02001103ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001104M: Shawn Guo <shawnguo@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07001105M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001106L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +02001107S: Maintained
Shawn Guof1c12832014-03-11 22:57:53 +08001108T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
Shawn Guo2a82f952013-12-10 22:19:21 +08001109F: arch/arm/mach-imx/
Shawn Guoce515a62014-07-02 15:37:10 +08001110F: arch/arm/mach-mxs/
Shawn Guo2a82f952013-12-10 22:19:21 +08001111F: arch/arm/boot/dts/imx*
1112F: arch/arm/configs/imx*_defconfig
Shawn Guocf209682015-04-26 21:58:12 +08001113F: drivers/clk/imx/
1114F: include/soc/imx/
Shawn Guo8bcb9762011-10-07 22:24:18 +08001115
Stefan Agner142109d2015-03-02 00:09:02 +01001116ARM/FREESCALE VYBRID ARM ARCHITECTURE
Shawn Guo7609ea22015-06-03 19:34:10 +08001117M: Shawn Guo <shawnguo@kernel.org>
Stefan Agner142109d2015-03-02 00:09:02 +01001118M: Sascha Hauer <kernel@pengutronix.de>
1119R: Stefan Agner <stefan@agner.ch>
1120L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121S: Maintained
1122T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1123F: arch/arm/mach-imx/*vf610*
1124F: arch/arm/boot/dts/vf*
1125
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001126ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001127M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001128L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001129S: Maintained
1130
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001131ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001132M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001133L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +01001134S: Maintained
1135
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001136ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001137M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +01001138M: Paul Parsons <lost.distance@yahoo.com>
1139L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001140S: Maintained
1141F: arch/arm/mach-pxa/hx4700.c
1142F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +01001143F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +02001144
Wei Xu4dfad062014-07-07 10:41:53 +08001145ARM/HISILICON SOC SUPPORT
1146M: Wei Xu <xuwei5@hisilicon.com>
1147L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148W: http://www.hisilicon.com
1149S: Supported
1150T: git git://github.com/hisilicon/linux-hisi.git
1151F: arch/arm/mach-hisi/
1152
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001153ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001155W: www.jlime.com
1156S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07001157T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1158F: arch/arm/mach-sa1100/jornada720.c
1159F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +01001160
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001161ARM/IGEP MACHINE SUPPORT
1162M: Enric Balletbo i Serra <eballetbo@gmail.com>
1163M: Javier Martinez Canillas <javier@dowhile0.org>
1164L: linux-omap@vger.kernel.org
1165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166S: Maintained
Javier Martinez Canillas06ff74f2013-10-18 17:37:53 +02001167F: arch/arm/boot/dts/omap3-igep*
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +02001168
Marek Vasut403d2972010-05-22 00:29:39 +02001169ARM/INCOME PXA270 SUPPORT
1170M: Marek Vasut <marek.vasut@gmail.com>
1171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -07001173F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +02001174
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001175ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001176M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001177L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001178S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +01001179
1180ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perchesefc03ec2009-09-21 17:04:27 -07001181L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williams08223d82014-08-19 06:07:56 -07001182S: Orphan
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001183
1184ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001185M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001186L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001187S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001188
1189ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001190M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001191L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001192S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001193
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001194ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001195M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001196L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001197S: Maintained
1198
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001199ARM/INTEL IXP4XX ARM ARCHITECTURE
1200M: Imre Kaloz <kaloz@openwrt.org>
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02001201M: Krzysztof Halasa <khalasa@piap.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +01001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +02001203S: Maintained
1204F: arch/arm/mach-ixp4xx/
1205
Joe Perches838553c2010-10-26 14:22:59 -07001206ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +01001207M: Jonathan Cameron <jic23@cam.ac.uk>
1208L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209S: Maintained
1210F: arch/arm/mach-pxa/stargate2.c
1211F: drivers/pcmcia/pxa2xx_stargate2.c
1212
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001213ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001214M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -07001216S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001217
1218ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001219M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001220L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001221S: Maintained
1222
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001223ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001224M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001225L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226S: Maintained
1227F: arch/arm/mach-keystone/
Santosh Shilimkar317929c2013-11-23 17:31:27 -05001228T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
Santosh Shilimkar1154f852013-08-05 14:11:14 -04001229
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001230ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
Santosh Shilimkar97215802014-10-13 14:16:28 -04001231M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001232L: linux-kernel@vger.kernel.org
1233S: Maintained
1234F: drivers/clk/keystone/
1235
1236ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
Santosh Shilimkar97215802014-10-13 14:16:28 -04001237M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001238L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239L: linux-kernel@vger.kernel.org
1240S: Maintained
1241F: drivers/clocksource/timer-keystone.c
1242
1243ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
Santosh Shilimkar97215802014-10-13 14:16:28 -04001244M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001245L: linux-kernel@vger.kernel.org
1246S: Maintained
1247F: drivers/power/reset/keystone-reset.c
1248
1249ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -04001250M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkarbc6aa562014-06-22 16:06:22 -04001251L: linux-kernel@vger.kernel.org
1252S: Maintained
1253F: drivers/memory/*emif*
1254
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001255ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001256M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001257L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001258S: Maintained
1259
Joachim Eastwood31438752015-05-19 20:59:21 +02001260ARM/LPC18XX ARCHITECTURE
1261M: Joachim Eastwood <manabian@gmail.com>
1262L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263S: Maintained
Joachim Eastwood19c1c322015-10-11 22:40:42 +02001264F: arch/arm/boot/dts/lpc43*
1265F: drivers/clk/nxp/clk-lpc18xx*
1266F: drivers/clocksource/time-lpc32xx.c
1267F: drivers/i2c/busses/i2c-lpc2k.c
1268F: drivers/memory/pl172.c
1269F: drivers/mtd/spi-nor/nxp-spifi.c
1270F: drivers/rtc/rtc-lpc24xx.c
Joachim Eastwood31438752015-05-19 20:59:21 +02001271N: lpc18xx
1272
Philipp Zabel3b8861712008-07-09 21:27:15 +01001273ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001274M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +01001275S: Maintained
1276
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001277ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001278M: Jason Cooper <jason@lakedaemon.net>
1279M: Andrew Lunn <andrew@lunn.ch>
1280M: Gregory Clement <gregory.clement@free-electrons.com>
Jason Cooperdcb71502013-10-14 18:32:21 +00001281M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001282L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1283S: Maintained
1284F: arch/arm/mach-mvebu/
Joe Perches59ec9672015-03-25 15:55:17 -07001285F: drivers/rtc/rtc-armada38x.c
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001286F: arch/arm/boot/dts/armada*
1287F: arch/arm/boot/dts/kirkwood*
1288
Thomas Petazzoni75f41272012-06-01 18:50:52 +02001289
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001290ARM/Marvell Berlin SoC support
1291M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1292L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293S: Maintained
1294F: arch/arm/mach-berlin/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001295F: arch/arm/boot/dts/berlin*
1296
Sebastian Hesselbarth40f49782013-10-08 12:52:30 +02001297
Andrew Lunn4cfab57e2014-07-16 22:32:51 +02001298ARM/Marvell Dove/MV78xx0/Orion SOC support
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001299M: Jason Cooper <jason@lakedaemon.net>
1300M: Andrew Lunn <andrew@lunn.ch>
Jason Cooperdcb71502013-10-14 18:32:21 +00001301M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Gregory CLEMENTbfda4032015-03-13 14:41:45 +01001302M: Gregory Clement <gregory.clement@free-electrons.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001303L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -04001304S: Maintained
1305F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001306F: arch/arm/mach-mv78xx0/
1307F: arch/arm/mach-orion5x/
1308F: arch/arm/plat-orion/
Gregory CLEMENT31c17ac2015-05-15 14:25:43 +02001309F: arch/arm/boot/dts/dove*
1310F: arch/arm/boot/dts/orion5x*
1311
Nicolas Pitre54a246f2009-08-11 23:28:51 -04001312
Alexander Clouterd69ac132011-04-14 15:22:02 -07001313ARM/Orion SoC/Technologic Systems TS-78xx platform support
1314M: Alexander Clouter <alex@digriz.org.uk>
1315L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1316W: http://www.digriz.org.uk/ts78xx/kernel
1317S: Maintained
1318F: arch/arm/mach-orion5x/ts78xx-*
1319
Eddie Huang607b8fc2015-05-06 15:23:42 +08001320ARM/Mediatek RTC DRIVER
1321M: Eddie Huang <eddie.huang@mediatek.com>
1322L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1323L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1324S: Maintained
1325F: drivers/rtc/rtc-mt6397.c
1326
Matthias Bruggere54951c2014-09-26 11:45:55 +02001327ARM/Mediatek SoC support
1328M: Matthias Brugger <matthias.bgg@gmail.com>
1329L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Matthias Brugger17b199d2015-04-16 12:49:21 -07001330L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
Matthias Bruggere54951c2014-09-26 11:45:55 +02001331S: Maintained
1332F: arch/arm/boot/dts/mt6*
1333F: arch/arm/boot/dts/mt8*
1334F: arch/arm/mach-mediatek/
1335N: mtk
1336K: mediatek
1337
Chunfeng Yun0f8669e2015-10-12 10:41:57 +08001338ARM/Mediatek USB3 PHY DRIVER
1339M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1340L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1341L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1342S: Maintained
1343F: drivers/phy/phy-mt65xx-usb3.c
1344
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001345ARM/MICREL KS8695 ARCHITECTURE
1346M: Greg Ungerer <gerg@uclinux.org>
1347L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches14430812013-09-11 14:23:50 -07001348F: arch/arm/mach-ks8695/
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001349S: Odd Fixes
1350
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001351ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001352M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001353L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001354F: arch/arm/mach-pxa/mioa701.c
1355S: Maintained
1356
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001357ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001358M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001359S: Maintained
1360
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001361ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001362M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001363M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001364L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1365S: Maintained
1366F: arch/arm/mach-nomadik/
Joe Perchesecc265f2014-08-08 14:26:20 -07001367F: drivers/pinctrl/nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001368F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001369T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001370
Andy Green9d762952009-05-19 06:41:42 -03001371ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001372M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001373L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1374W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1375S: Supported
1376
Dirk Opfer8459c152005-11-06 14:27:52 +00001377ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001378M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1379M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001380S: Maintained
1381
Marek Vasut5d783a22009-07-16 13:26:48 +02001382ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001383M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001384L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001385W: http://hackndev.com
1386S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001387F: arch/arm/mach-pxa/include/mach/palmtx.h
1388F: arch/arm/mach-pxa/palmtx.c
1389F: arch/arm/mach-pxa/include/mach/palmt5.h
1390F: arch/arm/mach-pxa/palmt5.c
1391F: arch/arm/mach-pxa/include/mach/palmld.h
1392F: arch/arm/mach-pxa/palmld.c
1393F: arch/arm/mach-pxa/include/mach/palmte2.h
1394F: arch/arm/mach-pxa/palmte2.c
1395F: arch/arm/mach-pxa/include/mach/palmtc.h
1396F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001397
Joe Perchesb57fe922009-12-14 18:00:52 -08001398ARM/PALM TREO SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07001399M: Tomas Cech <sleep_walker@suse.com>
Marek Vasut75280782009-08-22 00:49:53 +02001400L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001401W: http://hackndev.com
1402S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001403F: arch/arm/mach-pxa/include/mach/palmtreo.h
1404F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001405
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001406ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001407M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001408L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001409W: http://hackndev.com
1410S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001411F: arch/arm/mach-pxa/include/mach/palmz72.h
1412F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001415M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1417S: Maintained
1418
1419ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001420M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001421L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422W: http://www.arm.linux.org.uk/
1423S: Maintained
1424
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001425ARM/QUALCOMM SUPPORT
Andy Grossbbeaa592015-12-10 21:07:03 -06001426M: Andy Gross <andy.gross@linaro.org>
1427M: David Brown <david.brown@linaro.org>
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001428L: linux-arm-msm@vger.kernel.org
Andy Grossf5d3af92015-01-21 22:39:24 -06001429L: linux-soc@vger.kernel.org
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001430S: Maintained
Bjorn Andersson0c4cbf92015-11-23 21:55:03 -08001431F: arch/arm/boot/dts/qcom-*.dts
1432F: arch/arm/boot/dts/qcom-*.dtsi
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001433F: arch/arm/mach-qcom/
Andy Grossf5d3af92015-01-21 22:39:24 -06001434F: drivers/soc/qcom/
Stephen Boydc0c89fa2015-03-13 11:09:34 -07001435F: drivers/tty/serial/msm_serial.h
1436F: drivers/tty/serial/msm_serial.c
1437F: drivers/*/pm8???-*
1438F: drivers/mfd/ssbi.c
Kumar Gala916f7432015-02-26 15:49:09 -06001439F: drivers/firmware/qcom_scm.c
Andy Grossbbeaa592015-12-10 21:07:03 -06001440T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
Kumar Gala8fc1b0f2014-01-21 17:14:10 -06001441
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001442ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001443M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001444L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001445S: Maintained
1446
Simon Hormanb138e112015-10-02 15:42:21 +09001447ARM/RENESAS ARM64 ARCHITECTURE
1448M: Simon Horman <horms@verge.net.au>
1449M: Magnus Damm <magnus.damm@gmail.com>
1450L: linux-sh@vger.kernel.org
1451Q: http://patchwork.kernel.org/project/linux-sh/list/
1452T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1453S: Supported
1454F: arch/arm64/boot/dts/renesas/
1455
Russell Kingd4275352009-04-16 14:05:27 +01001456ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001457M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001458L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001459W: http://www.arm.linux.org.uk/
1460S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001461F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1462F: arch/arm/include/asm/hardware/ioc.h
1463F: arch/arm/include/asm/hardware/iomd.h
1464F: arch/arm/include/asm/hardware/memc.h
1465F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001466F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001467F: drivers/net/ethernet/i825xx/ether1*
1468F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001469F: drivers/scsi/arm/
1470
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001471ARM/Rockchip SoC support
1472M: Heiko Stuebner <heiko@sntech.de>
1473L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Heiko Stuebner00250b5292014-08-20 12:31:03 +02001474L: linux-rockchip@lists.infradead.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08001475T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001476S: Maintained
Heiko Stübner541555e2014-08-27 00:05:50 +02001477F: arch/arm/boot/dts/rk3*
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001478F: arch/arm/mach-rockchip/
Heiko Stübner541555e2014-08-27 00:05:50 +02001479F: drivers/clk/rockchip/
1480F: drivers/i2c/busses/i2c-rk3x.c
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001481F: drivers/*/*rockchip*
Heiko Stübner541555e2014-08-27 00:05:50 +02001482F: drivers/*/*/*rockchip*
1483F: sound/soc/rockchip/
Heiko Stuebnerb4331b42015-03-14 19:32:06 +01001484N: rockchip
Heiko Stuebner08ddbb02013-10-14 23:19:58 +02001485
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001486ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1487M: Kukjin Kim <kgene@kernel.org>
Krzysztof Kozlowskie8f98452015-05-14 21:15:20 +09001488M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001489L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001490L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001491S: Maintained
Mark Brown6f0589c2013-10-08 07:18:21 +09001492F: arch/arm/boot/dts/s3c*
1493F: arch/arm/boot/dts/exynos*
Krzysztof Kozlowskid97236e2015-06-06 19:02:19 +09001494F: arch/arm64/boot/dts/exynos/
Kukjin Kim482ce512010-06-29 15:05:26 -07001495F: arch/arm/plat-samsung/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001496F: arch/arm/mach-s3c24*/
1497F: arch/arm/mach-s3c64xx/
Kukjin Kim5bfb9372014-11-14 16:54:57 +09001498F: arch/arm/mach-s5p*/
1499F: arch/arm/mach-exynos*/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001500F: drivers/*/*s3c2410*
1501F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001502F: drivers/spi/spi-s3c*
1503F: sound/soc/samsung/*
Krzysztof Kozlowskid6b9aea2015-10-24 05:07:19 +09001504F: Documentation/arm/Samsung/
1505F: Documentation/devicetree/bindings/arm/samsung/
1506F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1507F: Documentation/devicetree/bindings/power/pd-samsung.txt
Doug Anderson33d43cd2013-06-18 07:02:23 +09001508N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001509
Kyungmin Park10ffa962011-03-04 17:36:26 -08001510ARM/SAMSUNG MOBILE MACHINE SUPPORT
1511M: Kyungmin Park <kyungmin.park@samsung.com>
1512L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1513S: Maintained
Christian Kujau004bbd32014-10-13 15:51:17 -07001514F: arch/arm/mach-s5pv210/
Kyungmin Park10ffa962011-03-04 17:36:26 -08001515
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001516ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1517M: Kyungmin Park <kyungmin.park@samsung.com>
1518M: Kamil Debski <k.debski@samsung.com>
1519L: linux-arm-kernel@lists.infradead.org
1520L: linux-media@vger.kernel.org
1521S: Maintained
1522F: drivers/media/platform/s5p-g2d/
1523
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001524ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1525M: Kyungmin Park <kyungmin.park@samsung.com>
1526M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001527M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001528L: linux-arm-kernel@lists.infradead.org
1529L: linux-media@vger.kernel.org
1530S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001531F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001532F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001533
1534ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1535M: Kyungmin Park <kyungmin.park@samsung.com>
1536M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1537L: linux-arm-kernel@lists.infradead.org
1538L: linux-media@vger.kernel.org
1539S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001540F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001541
Andrzej Pietrasiewicz7d9f9bf2015-09-18 11:20:59 -03001542ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1543M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1544M: Jacek Anaszewski <j.anaszewski@samsung.com>
1545L: linux-arm-kernel@lists.infradead.org
1546L: linux-media@vger.kernel.org
1547S: Maintained
1548F: drivers/media/platform/s5p-jpeg/
1549
Paul Mundtd48d38e2010-02-08 12:50:24 +09001550ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001551M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001552M: Magnus Damm <magnus.damm@gmail.com>
Simon Horman4a121092016-01-18 10:04:33 +09001553L: linux-renesas-soc@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09001554Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
Simon Horman5e212592012-11-27 11:41:49 +09001555T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001556S: Supported
Simon Horman0b514fd2014-05-15 08:48:21 +09001557F: arch/arm/boot/dts/emev2*
1558F: arch/arm/boot/dts/r7s*
1559F: arch/arm/boot/dts/r8a*
1560F: arch/arm/boot/dts/sh*
Simon Horman0b514fd2014-05-15 08:48:21 +09001561F: arch/arm/configs/shmobile_defconfig
Geert Uytterhoeven7a2071c2014-11-14 16:49:47 +01001562F: arch/arm/include/debug/renesas-scif.S
Paul Mundtd48d38e2010-02-08 12:50:24 +09001563F: arch/arm/mach-shmobile/
1564F: drivers/sh/
1565
Dinh Nguyen66314222012-07-18 16:07:18 -06001566ARM/SOCFPGA ARCHITECTURE
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001567M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001568S: Maintained
1569F: arch/arm/mach-socfpga/
Dinh Nguyenefadb752015-04-20 14:13:12 -05001570F: arch/arm/boot/dts/socfpga*
1571F: arch/arm/configs/socfpga_defconfig
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001572W: http://www.rocketboards.org
Dinh Nguyenefadb752015-04-20 14:13:12 -05001573T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
Dinh Nguyen66314222012-07-18 16:07:18 -06001574
1575ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
Dinh Nguyenba2b7d02014-08-06 16:31:27 -05001576M: Dinh Nguyen <dinguyen@opensource.altera.com>
Dinh Nguyen66314222012-07-18 16:07:18 -06001577S: Maintained
1578F: drivers/clk/socfpga/
1579
Thor Thayer71bcada2014-09-03 10:27:54 -05001580ARM/SOCFPGA EDAC SUPPORT
1581M: Thor Thayer <tthayer@opensource.altera.com>
1582S: Maintained
1583F: drivers/edac/altera_edac.
1584
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001585ARM/STI ARCHITECTURE
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001586M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1587M: Maxime Coquelin <maxime.coquelin@st.com>
1588M: Patrice Chotard <patrice.chotard@st.com>
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001589L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1590L: kernel@stlinux.com
1591W: http://www.stlinux.com
1592S: Maintained
1593F: arch/arm/mach-sti/
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001594F: arch/arm/boot/dts/sti*
Lee Jonesb8e31bf2015-09-17 14:45:57 +01001595F: drivers/char/hw_random/st-rng.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001596F: drivers/clocksource/arm_global_timer.c
Lee Jones82805d12015-05-12 13:58:17 +01001597F: drivers/clocksource/clksrc_st_lpc.c
Srinivas Kandagatlaa92177e2014-03-03 11:28:59 +00001598F: drivers/i2c/busses/i2c-st.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001599F: drivers/media/rc/st_rc.c
Peter Griffin95d66b12015-07-30 14:09:01 -03001600F: drivers/media/platform/sti/c8sectpfe/
Peter Griffinf53b2bf2014-06-04 17:30:24 +01001601F: drivers/mmc/host/sdhci-st.c
Peter Griffine95cf392015-04-01 07:42:41 +01001602F: drivers/phy/phy-miphy28lp.c
1603F: drivers/phy/phy-miphy365x.c
Peter Griffin6da969a2014-09-11 18:02:46 +01001604F: drivers/phy/phy-stih407-usb.c
Peter Griffin26389c72014-09-08 11:33:02 +01001605F: drivers/phy/phy-stih41x-usb.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001606F: drivers/pinctrl/pinctrl-st.c
1607F: drivers/reset/sti/
Lee Jonesdb4112e2015-04-09 15:47:34 +01001608F: drivers/rtc/rtc-st-lpc.c
Greg Kroah-Hartman346e2e42014-09-25 13:11:52 +02001609F: drivers/tty/serial/st-asc.c
Peter Griffineb11ada2014-09-05 16:36:32 +01001610F: drivers/usb/dwc3/dwc3-st.c
Peter Griffin62f6f082014-09-08 13:04:48 +01001611F: drivers/usb/host/ehci-st.c
1612F: drivers/usb/host/ohci-st.c
Lee Jonesdb4112e2015-04-09 15:47:34 +01001613F: drivers/watchdog/st_lpc_wdt.c
Peter Griffindaac6f82014-11-19 08:44:54 +00001614F: drivers/ata/ahci_st.c
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001615
Maxime Coquelinee6e7872015-05-09 09:53:58 +02001616ARM/STM32 ARCHITECTURE
1617M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1618L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1619S: Maintained
1620T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1621N: stm32
1622F: drivers/clocksource/armv7m_systick.c
1623
Marc Gonzalezd6de5b02015-12-15 10:41:13 +01001624ARM/TANGO ARCHITECTURE
1625M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1626L: linux-arm-kernel@lists.infradead.org
1627S: Maintained
1628F: arch/arm/mach-tango/
1629F: arch/arm/boot/dts/tango*
1630
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001631ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001633L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001634S: Maintained
1635
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001636ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001637M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001638L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639S: Maintained
1640
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001641ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001642M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001643L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001644S: Maintained
1645
wanzongshun98ad6e32009-02-13 06:04:32 +01001646ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001647M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001648L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001649W: http://www.mcuos.com
1650S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001651F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001652F: drivers/input/keyboard/w90p910_keypad.c
1653F: drivers/input/touchscreen/w90p910_ts.c
1654F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001655F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001656F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001657F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001658F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001659F: drivers/usb/host/ehci-w90x900.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001660F: drivers/video/fbdev/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001661
Linus Walleij54274d72010-04-04 10:58:03 +01001662ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001663M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001664L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665S: Supported
1666F: arch/arm/mach-u300/
Linus Walleij9affbd22014-01-21 15:04:14 +01001667F: drivers/clocksource/timer-u300.c
Linus Walleij54274d72010-04-04 10:58:03 +01001668F: drivers/i2c/busses/i2c-stu300.c
1669F: drivers/rtc/rtc-coh901331.c
1670F: drivers/watchdog/coh901327_wdt.c
1671F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001672F: drivers/mfd/ab3100*
1673F: drivers/rtc/rtc-ab3100.c
1674F: drivers/rtc/rtc-coh901331.c
1675T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001676
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001677ARM/UNIPHIER ARCHITECTURE
1678M: Masahiro Yamada <yamada.masahiro@socionext.com>
1679L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680S: Maintained
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001681F: arch/arm/boot/dts/uniphier*
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001682F: arch/arm/include/asm/hardware/cache-uniphier.h
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001683F: arch/arm/mach-uniphier/
Masahiro Yamadae7ecbc02015-10-02 13:42:19 +09001684F: arch/arm/mm/cache-uniphier.c
Masahiro Yamadae1a0ebc2015-11-28 02:22:31 +09001685F: arch/arm64/boot/dts/socionext/
Masahiro Yamada4b7f48d2015-12-09 15:52:59 +09001686F: drivers/bus/uniphier-system-bus.c
Masahiro Yamadadd6fd4a2015-10-23 19:51:59 +09001687F: drivers/i2c/busses/i2c-uniphier*
Masahiro Yamadaa3ff83d2015-07-25 16:23:24 +09001688F: drivers/pinctrl/uniphier/
1689F: drivers/tty/serial/8250/8250_uniphier.c
Masahiro Yamada3d00d042015-05-08 13:07:14 +09001690N: uniphier
1691
Linus Walleij87572882010-12-22 09:18:29 +01001692ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001693M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695S: Maintained
1696F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001697F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001698F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001699F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001700F: drivers/mfd/abx500*
1701F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001702F: drivers/mfd/dbx500*
1703F: drivers/mfd/db8500*
Joe Perchesecc265f2014-08-08 14:26:20 -07001704F: drivers/pinctrl/nomadik/pinctrl-ab*
1705F: drivers/pinctrl/nomadik/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001706F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001707F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001708T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001709
Ulf Hanssone93fde22013-11-12 11:41:12 +01001710ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1711M: Ulf Hansson <ulf.hansson@linaro.org>
1712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713T: git git://git.linaro.org/people/ulfh/clk.git
1714S: Maintained
1715F: drivers/clk/ux500/
1716F: include/linux/platform_data/clk-ux500.h
1717
Pawel Moll740d93b2014-11-26 12:13:05 +00001718ARM/VERSATILE EXPRESS PLATFORM
1719M: Liviu Dudau <liviu.dudau@arm.com>
1720M: Sudeep Holla <sudeep.holla@arm.com>
1721M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723S: Maintained
1724F: arch/arm/boot/dts/vexpress*
Kristina Martsenko9ccd6082015-07-01 13:36:03 +01001725F: arch/arm64/boot/dts/arm/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001726F: arch/arm/mach-vexpress/
1727F: */*/vexpress*
Pawel Moll7e8f4032014-12-01 14:16:33 +00001728F: */*/*/vexpress*
Pawel Moll740d93b2014-11-26 12:13:05 +00001729F: drivers/clk/versatile/clk-vexpress-osc.c
1730F: drivers/clocksource/versatile.c
1731
Russell Kingd4275352009-04-16 14:05:27 +01001732ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001733M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001735W: http://www.arm.linux.org.uk/
1736S: Maintained
1737F: arch/arm/vfp/
1738
Marek Vasute66b6d82010-03-26 06:51:32 +01001739ARM/VOIPAC PXA270 SUPPORT
1740M: Marek Vasut <marek.vasut@gmail.com>
1741L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1742S: Maintained
1743F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001744F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001745
Tony Prisk04529fe2012-07-24 04:19:37 +12001746ARM/VT8500 ARM ARCHITECTURE
1747M: Tony Prisk <linux@prisktech.co.nz>
1748L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749S: Maintained
1750F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001751F: drivers/clocksource/vt8500_timer.c
Tony Prisk560746e2013-06-15 09:52:16 +12001752F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001753F: drivers/mmc/host/wmt-sdmmc.c
1754F: drivers/pwm/pwm-vt8500.c
1755F: drivers/rtc/rtc-vt8500.c
1756F: drivers/tty/serial/vt8500_serial.c
Joe Perches4f311022013-09-11 14:23:46 -07001757F: drivers/usb/host/ehci-platform.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001758F: drivers/usb/host/uhci-platform.c
Jingoo Han8a61f012014-07-01 15:36:01 +09001759F: drivers/video/fbdev/vt8500lcdfb.*
1760F: drivers/video/fbdev/wm8505fb*
1761F: drivers/video/fbdev/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001762
Marek Vasute66b6d82010-03-26 06:51:32 +01001763ARM/ZIPIT Z2 SUPPORT
1764M: Marek Vasut <marek.vasut@gmail.com>
1765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1766S: Maintained
1767F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001768F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001769
Jun Nie5ecc4b52015-04-28 17:18:06 +08001770ARM/ZTE ARCHITECTURE
1771M: Jun Nie <jun.nie@linaro.org>
1772L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773S: Maintained
1774F: arch/arm/mach-zx/
1775F: drivers/clk/zte/
1776F: Documentation/devicetree/bindings/arm/zte.txt
1777F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1778
Michal Simek51f29d42013-01-21 17:41:46 +01001779ARM/ZYNQ ARCHITECTURE
1780M: Michal Simek <michal.simek@xilinx.com>
Soren Brinkmannf0fd9ad2014-10-23 09:29:22 -07001781R: Sören Brinkmann <soren.brinkmann@xilinx.com>
Michal Simek51f29d42013-01-21 17:41:46 +01001782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1783W: http://wiki.xilinx.com
Soren Brinkmannd6448b72015-06-26 09:04:32 -07001784T: git https://github.com/Xilinx/linux-xlnx.git
Michal Simek51f29d42013-01-21 17:41:46 +01001785S: Supported
1786F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001787F: drivers/cpuidle/cpuidle-zynq.c
Michal Simekfb9d4952014-10-13 15:51:15 -07001788F: drivers/block/xsysace.c
Michal Simekc2fd4e32014-01-02 12:58:50 -08001789N: zynq
1790N: xilinx
1791F: drivers/clocksource/cadence_ttc_timer.c
Soren Brinkmanndf8eb562014-04-04 14:27:55 -07001792F: drivers/i2c/busses/i2c-cadence.c
Soren Brinkmanne3ec3a32013-12-02 10:02:36 -08001793F: drivers/mmc/host/sdhci-of-arasan.c
Punnaiah Choudary Kalluriae9b56e32015-01-06 23:13:47 +05301794F: drivers/edac/synopsys_edac.c
Michal Simek51f29d42013-01-21 17:41:46 +01001795
Will Deacon48ec83b2015-05-27 17:25:59 +01001796ARM SMMU DRIVERS
Will Deaconb8f98792013-06-24 18:31:26 +01001797M: Will Deacon <will.deacon@arm.com>
1798L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799S: Maintained
1800F: drivers/iommu/arm-smmu.c
Will Deacon48ec83b2015-05-27 17:25:59 +01001801F: drivers/iommu/arm-smmu-v3.c
Will Deacone1d3c0f2014-11-14 17:18:23 +00001802F: drivers/iommu/io-pgtable-arm.c
Will Deaconb8f98792013-06-24 18:31:26 +01001803
Catalin Marinas38074222012-03-05 11:49:34 +00001804ARM64 PORT (AARCH64 ARCHITECTURE)
1805M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001806M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Fengguang Wu9f273c22016-01-20 15:03:25 -08001808T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
Catalin Marinas38074222012-03-05 11:49:34 +00001809S: Maintained
1810F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001811F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001812
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001813AS3645A LED FLASH CONTROLLER DRIVER
1814M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1815L: linux-media@vger.kernel.org
1816T: git git://linuxtv.org/media_tree.git
1817S: Maintained
1818F: drivers/media/i2c/as3645a.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02001819F: include/media/i2c/as3645a.h
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001820
George Josephd58de032010-03-05 22:17:25 +01001821ASC7621 HARDWARE MONITOR DRIVER
1822M: George Joseph <george.joseph@fairview5.com>
1823L: lm-sensors@lm-sensors.org
1824S: Maintained
1825F: Documentation/hwmon/asc7621
1826F: drivers/hwmon/asc7621.c
1827
Corentin Charyb229ece2011-02-26 10:20:40 +01001828ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001829M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001831L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001832W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001834F: drivers/platform/x86/asus*.c
1835F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
João Paulo Rechi Vitaf6a6bba2016-01-05 11:16:53 -05001837ASUS WIRELESS RADIO CONTROL DRIVER
1838M: João Paulo Rechi Vita <jprvita@gmail.com>
1839L: platform-driver-x86@vger.kernel.org
1840S: Maintained
1841F: drivers/platform/x86/asus-wireless.c
1842
Andrew Morton953a6472008-11-06 12:53:28 -08001843ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams08223d82014-08-19 06:07:56 -07001844R: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001845W: http://sourceforge.net/projects/xscaleiop
Dan Williams08223d82014-08-19 06:07:56 -07001846S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001847F: Documentation/crypto/async-tx-api.txt
1848F: crypto/async_tx/
1849F: drivers/dma/
1850F: include/linux/dmaengine.h
1851F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001852
Wolfram Sanga1867d32009-09-18 22:45:51 +02001853AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001854M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001855L: linux-i2c@vger.kernel.org
1856S: Maintained
1857F: drivers/misc/eeprom/at24.c
Vivien Didelot25f73ed2013-09-27 15:06:28 -04001858F: include/linux/platform_data/at24.h
Wolfram Sanga1867d32009-09-18 22:45:51 +02001859
Randy Dunlape7839f22008-10-12 16:11:45 -07001860ATA OVER ETHERNET (AOE) DRIVER
Ed Cashinfb903812015-03-25 15:55:06 -07001861M: "Ed L. Cashin" <ed.cashin@acm.org>
1862W: http://www.openaoe.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001864F: Documentation/aoe/
1865F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Alban Bedelaad7a212015-10-30 11:36:29 +01001867ATHEROS 71XX/9XXX GPIO DRIVER
1868M: Alban Bedel <albeu@free.fr>
1869W: https://github.com/AlbanBedel/linux
1870T: git git://github.com/AlbanBedel/linux
1871S: Maintained
1872F: drivers/gpio/gpio-ath79.c
1873F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1874
Joe Perches9a10a872010-12-01 09:37:55 -08001875ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001876M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001877L: linux-wireless@vger.kernel.org
1878S: Supported
1879F: drivers/net/wireless/ath/*
1880
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001881ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001882M: Jiri Slaby <jirislaby@gmail.com>
1883M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezf726ee62013-12-14 20:11:39 +01001884M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001885L: linux-wireless@vger.kernel.org
Joe Perches72c706b2009-09-07 11:34:30 -07001886W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001887S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001888F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001889
Kalle Valo12e62d62011-09-13 10:21:25 +03001890ATHEROS ATH6KL WIRELESS DRIVER
1891M: Kalle Valo <kvalo@qca.qualcomm.com>
1892L: linux-wireless@vger.kernel.org
1893W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Fengguang Wu9f273c22016-01-20 15:03:25 -08001894T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001895S: Supported
1896F: drivers/net/wireless/ath/ath6kl/
1897
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001898WILOCITY WIL6210 WIRELESS DRIVER
Vladimir Kondratiev23ba8a62015-11-08 14:03:17 +02001899M: Maya Erez <qca_merez@qca.qualcomm.com>
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001900L: linux-wireless@vger.kernel.org
1901L: wil6210@qca.qualcomm.com
1902S: Supported
1903W: http://wireless.kernel.org/en/users/Drivers/wil6210
1904F: drivers/net/wireless/ath/wil6210/
Vladimir Kondratievdba4b742014-10-01 15:05:25 +03001905F: include/uapi/linux/wil6210_uapi.h
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001906
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001907CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1908M: Christian Lamparter <chunkeey@googlemail.com>
1909L: linux-wireless@vger.kernel.org
1910W: http://wireless.kernel.org/en/users/Drivers/carl9170
1911S: Maintained
1912F: drivers/net/wireless/ath/carl9170/
1913
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001914ATK0110 HWMON DRIVER
1915M: Luca Tettamanti <kronos.it@gmail.com>
1916L: lm-sensors@lm-sensors.org
1917S: Maintained
1918F: drivers/hwmon/asus_atk0110.c
1919
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001920ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001921M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001923F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001924
Chris Snook7ae115b2008-09-09 03:26:57 -04001925ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001926M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001927M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001928L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001929W: http://sourceforge.net/projects/atl1
1930W: http://atl1.sourceforge.net
1931S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001932F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934ATM
chas williams - CONTRACTOR366c1bd2015-03-11 16:18:01 -04001935M: Chas Williams <3chas3@gmail.com>
Joe Perches476604d2009-10-26 16:49:41 -07001936L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001937L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938W: http://linux-atm.sourceforge.net
1939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001940F: drivers/atm/
1941F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001942F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001944ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001945M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001946S: Maintained
1947F: drivers/mmc/host/atmel-mci.c
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001948
Haavard Skinnemoena1cfac482008-02-08 04:21:00 -08001949ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001950M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac482008-02-08 04:21:00 -08001951S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001952F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac482008-02-08 04:21:00 -08001953
Bo Shendfae90e2014-09-28 09:57:19 +08001954ATMEL Audio ALSA driver
Nicolas Ferre3a820022015-03-31 15:34:51 +02001955M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shendfae90e2014-09-28 09:57:19 +08001956L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1957S: Supported
1958F: sound/soc/atmel
1959
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001960ATMEL DMA DRIVER
1961M: Nicolas Ferre <nicolas.ferre@atmel.com>
1962L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963S: Supported
1964F: drivers/dma/at_hdmac.c
1965F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001966F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001967
Ludovic Desroches6bd0f432014-10-22 17:22:20 +02001968ATMEL XDMA DRIVER
1969M: Ludovic Desroches <ludovic.desroches@atmel.com>
1970L: linux-arm-kernel@lists.infradead.org
1971L: dmaengine@vger.kernel.org
1972S: Supported
1973F: drivers/dma/at_xdmac.c
1974
Ludovic Desroches888f2802013-03-15 05:32:57 +00001975ATMEL I2C DRIVER
1976M: Ludovic Desroches <ludovic.desroches@atmel.com>
1977L: linux-i2c@vger.kernel.org
1978S: Supported
1979F: drivers/i2c/busses/i2c-at91.c
1980
Josh Wu15515542012-03-23 17:56:29 +08001981ATMEL ISI DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01001982M: Ludovic Desroches <ludovic.desroches@atmel.com>
Josh Wu15515542012-03-23 17:56:29 +08001983L: linux-media@vger.kernel.org
1984S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001985F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001986F: include/media/atmel-isi.h
1987
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001988ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001990L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001991S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09001992F: drivers/video/fbdev/atmel_lcdfb.c
Joe Perches679655d2009-04-07 20:44:32 -07001993F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001994
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001995ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001996M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001997S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001998F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001999
Josh Wu5cbac982014-10-13 15:51:24 -07002000ATMEL NAND DRIVER
Nicolas Ferre50cb2ef2015-11-17 11:14:28 +01002001M: Wenyou Yang <wenyou.yang@atmel.com>
2002M: Josh Wu <rainyfeeling@outlook.com>
Josh Wu5cbac982014-10-13 15:51:24 -07002003L: linux-mtd@lists.infradead.org
2004S: Supported
2005F: drivers/mtd/nand/atmel_nand*
2006
ludovic.desroches@atmel.com05c441e2015-07-29 16:22:48 +02002007ATMEL SDMMC DRIVER
2008M: Ludovic Desroches <ludovic.desroches@atmel.com>
2009L: linux-mmc@vger.kernel.org
2010S: Supported
2011F: drivers/mmc/host/sdhci-of-at91.c
2012
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002013ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002014M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002015S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08002016F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08002017
Bo Shen0ef09012014-09-28 09:57:18 +08002018ATMEL SSC DRIVER
Nicolas Ferre03515f32015-03-19 10:49:42 +01002019M: Nicolas Ferre <nicolas.ferre@atmel.com>
Bo Shen0ef09012014-09-28 09:57:18 +08002020L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2021S: Supported
2022F: drivers/misc/atmel-ssc.c
2023F: include/linux/atmel-ssc.h
2024
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02002025ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2026M: Nicolas Ferre <nicolas.ferre@atmel.com>
2027L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028S: Supported
2029F: drivers/misc/atmel_tclib.c
2030F: drivers/clocksource/tcb_clksrc.c
2031
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002032ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07002033M: Nicolas Ferre <nicolas.ferre@atmel.com>
2034L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002035S: Supported
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07002036F: drivers/usb/gadget/udc/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07002040L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041W: http://www.thekelleys.org.uk/atmel
2042W: http://atmelwlandriver.sourceforge.net/
2043S: Maintained
Kalle Valo30fe0f92015-11-17 19:49:20 +02002044F: drivers/net/wireless/atmel/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Nick Dyera14c0f82015-08-04 16:22:54 -07002046ATMEL MAXTOUCH DRIVER
2047M: Nick Dyer <nick.dyer@itdev.co.uk>
2048T: git git://github.com/atmel-maxtouch/linux.git
2049S: Supported
2050F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2051F: drivers/input/touchscreen/atmel_mxt_ts.c
2052F: include/linux/platform_data/atmel_mxt_ts.h
2053
Bradley Grove26780d92013-08-23 10:35:45 -04002054ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08002055M: Bradley Grove <linuxdrivers@attotech.com>
2056L: linux-scsi@vger.kernel.org
2057W: http://www.attotech.com
2058S: Supported
2059F: drivers/scsi/esas2r
Bradley Grove26780d92013-08-23 10:35:45 -04002060
Stefan Schmidtbc6e17b2015-05-29 10:51:28 +02002061ATUSB IEEE 802.15.4 RADIO DRIVER
2062M: Stefan Schmidt <stefan@osg.samsung.com>
2063L: linux-wpan@vger.kernel.org
2064S: Maintained
2065F: drivers/net/ieee802154/atusb.c
2066F: drivers/net/ieee802154/atusb.h
2067F: drivers/net/ieee802154/at86rf230.h
2068
Chris Wrighta92b7b82005-07-07 18:12:23 -07002069AUDIT SUBSYSTEM
Paul Moore915f3892014-10-20 11:59:43 -04002070M: Paul Moore <paul@paul-moore.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Eric Paris <eparis@redhat.com>
Paul Moore915f3892014-10-20 11:59:43 -04002072L: linux-audit@redhat.com (moderated for non-subscribers)
David Woodhousead3f9a22005-07-13 15:28:29 +01002073W: http://people.redhat.com/sgrubb/audit/
Paul Moore915f3892014-10-20 11:59:43 -04002074T: git git://git.infradead.org/users/pcmoore/audit
Chris Wrighta92b7b82005-07-07 18:12:23 -07002075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002076F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002077F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07002078F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07002079
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002080AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002081M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002082W: http://miguelojeda.es/auxdisplay.htm
2083W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: drivers/auxdisplay/
2086F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002087
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002088AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002089M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2090M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002091W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08002092W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002093W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002096
2097AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02002098M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2099M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002101F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002104M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002106W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002108F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07002109F: include/net/ax25.h
2110F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002112AZ6007 DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002113M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002114L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002115W: https://linuxtv.org
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02002116T: git git://linuxtv.org/media_tree.git
2117S: Maintained
2118F: drivers/media/usb/dvb-usb-v2/az6007.c
2119
Hans Verkuil67773762012-11-23 07:09:23 -03002120AZTECH FM RADIO RECEIVER DRIVER
2121M: Hans Verkuil <hverkuil@xs4all.nl>
2122L: linux-media@vger.kernel.org
2123T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002124W: https://linuxtv.org
Hans Verkuil67773762012-11-23 07:09:23 -03002125S: Maintained
2126F: drivers/media/radio/radio-aztech*
2127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002128B43 WIRELESS DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002129L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002130L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002131W: http://wireless.kernel.org/en/users/Drivers/b43
Joe Perches8a72ed62015-04-15 16:17:39 -07002132S: Odd Fixes
Kalle Valo58619b12015-11-17 19:49:23 +02002133F: drivers/net/wireless/broadcom/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002134
2135B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002136M: Larry Finger <Larry.Finger@lwfinger.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002137L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01002138L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02002139W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002140S: Maintained
Kalle Valo423e3ce2015-11-17 19:49:26 +02002141F: drivers/net/wireless/broadcom/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002142
Richard Purdie300abeb2007-02-07 22:21:07 +00002143BACKLIGHT CLASS/SUBSYSTEM
Jingoo Hanb7701752015-05-14 15:17:07 -07002144M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han70d14fc2014-04-03 14:48:46 -07002145M: Lee Jones <lee.jones@linaro.org>
Fengguang Wu9f273c22016-01-20 15:03:25 -08002146T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
Richard Purdie300abeb2007-02-07 22:21:07 +00002147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002148F: drivers/video/backlight/
2149F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00002150
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002151BATMAN ADVANCED
Antonio Quartulli207df492013-09-21 13:46:56 +02002152M: Marek Lindner <mareklindner@neomailbox.ch>
Simon Wunderlichc679ff82013-10-10 23:59:10 +02002153M: Simon Wunderlich <sw@simonwunderlich.de>
Antonio Quartullica8e9402015-11-07 19:20:34 +01002154M: Antonio Quartulli <a@unstable.cc>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002155L: b.a.t.m.a.n@lists.open-mesh.org
2156W: http://www.open-mesh.org/
2157S: Maintained
2158F: net/batman-adv/
2159
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002160BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002161M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002162L: linux-hams@vger.kernel.org
2163W: http://www.baycom.org/~tom/ham/ham.html
2164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002165F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002166
Kent Overstreetcafe5632013-03-23 16:11:31 -07002167BCACHE (BLOCK LAYER CACHE)
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002168M: Kent Overstreet <kent.overstreet@gmail.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07002169L: linux-bcache@vger.kernel.org
2170W: http://bcache.evilpiepirate.org
Joe Perchesd1aa1ab2015-06-30 14:59:54 -07002171S: Maintained
Kent Overstreetcafe5632013-03-23 16:11:31 -07002172F: drivers/md/bcache/
2173
Hans Verkuil04bd8442015-06-08 09:26:20 -03002174BDISP ST MEDIA DRIVER
2175M: Fabien Dessenne <fabien.dessenne@st.com>
2176L: linux-media@vger.kernel.org
2177T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002178W: https://linuxtv.org
Hans Verkuil04bd8442015-06-08 09:26:20 -03002179S: Supported
2180F: drivers/media/platform/sti/bdisp
2181
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002182BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07002183S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002184F: Documentation/filesystems/befs.txt
2185F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002186
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002187BECKHOFF CX5020 ETHERCAT MASTER DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07002188M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2189L: netdev@vger.kernel.org
2190S: Maintained
2191F: drivers/net/ethernet/ec_bhf.c
Dariusz Marcinkiewicz564ee362014-08-15 17:50:47 +02002192
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002193BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002194M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002196F: Documentation/filesystems/bfs.txt
2197F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002198F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002199
Bryan Wu1394f032007-05-06 14:50:22 -07002200BLACKFIN ARCHITECTURE
Sonic Zhanga4edbc12014-01-29 14:05:55 -08002201M: Steven Miao <realmz6@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002202L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Michael Opdenacker14431762014-03-10 15:49:49 -07002203T: git git://git.code.sf.net/p/adi-linux/code
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002204W: http://blackfin.uclinux.org
2205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002206F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07002207
Bryan Wue190d6b2007-07-17 14:43:44 +08002208BLACKFIN EMAC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002209L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue190d6b2007-07-17 14:43:44 +08002210W: http://blackfin.uclinux.org
2211S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07002212F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08002213
Mike Frysinger566da5b2007-06-11 15:31:30 +08002214BLACKFIN RTC DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002215L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger566da5b2007-06-11 15:31:30 +08002216W: http://blackfin.uclinux.org
2217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002218F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08002219
Mike Frysinger936ed492010-03-10 15:20:38 -08002220BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08002221M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002222L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Mike Frysinger936ed492010-03-10 15:20:38 -08002223W: http://blackfin.uclinux.org
2224S: Supported
2225F: drivers/mmc/host/bfin_sdh.c
2226
Bryan Wu1394f032007-05-06 14:50:22 -07002227BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002228M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002229L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wue3b2d3f2007-06-11 15:31:30 +08002230W: http://blackfin.uclinux.org
2231S: Supported
Joe Perches84602412012-01-10 15:09:04 -08002232F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07002233
Bryan Wu1e6d3202007-07-15 02:50:02 +08002234BLACKFIN WATCHDOG DRIVER
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002235L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wu1e6d3202007-07-15 02:50:02 +08002236W: http://blackfin.uclinux.org
2237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002238F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08002239
Bryan Wud24ecfc2007-05-01 23:26:32 +02002240BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002241M: Sonic Zhang <sonic.zhang@analog.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002242L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Bryan Wud24ecfc2007-05-01 23:26:32 +02002243W: http://blackfin.uclinux.org/
2244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002245F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02002246
Scott Jiang1e204372013-01-18 17:09:47 -03002247BLACKFIN MEDIA DRIVER
2248M: Scott Jiang <scott.jiang.linux@gmail.com>
Richard Weinbergerb3fe92b2014-06-06 14:38:29 -07002249L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
Scott Jiang1e204372013-01-18 17:09:47 -03002250W: http://blackfin.uclinux.org/
2251S: Supported
2252F: drivers/media/platform/blackfin/
2253F: drivers/media/i2c/adv7183*
2254F: drivers/media/i2c/vs6624*
2255
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08002256BLINKM RGB LED DRIVER
2257M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2258S: Maintained
2259F: drivers/leds/leds-blinkm.c
2260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002262M: Jens Axboe <axboe@kernel.dk>
Jens Axboe82c426e2015-11-05 13:29:25 -07002263L: linux-block@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002264T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002266F: block/
Steven Rostedtae11f7e2015-06-09 17:30:11 -04002267F: kernel/trace/blktrace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Joern Engel2b54aae2008-02-06 01:38:02 -08002269BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08002271L: linux-mtd@lists.infradead.org
2272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002273F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08002274
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002275BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002276M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002277M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002278M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002279L: linux-bluetooth@vger.kernel.org
2280W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002281T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2282T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002284F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002287M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07002288M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07002289M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07002290L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02002291W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02002292T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2293T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002295F: net/bluetooth/
2296F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298BONDING DRIVER
Jay Vosburgh79b30752014-03-27 10:33:44 -07002299M: Jay Vosburgh <j.vosburgh@gmail.com>
Veaceslav Falico898602a2014-03-27 18:43:50 +01002300M: Veaceslav Falico <vfalico@gmail.com>
Andy Gospodarek31639b92015-02-25 17:00:16 -05002301M: Andy Gospodarek <gospo@cumulusnetworks.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08002302L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002303W: http://sourceforge.net/projects/bonding/
2304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002305F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002306F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Alexei Starovoitovb5f4df32014-07-22 23:01:59 -07002308BPF (Safe dynamic programs and tools)
2309M: Alexei Starovoitov <ast@kernel.org>
2310L: netdev@vger.kernel.org
2311L: linux-kernel@vger.kernel.org
2312S: Supported
2313F: kernel/bpf/
2314
Gary Zambrano39105892006-06-22 17:26:20 -07002315BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002316M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07002317L: netdev@vger.kernel.org
2318S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002319F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07002320
Florian Fainelli32ec90d2014-02-13 16:08:51 -08002321BROADCOM GENET ETHERNET DRIVER
2322M: Florian Fainelli <f.fainelli@gmail.com>
2323L: netdev@vger.kernel.org
2324S: Supported
2325F: drivers/net/ethernet/broadcom/genet/
2326
Michael Chan948c51e2006-06-04 02:51:39 -07002327BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Jitendra Kalsariaf1d1bae2014-06-23 15:10:35 -04002328M: Sony Chacko <sony.chacko@qlogic.com>
2329M: Dept-HSGLinuxNICDev@qlogic.com
Michael Chan948c51e2006-06-04 02:51:39 -07002330L: netdev@vger.kernel.org
2331S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002332F: drivers/net/ethernet/broadcom/bnx2.*
2333F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07002334
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002335BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Ariel Elior08f6dd82014-05-27 13:11:36 +03002336M: Ariel Elior <ariel.elior@qlogic.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002337L: netdev@vger.kernel.org
2338S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002339F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08002340
Matt Porter90f4c592014-05-06 12:09:45 -04002341BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
Florian Fainellif18cf052014-09-19 11:17:12 -07002342M: Florian Fainelli <f.fainelli@gmail.com>
Florian Fainellid3cc2e82015-04-10 11:49:44 -07002343M: Ray Jui <rjui@broadcom.com>
2344M: Scott Branden <sbranden@broadcom.com>
Christian Daudt497a0452013-09-24 15:27:47 -07002345L: bcm-kernel-feedback-list@broadcom.com
Matt Porter90f4c592014-05-06 12:09:45 -04002346T: git git://github.com/broadcom/mach-bcm
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002347S: Maintained
2348F: arch/arm/mach-bcm/
2349F: arch/arm/boot/dts/bcm113*
Matt Porter90f4c592014-05-06 12:09:45 -04002350F: arch/arm/boot/dts/bcm216*
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002351F: arch/arm/boot/dts/bcm281*
2352F: arch/arm/configs/bcm_defconfig
Joe Perchese4ef47f2014-08-08 14:25:08 -07002353F: drivers/mmc/host/sdhci-bcm-kona.c
Christian Daudtaf4b8e32013-09-11 14:23:49 -07002354F: drivers/clocksource/bcm_kona_timer.c
2355
Scott Branden9209bec2014-10-16 21:57:16 -06002356BROADCOM BCM2835 ARM ARCHITECTURE
Stephen Warrenf680f252012-09-15 00:18:54 -06002357M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warren8bcdd922014-11-04 20:27:17 -07002358M: Lee Jones <lee@kernel.org>
Eric Anholt10b9e882015-07-22 12:55:36 -07002359M: Eric Anholt <eric@anholt.net>
Stephen Warrenf680f252012-09-15 00:18:54 -06002360L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
Eric Anholt82481122015-07-22 12:55:37 -07002361L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Stephen Warren8bcdd922014-11-04 20:27:17 -07002362T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
Stephen Warrenf680f252012-09-15 00:18:54 -06002363S: Maintained
Scott Branden9209bec2014-10-16 21:57:16 -06002364N: bcm2835
Stephen Warrenf680f252012-09-15 00:18:54 -06002365
Kevin Cernekeea2f67342014-10-20 21:28:06 -07002366BROADCOM BCM33XX MIPS ARCHITECTURE
2367M: Kevin Cernekee <cernekee@gmail.com>
2368L: linux-mips@linux-mips.org
2369S: Maintained
2370F: arch/mips/bcm3384/*
2371F: arch/mips/include/asm/mach-bcm3384/*
2372F: arch/mips/kernel/*bmips*
2373
Rafał Miłecki5564f092015-05-29 07:39:26 +02002374BROADCOM BCM47XX MIPS ARCHITECTURE
2375M: Hauke Mehrtens <hauke@hauke-m.de>
2376M: Rafał Miłecki <zajec5@gmail.com>
2377L: linux-mips@linux-mips.org
2378S: Maintained
2379F: arch/mips/bcm47xx/*
2380F: arch/mips/include/asm/mach-bcm47xx/*
2381
Scott Branden9209bec2014-10-16 21:57:16 -06002382BROADCOM BCM5301X ARM ARCHITECTURE
Hauke Mehrtens5b293eb2014-02-04 00:01:43 +01002383M: Hauke Mehrtens <hauke@hauke-m.de>
2384L: linux-arm-kernel@lists.infradead.org
2385S: Maintained
2386F: arch/arm/mach-bcm/bcm_5301x.c
2387F: arch/arm/boot/dts/bcm5301x.dtsi
2388F: arch/arm/boot/dts/bcm470*
2389
Florian Fainellie076e962014-03-04 18:14:58 -08002390BROADCOM BCM63XX ARM ARCHITECTURE
2391M: Florian Fainelli <f.fainelli@gmail.com>
2392L: linux-arm-kernel@lists.infradead.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002393T: git git://github.com/broadcom/arm-bcm63xx.git
Florian Fainellie076e962014-03-04 18:14:58 -08002394S: Maintained
2395F: arch/arm/mach-bcm/bcm63xx.c
2396F: arch/arm/include/debug/bcm63xx.S
2397
Kevin Cernekee7110e2272014-10-20 21:28:07 -07002398BROADCOM BCM63XX/BCM33XX UDC DRIVER
2399M: Kevin Cernekee <cernekee@gmail.com>
2400L: linux-usb@vger.kernel.org
2401S: Maintained
2402F: drivers/usb/gadget/udc/bcm63xx_udc.*
2403
Brian Norris2df94fd2014-07-14 18:06:03 -07002404BROADCOM BCM7XXX ARM ARCHITECTURE
Brian Norris2df94fd2014-07-14 18:06:03 -07002405M: Brian Norris <computersforpeace@gmail.com>
Florian Fainelli3b4b6fe2014-11-14 12:53:43 -08002406M: Gregory Fong <gregory.0xf0@gmail.com>
2407M: Florian Fainelli <f.fainelli@gmail.com>
Brian Norris2df94fd2014-07-14 18:06:03 -07002408L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Florian Fainelli1e65a342015-11-18 15:19:57 -08002409L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002410T: git git://github.com/broadcom/stblinux.git
Brian Norris2df94fd2014-07-14 18:06:03 -07002411S: Maintained
2412F: arch/arm/mach-bcm/*brcmstb*
2413F: arch/arm/boot/dts/bcm7*.dts*
Florian Fainellie36661e2014-11-14 12:53:44 -08002414F: drivers/bus/brcmstb_gisb.c
Brian Norris5009a282015-03-18 18:09:05 -07002415N: brcmstb
Brian Norris2df94fd2014-07-14 18:06:03 -07002416
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002417BROADCOM BMIPS MIPS ARCHITECTURE
2418M: Kevin Cernekee <cernekee@gmail.com>
2419M: Florian Fainelli <f.fainelli@gmail.com>
2420L: linux-mips@linux-mips.org
Florian Fainellieb6725d2015-01-29 15:21:56 -08002421T: git git://github.com/broadcom/stblinux.git
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002422S: Maintained
2423F: arch/mips/bmips/*
2424F: arch/mips/include/asm/mach-bmips/*
2425F: arch/mips/kernel/*bmips*
Joe Perches338808d2015-06-30 14:59:42 -07002426F: arch/mips/boot/dts/brcm/bcm*.dts*
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002427F: drivers/irqchip/irq-bcm7*
2428F: drivers/irqchip/irq-brcmstb*
Simon Arlott3271e612015-12-13 22:45:30 +00002429F: include/linux/bcm963xx_nvram.h
Simon Arlott8fce60b2015-12-13 22:46:59 +00002430F: include/linux/bcm963xx_tag.h
Kevin Cernekee70371ce2014-11-15 16:17:45 -08002431
Michael Chan948c51e2006-06-04 02:51:39 -07002432BROADCOM TG3 GIGABIT ETHERNET DRIVER
Prashant Sreedharan23629472014-06-27 16:21:50 -07002433M: Prashant Sreedharan <prashant@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002434M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07002435L: netdev@vger.kernel.org
2436S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07002437F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07002438
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002439BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2440M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08002441M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02002442M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01002443M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002444L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02002445L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002446S: Supported
Kalle Valo05491d22015-11-17 19:52:05 +02002447F: drivers/net/wireless/broadcom/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07002448
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002449BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002450M: QLogic-Storage-Upstream@qlogic.com
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07002451L: linux-scsi@vger.kernel.org
2452S: Supported
2453F: drivers/scsi/bnx2fc/
2454
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002455BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
Vikas Chaudhary3b7f0402014-07-03 08:18:29 -04002456M: QLogic-Storage-Upstream@qlogic.com
Eddie Wai6a6b5ad02013-07-11 17:15:56 -07002457L: linux-scsi@vger.kernel.org
2458S: Supported
2459F: drivers/scsi/bnx2i/
2460
Jon Mason63f37dd2015-08-26 18:35:30 -04002461BROADCOM IPROC ARM ARCHITECTURE
Scott Branden36c02372014-09-12 16:50:56 -07002462M: Ray Jui <rjui@broadcom.com>
2463M: Scott Branden <sbranden@broadcom.com>
Jon Mason63f37dd2015-08-26 18:35:30 -04002464M: Jon Mason <jonmason@broadcom.com>
Scott Branden36c02372014-09-12 16:50:56 -07002465L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2466L: bcm-kernel-feedback-list@broadcom.com
Florian Fainellieb6725d2015-01-29 15:21:56 -08002467T: git git://github.com/broadcom/cygnus-linux.git
Scott Branden36c02372014-09-12 16:50:56 -07002468S: Maintained
2469N: iproc
2470N: cygnus
Jon Mason63f37dd2015-08-26 18:35:30 -04002471N: nsp
Scott Branden36c02372014-09-12 16:50:56 -07002472N: bcm9113*
2473N: bcm9583*
Jon Mason63f37dd2015-08-26 18:35:30 -04002474N: bcm9585*
2475N: bcm9586*
2476N: bcm988312
Scott Branden36c02372014-09-12 16:50:56 -07002477N: bcm113*
Jon Mason63f37dd2015-08-26 18:35:30 -04002478N: bcm583*
2479N: bcm585*
2480N: bcm586*
2481N: bcm88312
Scott Branden36c02372014-09-12 16:50:56 -07002482
Gregory Fong3b0213d2015-05-28 19:14:05 -07002483BROADCOM BRCMSTB GPIO DRIVER
2484M: Gregory Fong <gregory.0xf0@gmail.com>
Florian Fainelli9c2abe22015-11-18 15:22:13 -08002485L: bcm-kernel-feedback-list@broadcom.com
Gregory Fong3b0213d2015-05-28 19:14:05 -07002486S: Supported
2487F: drivers/gpio/gpio-brcmstb.c
2488F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2489
Markus Mayer7b7f5882014-02-12 15:42:27 -08002490BROADCOM KONA GPIO DRIVER
Markus Mayer5e163902014-07-29 11:10:07 -07002491M: Ray Jui <rjui@broadcom.com>
Markus Mayer7b7f5882014-02-12 15:42:27 -08002492L: bcm-kernel-feedback-list@broadcom.com
2493S: Supported
2494F: drivers/gpio/gpio-bcm-kona.c
Joe Perches1db12cd2015-06-30 14:59:45 -07002495F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
Markus Mayer7b7f5882014-02-12 15:42:27 -08002496
Rafał Miłeckif6e734a2015-06-10 23:05:08 +02002497BROADCOM NVRAM DRIVER
2498M: Rafał Miłecki <zajec5@gmail.com>
2499L: linux-mips@linux-mips.org
2500S: Maintained
2501F: drivers/firmware/broadcom/*
2502
Brian Norris02787da2015-05-12 17:16:50 -07002503BROADCOM STB NAND FLASH DRIVER
2504M: Brian Norris <computersforpeace@gmail.com>
Kamal Dasu1ddaa022015-11-17 13:50:08 -05002505M: Kamal Dasu <kdasu.kdev@gmail.com>
Brian Norris02787da2015-05-12 17:16:50 -07002506L: linux-mtd@lists.infradead.org
Florian Fainelli12857342015-11-16 15:34:15 -08002507L: bcm-kernel-feedback-list@broadcom.com
Brian Norris02787da2015-05-12 17:16:50 -07002508S: Maintained
2509F: drivers/mtd/nand/brcmnand/
2510
Rafał Miłeckic9678d82012-01-13 22:55:05 +01002511BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2512M: Rafał Miłecki <zajec5@gmail.com>
2513L: linux-wireless@vger.kernel.org
2514S: Maintained
2515F: drivers/bcma/
2516F: include/linux/bcma/
2517
Florian Fainellib8302202014-04-24 18:09:00 -07002518BROADCOM SYSTEMPORT ETHERNET DRIVER
2519M: Florian Fainelli <f.fainelli@gmail.com>
2520L: netdev@vger.kernel.org
2521S: Supported
2522F: drivers/net/ethernet/broadcom/bcmsysport.*
2523
Jing Huang7725ccf2009-09-23 17:46:15 -07002524BROCADE BFA FC SCSI DRIVER
Anil Gurumurthyaa803372014-02-26 06:08:42 -05002525M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2526M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
Joe Perches455518e2009-11-11 14:26:10 -08002527L: linux-scsi@vger.kernel.org
2528S: Supported
2529F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07002530
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002531BROCADE BNA 10 GIGABIT ETHERNET DRIVER
Rasesh Mody439e9572014-10-01 17:20:41 -04002532M: Rasesh Mody <rasesh.mody@qlogic.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002533L: netdev@vger.kernel.org
2534S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07002535F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07002536
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002537BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07002538M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002539L: linux-scsi@vger.kernel.org
2540S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002541F: block/bsg.c
2542F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002543F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02002544
Clemens Ladischaf399172011-01-10 16:32:54 +01002545BT87X AUDIO DRIVER
2546M: Clemens Ladisch <clemens@ladisch.de>
2547L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2548T: git git://git.alsa-project.org/alsa-kernel.git
2549S: Maintained
2550F: Documentation/sound/alsa/Bt87x.txt
2551F: sound/pci/bt87x.c
2552
Michael Bueschff1d5c22008-07-25 01:46:10 -07002553BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02002554M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07002555W: http://bu3sch.de/btgpio.php
2556S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08002557F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07002558
Joe Percheseb1eb042009-01-21 10:49:16 -05002559BTRFS FILE SYSTEM
Chris Masonc0778e22013-12-03 20:16:03 -05002560M: Chris Mason <clm@fb.com>
2561M: Josef Bacik <jbacik@fb.com>
Jiri Slabyd8130622015-07-17 16:23:20 -07002562M: David Sterba <dsterba@suse.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05002563L: linux-btrfs@vger.kernel.org
2564W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002565Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06002566T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05002567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002568F: Documentation/filesystems/btrfs.txt
2569F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05002570
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02002572M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002573L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002574W: https://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002575T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02002576S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002577F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002578F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Khalid Aziz1f349232013-06-25 09:57:27 -06002580BUSLOGIC SCSI DRIVER
2581M: Khalid Aziz <khalid@gonehiking.org>
2582L: linux-scsi@vger.kernel.org
2583S: Maintained
2584F: drivers/scsi/BusLogic.*
2585F: drivers/scsi/FlashPoint.*
2586
Clemens Ladischaf399172011-01-10 16:32:54 +01002587C-MEDIA CMI8788 DRIVER
2588M: Clemens Ladisch <clemens@ladisch.de>
2589L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2590T: git git://git.alsa-project.org/alsa-kernel.git
2591S: Maintained
2592F: sound/pci/oxygen/
2593
Mark Salter21413552011-10-04 11:21:42 -04002594C6X ARCHITECTURE
2595M: Mark Salter <msalter@redhat.com>
2596M: Aurelien Jacquiot <a-jacquiot@ti.com>
2597L: linux-c6x-dev@linux-c6x.org
2598W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2599S: Maintained
2600F: arch/c6x/
2601
David Howellsa5432f52009-04-20 15:46:45 +01002602CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002603M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00002604L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01002605S: Supported
2606F: Documentation/filesystems/caching/cachefiles.txt
2607F: fs/cachefiles/
2608
Hans Verkuilc815ca32012-11-23 07:05:54 -03002609CADET FM/AM RADIO RECEIVER DRIVER
2610M: Hans Verkuil <hverkuil@xs4all.nl>
2611L: linux-media@vger.kernel.org
2612T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002613W: https://linuxtv.org
Hans Verkuilc815ca32012-11-23 07:05:54 -03002614S: Maintained
2615F: drivers/media/radio/radio-cadet*
2616
Jonathan Corbet77d51402007-03-22 19:44:17 -03002617CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002618M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002619L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002620T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03002621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002622F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002623F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03002624
Joe Perches201b6ba2010-09-07 20:33:24 +00002625CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00002626M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00002627L: netdev@vger.kernel.org
2628S: Supported
2629F: Documentation/networking/caif/
2630F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002631F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00002632F: include/net/caif/
2633F: net/caif/
2634
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002635CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07002636M: Muli Ben-Yehuda <muli@il.ibm.com>
2637M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002638L: discuss@x86-64.org
2639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002640F: arch/x86/kernel/pci-calgary_64.c
2641F: arch/x86/kernel/tce_64.c
2642F: arch/x86/include/asm/calgary.h
2643F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02002644
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002645CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002646M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Buddef7214cf2015-03-06 09:00:38 +01002647M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002648L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002649W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002650T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2651T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002652S: Maintained
John Whitmoref35f6c82013-12-06 12:49:08 +00002653F: Documentation/networking/can.txt
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002654F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002655F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002656F: include/uapi/linux/can.h
2657F: include/uapi/linux/can/bcm.h
2658F: include/uapi/linux/can/raw.h
2659F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002660
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002661CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002662M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00002663M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00002664L: linux-can@vger.kernel.org
Marc Kleine-Budde84b0d712015-03-06 08:58:33 +01002665W: https://github.com/linux-can
Marc Kleine-Budde870482a2015-01-15 16:56:26 +01002666T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2667T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002668S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002669F: drivers/net/can/
2670F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00002671F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002672F: include/uapi/linux/can/error.h
2673F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00002674
James Morris95d16c72012-03-16 12:05:48 +11002675CAPABILITIES
2676M: Serge Hallyn <serge.hallyn@canonical.com>
2677L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07002678S: Supported
James Morris95d16c72012-03-16 12:05:48 +11002679F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002680F: include/uapi/linux/capability.h
Joe Perches63059022012-06-07 14:21:10 -07002681F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10002682F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11002683
Kevin Tsaib84894c2015-01-15 17:41:04 -08002684CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2685M: Kevin Tsai <ktsai@capellamicro.com>
2686S: Maintained
2687F: drivers/iio/light/cm*
2688F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2689
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002690CAVIUM LIQUIDIO NETWORK DRIVER
2691M: Derek Chickles <derek.chickles@caviumnetworks.com>
2692M: Satanand Burla <satananda.burla@caviumnetworks.com>
2693M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2694M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2695L: netdev@vger.kernel.org
2696W: http://www.cavium.com
2697S: Supported
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002698F: drivers/net/ethernet/cavium/liquidio/
2699
Varka Bhadramef0bbac2014-10-29 16:15:22 +05302700CC2520 IEEE-802.15.4 RADIO DRIVER
2701M: Varka Bhadram <varkabhadram@gmail.com>
2702L: linux-wpan@vger.kernel.org
2703S: Maintained
2704F: drivers/net/ieee802154/cc2520.c
2705F: include/linux/spi/cc2520.h
2706F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2707
Arnd Bergmannb8154542008-05-16 11:10:59 +02002708CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07002709M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002710L: linuxppc-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02002711W: http://www.ibm.com/developerworks/power/cell/
2712S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002713F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07002714F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002715F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07002716F: arch/powerpc/oprofile/*cell*
2717F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02002718
Sage Weil398ecff52015-07-09 11:46:14 -04002719CEPH COMMON CODE (LIBCEPH)
2720M: Ilya Dryomov <idryomov@gmail.com>
Joe Perchese43cdb52015-06-25 15:02:03 -07002721M: "Yan, Zheng" <zyan@redhat.com>
Sage Weil0f5417c2015-02-19 10:10:40 -08002722M: Sage Weil <sage@redhat.com>
Sage Weil82593f82010-03-29 09:53:23 -07002723L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002724W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002725T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002726T: git git://github.com/ceph/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002727S: Supported
Joe Perches14430812013-09-11 14:23:50 -07002728F: net/ceph/
2729F: include/linux/ceph/
2730F: include/linux/crush/
Sage Weil9030aaf2009-10-06 11:31:15 -07002731
Sage Weil398ecff52015-07-09 11:46:14 -04002732CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2733M: "Yan, Zheng" <zyan@redhat.com>
2734M: Sage Weil <sage@redhat.com>
2735M: Ilya Dryomov <idryomov@gmail.com>
2736L: ceph-devel@vger.kernel.org
2737W: http://ceph.com/
2738T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04002739T: git git://github.com/ceph/ceph-client.git
Sage Weil398ecff52015-07-09 11:46:14 -04002740S: Supported
2741F: Documentation/filesystems/ceph.txt
2742F: fs/ceph/
2743
David Howellscfc411e2015-08-14 15:20:41 +01002744CERTIFICATE HANDLING:
2745M: David Howells <dhowells@redhat.com>
2746M: David Woodhouse <dwmw2@infradead.org>
David Howellsd8d80382016-01-14 15:50:20 +00002747L: keyrings@vger.kernel.org
David Howellscfc411e2015-08-14 15:20:41 +01002748S: Maintained
2749F: Documentation/module-signing.txt
2750F: certs/
David Howellsd8d80382016-01-14 15:50:20 +00002751F: scripts/sign-file.c
David Howellscfc411e2015-08-14 15:20:41 +01002752F: scripts/extract-cert.c
2753
David Vrabel18332a82008-09-17 16:34:44 +01002754CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002755L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002756S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002757F: Documentation/usb/WUSB-Design-overview.txt
2758F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002759F: drivers/usb/host/hwa-hc.c
2760F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002761F: drivers/usb/wusbcore/
2762F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002763
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002764CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002765M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002766W: http://miguelojeda.es/auxdisplay.htm
2767W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002769F: drivers/auxdisplay/cfag12864b.c
2770F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002771
2772CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002773M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002774W: http://miguelojeda.es/auxdisplay.htm
2775W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002777F: drivers/auxdisplay/cfag12864bfb.c
2778F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002779
Johannes Berg704232c2007-04-23 12:20:05 -07002780CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002781M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002782L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002783W: http://wireless.kernel.org/
2784T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2785T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002786S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002787F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002788F: include/net/cfg80211.h
2789F: net/wireless/*
2790X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002791
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002792CHAR and MISC DRIVERS
2793M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002794M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002795T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002796S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002797F: drivers/char/*
2798F: drivers/misc/*
Robert P. J. Day471322a2014-05-16 04:41:09 -04002799F: include/linux/miscdevice.h
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002800
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002801CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002802M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002803M: Joe Perches <joe@perches.com>
2804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002805F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002806
Harry Weif8407f262011-02-25 14:44:15 -08002807CHINESE DOCUMENTATION
2808M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002809L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002810L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2811S: Maintained
2812F: Documentation/zh_CN/
2813
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002814CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
Peter Chen60d77b3d2015-12-25 15:54:32 +08002815M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +08002816T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002817L: linux-usb@vger.kernel.org
2818S: Maintained
2819F: drivers/usb/chipidea/
2820
Hans de Goedea93ad652015-03-21 20:40:45 -07002821CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2822M: Hans de Goede <hdegoede@redhat.com>
2823L: linux-input@vger.kernel.org
2824S: Maintained
2825F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2826F: drivers/input/touchscreen/chipone_icn8318.c
2827
Olof Johanssonab043102013-11-07 14:25:45 -08002828CHROME HARDWARE PLATFORM SUPPORT
2829M: Olof Johansson <olof@lixom.net>
2830S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08002831T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
Olof Johanssonab043102013-11-07 14:25:45 -08002832F: drivers/platform/chrome/
2833
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002834CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002835M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302836M: Sujith Sankar <ssujith@cisco.com>
Govindarajulu Varadarajanc327e8f2014-05-20 03:14:32 +05302837M: Govindarajulu Varadarajan <_govind@gmx.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002838M: Neel Patel <neepatel@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002839S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002840F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002841
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002842CISCO VIC LOW LATENCY NIC DRIVER
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002843M: Christian Benvenuti <benve@cisco.com>
2844M: Dave Goodell <dgoodell@cisco.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08002845S: Supported
Dave Goodell \(dgoodell\)35ef4a92015-10-15 20:01:29 -07002846F: drivers/infiniband/hw/usnic/
Upinder Malhie3cf00d2013-09-10 03:38:16 +00002847
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002848CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002849M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002850L: netdev@vger.kernel.org
2851S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002852F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002853
Mark Brown3d4cfdc2014-02-04 20:28:12 +00002854CIRRUS LOGIC AUDIO CODEC DRIVERS
2855M: Brian Austin <brian.austin@cirrus.com>
2856M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2857L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2858S: Maintained
2859F: sound/soc/codecs/cs*
2860
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002861CLEANCACHE API
2862M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2863L: linux-kernel@vger.kernel.org
2864S: Maintained
2865F: mm/cleancache.c
2866F: include/linux/cleancache.h
2867
Russell Kingd4275352009-04-16 14:05:27 +01002868CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002869M: Russell King <linux@arm.linux.org.uk>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002870L: linux-clk@vger.kernel.org
Joe Perches37417042012-03-23 15:01:58 -07002871S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002872F: include/linux/clk.h
2873
John Stultz9222d242013-07-16 16:45:31 +02002874CLOCKSOURCE, CLOCKEVENT DRIVERS
2875M: Daniel Lezcano <daniel.lezcano@linaro.org>
2876M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01002877L: linux-kernel@vger.kernel.org
John Stultz9222d242013-07-16 16:45:31 +02002878T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2879S: Supported
2880F: drivers/clocksource
2881
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002882CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002883M: Hiral Patel <hiralpat@cisco.com>
2884M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002885M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002886L: linux-scsi@vger.kernel.org
2887S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002888F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002889
Narsimhulu Musinic8806b62015-05-29 01:04:01 -07002890CISCO SCSI HBA DRIVER
2891M: Narsimhulu Musini <nmusini@cisco.com>
2892M: Sesidhar Baddela <sebaddel@cisco.com>
2893L: linux-scsi@vger.kernel.org
2894S: Supported
2895F: drivers/scsi/snic/
2896
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002897CMPC ACPI DRIVER
2898M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2899M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002900L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002901S: Supported
2902F: drivers/platform/x86/classmate-laptop.c
2903
Hans Verkuil85756a02015-05-12 08:52:21 -03002904COBALT MEDIA DRIVER
2905M: Hans Verkuil <hans.verkuil@cisco.com>
2906L: linux-media@vger.kernel.org
2907T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02002908W: https://linuxtv.org
Hans Verkuil85756a02015-05-12 08:52:21 -03002909S: Supported
2910F: drivers/media/pci/cobalt/
2911
Nicolas Palix74425ee2010-06-06 17:15:01 +02002912COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002913M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002914M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002915M: Nicolas Palix <nicolas.palix@imag.fr>
Jiri Slabyd8130622015-07-17 16:23:20 -07002916M: Michal Marek <mmarek@suse.com>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002917L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002918T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002919W: http://coccinelle.lip6.fr/
2920S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002921F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002922F: scripts/coccinelle/
2923F: scripts/coccicheck
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002926M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927M: coda@cs.cmu.edu
2928L: codalist@coda.cs.cmu.edu
2929W: http://www.coda.cs.cmu.edu/
2930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002931F: Documentation/filesystems/coda.txt
2932F: fs/coda/
2933F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002934F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Philipp Zabel0b142612014-11-04 07:26:35 -03002936CODA V4L2 MEM2MEM DRIVER
2937M: Philipp Zabel <p.zabel@pengutronix.de>
2938L: linux-media@vger.kernel.org
2939S: Maintained
2940F: Documentation/devicetree/bindings/media/coda.txt
2941F: drivers/media/platform/coda/
2942
Mike Turquette7704add2012-05-02 18:37:45 -07002943COMMON CLK FRAMEWORK
Michael Turquettea85fa002015-06-17 13:41:04 -07002944M: Michael Turquette <mturquette@baylibre.com>
Michael Turquettef9561652014-11-12 16:43:47 -08002945M: Stephen Boyd <sboyd@codeaurora.org>
Paul Walmsleyaa571b12015-03-25 18:32:59 +00002946L: linux-clk@vger.kernel.org
Michael Turquettebaeb0d92014-11-13 17:18:20 -08002947T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
Mike Turquette7704add2012-05-02 18:37:45 -07002948S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002949F: drivers/clk/
2950X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002951F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002952F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002953
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002954COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002956L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002957L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002958W: http://linux-cifs.samba.org/
Kevin Cernekeebb1d5dd2014-11-10 13:09:24 -08002959T: git git://git.samba.org/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002960S: Supported
Joe Perchesec421a72014-08-08 14:24:59 -07002961F: Documentation/filesystems/cifs/
Joe Perches679655d2009-04-07 20:44:32 -07002962F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002966L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002968F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
2970COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002972L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002977M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002978L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002980F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002982COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002983M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002984L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002986F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002987
Simon Arlott949be0f2007-03-06 02:47:46 -08002988CONEXANT ACCESSRUNNER USB DRIVER
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002989L: accessrunner-general@lists.sourceforge.net
2990W: http://accessrunner.sourceforge.net/
Simon Arlott44243ef2015-11-15 17:12:08 +00002991S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002992F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002993
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002994CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002995M: Joel Becker <jlbec@evilplan.org>
Christoph Hellwig1609bac2016-01-04 12:33:13 +01002996M: Christoph Hellwig <hch@lst.de>
2997T: git git://git.infradead.org/users/hch/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002999F: fs/configfs/
3000F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003001
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07003002CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07003003M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07003004L: netdev@vger.kernel.org
3005S: Maintained
3006F: drivers/connector/
3007
Tejun Heoa3e33542014-05-13 15:49:58 -04003008CONTROL GROUP (CGROUP)
Paul Menage860ca0e2011-11-18 14:22:09 -08003009M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07003010M: Li Zefan <lizefan@huawei.com>
Tejun Heo4d205672015-06-12 17:15:23 -05003011M: Johannes Weiner <hannes@cmpxchg.org>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08003012L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08003013T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003014S: Maintained
Tejun Heoa3e33542014-05-13 15:49:58 -04003015F: Documentation/cgroups/
Joe Perches679655d2009-04-07 20:44:32 -07003016F: include/linux/cgroup*
3017F: kernel/cgroup*
Tejun Heoa3e33542014-05-13 15:49:58 -04003018
3019CONTROL GROUP - CPUSET
3020M: Li Zefan <lizefan@huawei.com>
3021L: cgroups@vger.kernel.org
3022W: http://www.bullopensource.org/cpuset/
3023W: http://oss.sgi.com/projects/cpusets/
3024T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3025S: Maintained
3026F: Documentation/cgroups/cpusets.txt
3027F: include/linux/cpuset.h
3028F: kernel/cpuset.c
3029
3030CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3031M: Johannes Weiner <hannes@cmpxchg.org>
Michal Hockofbd7dc72015-07-17 16:23:26 -07003032M: Michal Hocko <mhocko@kernel.org>
Johannes Weinered0f1e22015-12-11 13:40:35 -08003033M: Vladimir Davydov <vdavydov@virtuozzo.com>
Tejun Heoa3e33542014-05-13 15:49:58 -04003034L: cgroups@vger.kernel.org
3035L: linux-mm@kvack.org
3036S: Maintained
3037F: mm/memcontrol.c
Johannes Weiner5d1ea482014-12-10 15:44:55 -08003038F: mm/swap_cgroup.c
Paul Menagefb3a0fb2008-03-04 14:28:28 -08003039
Rudolf Marekbebe4672007-05-08 17:22:02 +02003040CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02003041M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02003042L: lm-sensors@lm-sensors.org
3043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003044F: Documentation/hwmon/coretemp
3045F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02003046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003048M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049W: http://www.fi.muni.cz/~kas/cosa/
3050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003051F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Florian Fainelli4371ee32009-06-01 02:43:17 -07003053CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003054M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07003055L: netdev@vger.kernel.org
3056S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07003057F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059CPU FREQUENCY DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003060M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
viresh kumar45c009a2013-04-26 12:53:16 +00003061M: Viresh Kumar <viresh.kumar@linaro.org>
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02003062L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05303064T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3065T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07003066F: drivers/cpufreq/
3067F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003069CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3070M: Viresh Kumar <viresh.kumar@linaro.org>
Sudeep Holla171d0ba2014-02-11 11:42:32 +00003071M: Sudeep Holla <sudeep.holla@arm.com>
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00003072L: linux-pm@vger.kernel.org
3073W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3074S: Maintained
3075F: drivers/cpufreq/arm_big_little.h
3076F: drivers/cpufreq/arm_big_little.c
3077F: drivers/cpufreq/arm_big_little_dt.c
3078
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003079CPUIDLE DRIVER - ARM BIG LITTLE
Joe Perchesb75f0052014-03-03 15:38:37 -08003080M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3081M: Daniel Lezcano <daniel.lezcano@linaro.org>
3082L: linux-pm@vger.kernel.org
3083L: linux-arm-kernel@lists.infradead.org
Joe Perchescea83212014-03-03 15:38:38 -08003084T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perchesb75f0052014-03-03 15:38:37 -08003085S: Maintained
3086F: drivers/cpuidle/cpuidle-big_little.c
Lorenzo Pieralisi14d2c342013-06-12 17:40:01 +02003087
Bartlomiej Zolnierkiewicz0c570c12014-12-02 16:41:35 +01003088CPUIDLE DRIVER - ARM EXYNOS
3089M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3090M: Daniel Lezcano <daniel.lezcano@linaro.org>
3091M: Kukjin Kim <kgene@kernel.org>
3092L: linux-pm@vger.kernel.org
3093L: linux-samsung-soc@vger.kernel.org
3094S: Supported
3095F: drivers/cpuidle/cpuidle-exynos.c
3096F: arch/arm/mach-exynos/pm.c
3097
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003098CPUIDLE DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07003099M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003100M: Daniel Lezcano <daniel.lezcano@linaro.org>
3101L: linux-pm@vger.kernel.org
3102S: Maintained
Joe Perchescea83212014-03-03 15:38:38 -08003103T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00003104F: drivers/cpuidle/*
3105F: include/linux/cpuidle.h
3106
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003110F: arch/x86/kernel/cpuid.c
3111F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003113CPU POWER MONITORING SUBSYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07003114M: Thomas Renninger <trenn@suse.com>
Thomas Renninger103f1792014-07-22 16:06:01 +02003115L: linux-pm@vger.kernel.org
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003116S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07003117F: tools/power/cpupower/
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02003118
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01003120W: http://sourceforge.net/projects/cramfs/
Michael Opdenacker54886a72013-11-12 15:08:35 -08003121S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07003122F: Documentation/filesystems/cramfs.txt
3123F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003126M: Mikael Starvik <starvik@axis.com>
3127M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02003128L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129W: http://developer.axis.com
Fengguang Wu9f273c22016-01-20 15:03:25 -08003130T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003132F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003133F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07003136M: Herbert Xu <herbert@gondor.apana.org.au>
3137M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138L: linux-crypto@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08003139T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
Joe Perches54e58812009-04-07 21:08:10 -07003140T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: Documentation/crypto/
Stephan Mueller2ca87a12015-03-06 21:36:21 +01003143F: Documentation/DocBook/crypto-API.tmpl
Joe Perches679655d2009-04-07 20:44:32 -07003144F: arch/*/crypto/
3145F: crypto/
3146F: drivers/crypto/
3147F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Neil Horman5b07bd52009-02-05 16:03:04 +11003149CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003150M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11003151L: linux-crypto@vger.kernel.org
3152S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07003153F: crypto/ansi_cprng.c
3154F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11003155
Hans Verkuilfc279cc2015-11-30 18:05:54 -02003156CS3308 MEDIA DRIVER
3157M: Hans Verkuil <hverkuil@xs4all.nl>
3158L: linux-media@vger.kernel.org
3159T: git git://linuxtv.org/media_tree.git
3160W: http://linuxtv.org
3161S: Odd Fixes
3162F: drivers/media/i2c/cs3308.c
3163F: drivers/media/i2c/cs3308.h
3164
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003165CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07003166M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003168F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003169
Solomon Peachya910e4a2013-05-24 20:04:38 -04003170CW1200 WLAN driver
Joe Perchesb75f0052014-03-03 15:38:37 -08003171M: Solomon Peachy <pizza@shaftnet.org>
3172S: Maintained
Kalle Valo560424e2015-11-17 20:09:02 +02003173F: drivers/net/wireless/st/cw1200/
Solomon Peachya910e4a2013-05-24 20:04:38 -04003174
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003175CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003176M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08003177L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003178L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003179T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003180W: https://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07003181W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003183F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003184F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02003185F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03003186
Hans Verkuil3f101d92012-11-23 07:00:02 -03003187CX2341X MPEG ENCODER HELPER MODULE
3188M: Hans Verkuil <hverkuil@xs4all.nl>
3189L: linux-media@vger.kernel.org
3190T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003191W: https://linuxtv.org
Hans Verkuil3f101d92012-11-23 07:00:02 -03003192S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03003193F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03003194F: include/media/cx2341x*
3195
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003196CX24120 MEDIA DRIVER
3197M: Jemma Denson <jdenson@gmail.com>
3198M: Patrick Boettcher <patrick.boettcher@posteo.de>
3199L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003200W: https://linuxtv.org
Patrick Boettcherb8fe6e22015-04-28 02:53:13 -03003201Q: http://patchwork.linuxtv.org/project/linux-media/list/
3202S: Maintained
3203F: drivers/media/dvb-frontends/cx24120*
3204
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003205CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02003206M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003207L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003208W: https://linuxtv.org
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02003209T: git git://linuxtv.org/media_tree.git
3210S: Odd fixes
3211F: Documentation/video4linux/cx88/
3212F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003213
Antti Palosaari91952bc2012-10-01 12:28:46 -03003214CXD2820R MEDIA DRIVER
3215M: Antti Palosaari <crope@iki.fi>
3216L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003217W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003218W: http://palosaari.fi/linux/
3219Q: http://patchwork.linuxtv.org/project/linux-media/list/
3220T: git git://linuxtv.org/anttip/media_tree.git
3221S: Maintained
3222F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003223
Steve Wisee5ec3782008-05-20 14:06:33 -07003224CXGB3 ETHERNET DRIVER (CXGB3)
Divy Le Raycdc99232013-11-11 15:01:39 -08003225M: Santosh Raspatur <santosh@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07003226L: netdev@vger.kernel.org
3227W: http://www.chelsio.com
3228S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003229F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003230
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003231CXGB3 ISCSI DRIVER (CXGB3I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003232M: Karen Xie <kxie@chelsio.com>
3233L: linux-scsi@vger.kernel.org
3234W: http://www.chelsio.com
3235S: Supported
3236F: drivers/scsi/cxgbi/cxgb3i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003237
Steve Wisee5ec3782008-05-20 14:06:33 -07003238CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003240L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07003241W: http://www.openfabrics.org
3242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003243F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07003244
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003245CXGB4 ETHERNET DRIVER (CXGB4)
Dimitris Michailidis56f16c72014-06-13 14:11:14 -07003246M: Hariprasad S <hariprasad@chelsio.com>
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003247L: netdev@vger.kernel.org
3248W: http://www.chelsio.com
3249S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003250F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003251
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003252CXGB4 ISCSI DRIVER (CXGB4I)
Joe Perches49e7d9d2015-04-15 16:17:31 -07003253M: Karen Xie <kxie@chelsio.com>
3254L: linux-scsi@vger.kernel.org
3255W: http://www.chelsio.com
3256S: Supported
3257F: drivers/scsi/cxgbi/cxgb4i
Anish Bhattd8ae3c32014-11-04 15:19:22 -08003258
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003259CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3260M: Steve Wise <swise@chelsio.com>
3261L: linux-rdma@vger.kernel.org
3262W: http://www.openfabrics.org
3263S: Supported
3264F: drivers/infiniband/hw/cxgb4/
3265
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003266CXGB4VF ETHERNET DRIVER (CXGB4VF)
3267M: Casey Leedom <leedom@chelsio.com>
3268L: netdev@vger.kernel.org
3269W: http://www.chelsio.com
3270S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07003271F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07003272
Ian Munsiea9282d02014-10-08 19:55:05 +11003273CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3274M: Ian Munsie <imunsie@au1.ibm.com>
3275M: Michael Neuling <mikey@neuling.org>
3276L: linuxppc-dev@lists.ozlabs.org
3277S: Supported
3278F: drivers/misc/cxl/
Michael Neulingec249dd2015-05-27 16:07:16 +10003279F: include/misc/cxl*
Ian Munsiea9282d02014-10-08 19:55:05 +11003280F: include/uapi/misc/cxl.h
3281F: Documentation/powerpc/cxl.txt
3282F: Documentation/powerpc/cxl.txt
3283F: Documentation/ABI/testing/sysfs-class-cxl
3284
Matthew R. Ochs11f43ae2015-10-21 15:15:22 -05003285CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3286M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3287M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3288L: linux-scsi@vger.kernel.org
3289S: Supported
3290F: drivers/scsi/cxlflash/
3291F: include/uapi/scsi/cxlflash_ioctls.h
3292F: Documentation/powerpc/cxlflash.txt
3293
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003294STMMAC ETHERNET DRIVER
3295M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3296L: netdev@vger.kernel.org
3297W: http://www.stlinux.com
3298S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07003299F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08003300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003302M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003303L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304W: http://www.arm.linux.org.uk/
3305S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09003306F: drivers/video/fbdev/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07003307
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003310S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07003311F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07003312F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003313F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
3315CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08003317S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003318F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003320CYPRESS_FIRMWARE MEDIA DRIVER
3321M: Antti Palosaari <crope@iki.fi>
3322L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003323W: https://linuxtv.org
Antti Palosaari402f6ae2013-04-09 21:30:41 -03003324W: http://palosaari.fi/linux/
3325Q: http://patchwork.linuxtv.org/project/linux-media/list/
3326T: git git://linuxtv.org/anttip/media_tree.git
3327S: Maintained
3328F: drivers/media/common/cypress_firmware*
3329
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003330CYTTSP TOUCHSCREEN DRIVER
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003331M: Ferruh Yigit <fery@cypress.com>
Joe Perches63059022012-06-07 14:21:10 -07003332L: linux-input@vger.kernel.org
Javier Martinez Canillasbe9a6f42013-08-29 08:43:58 -07003333S: Supported
Joe Perches63059022012-06-07 14:21:10 -07003334F: drivers/input/touchscreen/cyttsp*
3335F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08003336
Joshua Kinardaaaf5fb2015-02-16 16:00:26 -08003337DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3338M: Joshua Kinard <kumba@gentoo.org>
3339S: Maintained
3340F: drivers/rtc/rtc-ds1685.c
3341F: include/linux/rtc/ds1685.h
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003344M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345W: http://yaina.de/jreuter/
3346W: http://www.qsl.net/dl1bke/
3347L: linux-hams@vger.kernel.org
3348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003349F: net/ax25/af_ax25.c
3350F: net/ax25/ax25_dev.c
3351F: net/ax25/ax25_ds_*
3352F: net/ax25/ax25_in.c
3353F: net/ax25/ax25_out.c
3354F: net/ax25/ax25_timer.c
3355F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003357DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003358L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07003359S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003360F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08003361F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003362
3363DC390/AM53C974 SCSI driver
Jiri Slabyd8130622015-07-17 16:23:20 -07003364M: Hannes Reinecke <hare@suse.com>
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003365L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003366S: Maintained
Hannes Reinecke71bd8492014-11-24 15:37:30 +01003367F: drivers/scsi/am53c974.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02003370M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: Ali Akcaagac <aliakc@web.de>
3372M: Jamie Lenehan <lenehan@twibble.org>
Randy Dunlapf5df58812006-07-14 00:24:29 -07003373L: dc395x@twibble.org
Joe Perchescf015e92014-02-25 15:01:47 -08003374W: http://twibble.org/dist/dc395x/
3375W: http://lists.twibble.org/mailman/listinfo/dc395x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003377F: Documentation/scsi/dc395x.txt
3378F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003380DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00003381M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003382L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003383W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003385F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003386F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07003387F: include/linux/tfrc.h
3388F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07003389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391W: http://linux-decnet.sourceforge.net
3392L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00003393S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003394F: Documentation/networking/decnet.txt
3395F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Maciej W. Rozyckiebff05b2014-04-06 23:04:00 +01003397DECSTATION PLATFORM SUPPORT
3398M: "Maciej W. Rozycki" <macro@linux-mips.org>
3399L: linux-mips@linux-mips.org
3400W: http://www.linux-mips.org/wiki/DECstation
3401S: Maintained
3402F: arch/mips/dec/
3403F: arch/mips/include/asm/dec/
3404F: arch/mips/include/asm/mach-dec/
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003407M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07003409F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003411DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003412M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003413M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003414L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003416F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08003417
Pali Rohár817a5cd2015-06-06 10:23:28 +02003418DELL LAPTOP RBTN DRIVER
3419M: Pali Rohár <pali.rohar@gmail.com>
3420S: Maintained
3421F: drivers/platform/x86/dell-rbtn.*
3422
Pali Rohárcdbff612015-03-29 15:38:50 +02003423DELL LAPTOP FREEFALL DRIVER
3424M: Pali Rohár <pali.rohar@gmail.com>
3425S: Maintained
3426F: drivers/platform/x86/dell-smo8800.c
3427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428DELL LAPTOP SMM DRIVER
Pali Rohára5afba12015-05-14 13:16:36 +02003429M: Pali Rohár <pali.rohar@gmail.com>
Guenter Roeckef3522f2014-12-21 20:54:37 +01003430S: Maintained
Pali Rohára5afba12015-05-14 13:16:36 +02003431F: drivers/hwmon/dell-smm-hwmon.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003432F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Doug Warzecha90563ec2005-09-06 15:17:15 -07003434DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07003435M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07003436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003437F: Documentation/dcdbas.txt
3438F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07003439
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003440DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003441M: Matthew Garrett <mjg59@srcf.ucam.org>
Pali Rohárcdbff612015-03-29 15:38:50 +02003442M: Pali Rohár <pali.rohar@gmail.com>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003443S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07003444F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00003445
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003446DESIGNWARE USB2 DRD IP DRIVER
Paul Zimmerman16272ae2015-01-15 20:14:10 +00003447M: John Youn <johnyoun@synopsys.com>
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003448L: linux-usb@vger.kernel.org
Paul Zimmerman18f340f2014-09-19 14:49:36 -07003449T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003450S: Maintained
Paul Zimmerman197ba5f2014-01-13 13:50:09 -08003451F: drivers/usb/dwc2/
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07003452
Felipe Balbi94ab23d2011-08-19 18:10:59 +03003453DESIGNWARE USB3 DRD IP DRIVER
3454M: Felipe Balbi <balbi@ti.com>
3455L: linux-usb@vger.kernel.org
3456L: linux-omap@vger.kernel.org
3457T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3458S: Maintained
3459F: drivers/usb/dwc3/
3460
Johannes Berg833c9542014-09-12 09:01:56 +02003461DEVICE COREDUMP (DEV_COREDUMP)
3462M: Johannes Berg <johannes@sipsolutions.net>
3463L: linux-kernel@vger.kernel.org
3464S: Maintained
3465F: drivers/base/devcoredump.c
3466F: include/linux/devcoredump.h
3467
Kyungmin Park89d07762012-01-10 15:09:09 -08003468DEVICE FREQUENCY (DEVFREQ)
3469M: MyungJoo Ham <myungjoo.ham@samsung.com>
3470M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09003471L: linux-pm@vger.kernel.org
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003472T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
Kyungmin Park89d07762012-01-10 15:09:09 -08003473S: Maintained
3474F: drivers/devfreq/
Chanwoo Choi6a3cd722015-11-05 13:30:17 +09003475F: include/linux/devfreq.h
3476F: Documentation/devicetree/bindings/devfreq/
Kyungmin Park89d07762012-01-10 15:09:09 -08003477
Chanwoo Choi7dbded02015-11-05 13:30:18 +09003478DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3479M: Chanwoo Choi <cw00.choi@samsung.com>
3480L: linux-pm@vger.kernel.org
3481T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3482S: Supported
3483F: drivers/devfreq/event/
3484F: drivers/devfreq/devfreq-event.c
3485F: include/linux/devfreq-event.h
3486F: Documentation/devicetree/bindings/devfreq/event/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003487
3488DEVICE NUMBER REGISTRY
Joe Perches8a6e2532010-03-05 13:43:11 -08003489M: Torben Mathiasen <device@lanana.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003490W: http://lanana.org/docs/device-list/index.html
Joe Perches679655d2009-04-07 20:44:32 -07003491S: Maintained
3492
3493DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003494M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003495M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003496M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003497L: dm-devel@redhat.com
3498W: http://sources.redhat.com/dm
3499Q: http://patchwork.kernel.org/project/dm-devel/list/
Mike Snitzer41d35d22013-11-04 19:42:38 -05003500T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003501T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003503F: Documentation/device-mapper/
3504F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01003505F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07003506F: include/linux/device-mapper.h
3507F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01003508F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003509
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003510DIALOG SEMICONDUCTOR DRIVERS
3511M: Support Opensource <support.opensource@diasemi.com>
3512W: http://www.dialog-semiconductor.com/products
3513S: Supported
3514F: Documentation/hwmon/da90??
Adam Thomson7c933772015-09-29 16:44:12 +01003515F: Documentation/devicetree/bindings/sound/da[79]*.txt
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003516F: drivers/gpio/gpio-da90??.c
3517F: drivers/hwmon/da90??-hwmon.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003518F: drivers/iio/adc/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003519F: drivers/input/misc/da90??_onkey.c
3520F: drivers/input/touchscreen/da9052_tsi.c
3521F: drivers/leds/leds-da90??.c
3522F: drivers/mfd/da903x.c
3523F: drivers/mfd/da90??-*.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003524F: drivers/mfd/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003525F: drivers/power/da9052-battery.c
Adam Thomson7be72c22015-02-18 14:08:37 +00003526F: drivers/power/da91??-*.c
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003527F: drivers/regulator/da903x.c
3528F: drivers/regulator/da9???-regulator.[ch]
3529F: drivers/rtc/rtc-da90??.c
3530F: drivers/video/backlight/da90??_bl.c
3531F: drivers/watchdog/da90??_wdt.c
3532F: include/linux/mfd/da903x.h
3533F: include/linux/mfd/da9052/
3534F: include/linux/mfd/da9055/
3535F: include/linux/mfd/da9063/
Adam Thomson7be72c22015-02-18 14:08:37 +00003536F: include/linux/mfd/da9150/
Opensource [Steve Twiss]c0d995a2014-04-03 14:48:51 -07003537F: include/sound/da[79]*.h
3538F: sound/soc/codecs/da[79]*.[ch]
3539
Lidza Louina599aa692013-09-23 16:13:15 -04003540DIGI NEO AND CLASSIC PCI PRODUCTS
3541M: Lidza Louina <lidza.louina@gmail.com>
Mark Hounschell542f3d52014-04-25 14:32:15 -04003542M: Mark Hounschell <markh@compro.net>
Lidza Louina599aa692013-09-23 16:13:15 -04003543L: driverdev-devel@linuxdriverproject.org
3544S: Maintained
3545F: drivers/staging/dgnc/
3546
3547DIGI EPCA PCI PRODUCTS
3548M: Lidza Louina <lidza.louina@gmail.com>
Daeseok Youn6d825f72014-07-12 01:25:42 +09003549M: Daeseok Youn <daeseok.youn@gmail.com>
Lidza Louina599aa692013-09-23 16:13:15 -04003550L: driverdev-devel@linuxdriverproject.org
3551S: Maintained
3552F: drivers/staging/dgap/
3553
Guenter Roeck335d7c52011-01-26 11:45:49 -08003554DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07003555M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08003556L: linux-i2c@vger.kernel.org
3557S: Maintained
3558F: drivers/i2c/busses/i2c-diolan-u2c.c
3559
Matthew Wilcoxd475c632015-02-16 15:58:56 -08003560DIRECT ACCESS (DAX)
3561M: Matthew Wilcox <willy@linux.intel.com>
3562L: linux-fsdevel@vger.kernel.org
3563S: Supported
3564F: fs/dax.c
3565
Randy Dunlape7839f22008-10-12 16:11:45 -07003566DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07003567M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04003568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003569F: Documentation/filesystems/dnotify.txt
3570F: fs/notify/dnotify/
3571F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07003574M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3576W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3577W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3578S: Maintained
3579
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003580DISKQUOTA
Jiri Slabyd8130622015-07-17 16:23:20 -07003581M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003583F: Documentation/filesystems/quota.txt
3584F: fs/quota/
3585F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003586F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
Bernie Thompson702686a2012-03-01 13:52:13 -08003588DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3589M: Bernie Thompson <bernie@plugable.com>
3590L: linux-fbdev@vger.kernel.org
3591S: Maintained
3592W: http://plugable.com/category/projects/udlfb/
Jingoo Han8a61f012014-07-01 15:36:01 +09003593F: drivers/video/fbdev/udlfb.c
Bernie Thompson702686a2012-03-01 13:52:13 -08003594F: include/video/udlfb.h
3595F: Documentation/fb/udlfb.txt
3596
Randy Dunlape7839f22008-10-12 16:11:45 -07003597DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07003598M: Christine Caulfield <ccaulfie@redhat.com>
3599M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003600L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003601W: http://sources.redhat.com/cluster/
Fengguang Wu9f273c22016-01-20 15:03:25 -08003602T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003604F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003605
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303606DMA BUFFER SHARING FRAMEWORK
3607M: Sumit Semwal <sumit.semwal@linaro.org>
3608S: Maintained
3609L: linux-media@vger.kernel.org
3610L: dri-devel@lists.freedesktop.org
Randy Dunlap8ada6d22014-10-13 15:51:19 -07003611L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
Maarten Lankhorst35fac7e2014-07-01 12:57:08 +02003612F: drivers/dma-buf/
Joe Perchese46d12c2014-08-08 14:26:16 -07003613F: include/linux/dma-buf*
3614F: include/linux/reservation.h
3615F: include/linux/*fence.h
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05303616F: Documentation/dma-buf-sharing.txt
3617T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3618
Dan Williamsb3e5f262007-08-07 10:26:35 -07003619DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08003620M: Vinod Koul <vinod.koul@intel.com>
Vinod Koul17b59562013-10-22 12:58:56 +05303621L: dmaengine@vger.kernel.org
3622Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
Dan Williams08223d82014-08-19 06:07:56 -07003623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003624F: drivers/dma/
Vinod Koul0ce3c062014-12-22 20:57:13 +05303625F: include/linux/dmaengine.h
Vinod Koul979a281e2014-11-06 11:21:17 +05303626F: Documentation/dmaengine/
3627T: git git://git.infradead.org/users/vkoul/slave-dma.git
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003628
Juerg Haefligerb8250372007-06-09 10:11:16 -04003629DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04003631L: lm-sensors@lm-sensors.org
3632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003633F: Documentation/hwmon/dme1737
3634F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04003635
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003636DMI/SMBIOS SUPPORT
Jiri Slabyd8130622015-07-17 16:23:20 -07003637M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003638S: Maintained
Jean Delvared4aeef932015-06-25 09:06:56 +02003639T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
Ivan Khoronzhukd7f96f972015-06-25 09:06:56 +02003640F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
Jean Delvare1f31e1b2015-03-25 15:55:31 -07003641F: drivers/firmware/dmi-id.c
3642F: drivers/firmware/dmi_scan.c
3643F: include/linux/dmi.h
3644
Joe Perches7d2c86b2009-04-07 20:59:01 -07003645DOCUMENTATION
Jonathan Corbetad3118b2014-10-17 08:59:26 -04003646M: Jonathan Corbet <corbet@lwn.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003647L: linux-doc@vger.kernel.org
3648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003649F: Documentation/
Jonathan Corbet42f41ec2015-09-11 13:23:36 -06003650F: scripts/docproc.c
3651F: scripts/kernel-doc*
Randy Dunlap97be0782014-06-27 18:28:56 -07003652X: Documentation/ABI/
3653X: Documentation/devicetree/
Jonathan Corbet933a46b2015-03-26 10:25:17 -06003654X: Documentation/acpi
3655X: Documentation/power
3656X: Documentation/spi
Jonathan Corbet6c121172015-07-24 15:08:14 +02003657X: Documentation/DocBook/media
Jonathan Corbetc51edfb2015-09-24 16:05:28 -06003658T: git git://git.lwn.net/linux.git docs-next
Randy Dunlapabbaeff2008-07-04 09:59:57 -07003659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003661M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662L: blinux-list@redhat.com
3663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003664F: drivers/char/dtlk.c
3665F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003667DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003669L: linux-scsi@vger.kernel.org
3670W: http://www.adaptec.com/
3671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003672F: drivers/scsi/dpt*
3673F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003674
Philipp Reisnerb411b362009-09-25 16:07:19 -07003675DRBD DRIVER
Roland Kammererbc2c0492015-07-07 16:37:10 +02003676M: Philipp Reisner <philipp.reisner@linbit.com>
3677M: Lars Ellenberg <lars.ellenberg@linbit.com>
3678L: drbd-dev@lists.linbit.com
Joe Perches28b8e8d2010-03-23 13:35:20 -07003679W: http://www.drbd.org
Roland Kammererbc2c0492015-07-07 16:37:10 +02003680T: git git://git.linbit.com/linux-drbd.git
3681T: git git://git.linbit.com/drbd-8.4.git
Joe Perches28b8e8d2010-03-23 13:35:20 -07003682S: Supported
3683F: drivers/block/drbd/
3684F: lib/lru_cache.c
3685F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07003686
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003687DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08003688M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07003689T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003691F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07003692F: drivers/base/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003693F: fs/debugfs/
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003694F: fs/kernfs/
3695F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07003696F: include/linux/debugfs.h
Wolfram Sangdc7dfcd2015-04-23 17:20:54 +02003697F: include/linux/kobj*
Joe Perches679655d2009-04-07 20:44:32 -07003698F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
3700DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003701M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04003702L: dri-devel@lists.freedesktop.org
Alex Deucherb0447882014-02-18 10:03:44 -05003703T: git git://people.freedesktop.org/~airlied/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: drivers/gpu/drm/
Daniel Vetter433e3b32014-05-26 23:44:42 +02003706F: drivers/gpu/vga/
Joe Perches850e9412010-08-09 17:20:45 -07003707F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003708F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
Alex Deucher566f5932014-02-18 10:03:43 -05003710RADEON DRM DRIVERS
3711M: Alex Deucher <alexander.deucher@amd.com>
3712M: Christian König <christian.koenig@amd.com>
3713L: dri-devel@lists.freedesktop.org
3714T: git git://people.freedesktop.org/~agd5f/linux
3715S: Supported
3716F: drivers/gpu/drm/radeon/
Alex Deucher566f5932014-02-18 10:03:43 -05003717F: include/uapi/drm/radeon*
3718
Thierry Reding03e255b2014-04-04 08:59:18 +02003719DRM PANEL DRIVERS
3720M: Thierry Reding <thierry.reding@gmail.com>
3721L: dri-devel@lists.freedesktop.org
3722T: git git://anongit.freedesktop.org/tegra/linux.git
3723S: Maintained
3724F: drivers/gpu/drm/drm_panel.c
3725F: drivers/gpu/drm/panel/
3726F: include/drm/drm_panel.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003727F: Documentation/devicetree/bindings/display/panel/
Thierry Reding03e255b2014-04-04 08:59:18 +02003728
Chris Wilson8daf7472010-09-28 14:07:26 +01003729INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vettercbce7102014-08-28 12:17:42 +02003730M: Daniel Vetter <daniel.vetter@intel.com>
Daniel Vetter47f95642014-01-07 09:24:31 +01003731M: Jani Nikula <jani.nikula@linux.intel.com>
Daniel Vetter362132d2013-03-13 22:28:46 +01003732L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01003733L: dri-devel@lists.freedesktop.org
Jani Nikula7564fde2015-10-13 11:16:48 +03003734W: https://01.org/linuxgraphics/
Daniel Vetter47f95642014-01-07 09:24:31 +01003735Q: http://patchwork.freedesktop.org/project/intel-gfx/
Daniel Vetter89258a92014-02-04 19:57:38 +01003736T: git git://anongit.freedesktop.org/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01003737S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003738F: drivers/gpu/drm/i915/
Chris Wilson8daf7472010-09-28 14:07:26 +01003739F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003740F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01003741
Boris BREZILLON99763bb2015-10-13 11:55:42 +02003742DRM DRIVERS FOR ATMEL HLCDC
3743M: Boris Brezillon <boris.brezillon@free-electrons.com>
3744L: dri-devel@lists.freedesktop.org
3745S: Supported
3746F: drivers/gpu/drm/atmel-hlcdc/
3747F: Documentation/devicetree/bindings/drm/atmel/
3748
Kyungmin Park398a6d42011-11-02 11:33:16 +09003749DRM DRIVERS FOR EXYNOS
3750M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09003751M: Joonyoung Shim <jy0922.shim@samsung.com>
3752M: Seung-Woo Kim <sw0312.kim@samsung.com>
3753M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09003754L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09003755T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09003756S: Supported
Joe Perches14430812013-09-11 14:23:50 -07003757F: drivers/gpu/drm/exynos/
Kyungmin Park398a6d42011-11-02 11:33:16 +09003758F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003759F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09003760
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003761DRM DRIVERS FOR FREESCALE DCU
3762M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3763M: Alison Wang <alison.wang@freescale.com>
3764L: dri-devel@lists.freedesktop.org
3765S: Supported
3766F: drivers/gpu/drm/fsl-dcu/
Rob Herring2d799dd2015-11-05 13:40:40 -06003767F: Documentation/devicetree/bindings/display/fsl,dcu.txt
3768F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
Jianwei Wangb55a1b92015-08-19 22:26:33 -04003769
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003770DRM DRIVERS FOR FREESCALE IMX
3771M: Philipp Zabel <p.zabel@pengutronix.de>
3772L: dri-devel@lists.freedesktop.org
3773S: Maintained
3774F: drivers/gpu/drm/imx/
Philipp Zabelef739aa2015-06-19 16:22:38 +02003775F: drivers/gpu/ipu-v3/
Rob Herring2d799dd2015-11-05 13:40:40 -06003776F: Documentation/devicetree/bindings/display/imx/
Philipp Zabel0a3d7752014-11-24 16:33:35 +01003777
Patrik Jakobssonba2199a2015-10-12 23:14:44 +02003778DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3779M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3780L: dri-devel@lists.freedesktop.org
3781T: git git://github.com/patjak/drm-gma500
3782S: Maintained
3783F: drivers/gpu/drm/gma500
3784F: include/drm/gma500*
3785
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003786DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003787M: Thierry Reding <thierry.reding@gmail.com>
3788M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003789L: dri-devel@lists.freedesktop.org
3790L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003791T: git git://anongit.freedesktop.org/tegra/linux.git
Stephen Warrenadabdb02013-09-13 13:00:57 -06003792S: Supported
Thierry Redingdee82682013-10-09 10:32:49 +02003793F: drivers/gpu/drm/tegra/
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003794F: drivers/gpu/host1x/
Thierry Redinge1e90642013-09-24 13:59:01 +02003795F: include/linux/host1x.h
Thierry Redinga5ad7a62013-05-19 14:19:21 +02003796F: include/uapi/drm/tegra_drm.h
Rob Herring2d799dd2015-11-05 13:40:40 -06003797F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
Thierry Redingbd3b49f2012-11-28 20:45:28 +01003798
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003799DRM DRIVERS FOR RENESAS
3800M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3801L: dri-devel@lists.freedesktop.org
Simon Horman4a121092016-01-18 10:04:33 +09003802L: linux-renesas-soc@vger.kernel.org
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003803T: git git://people.freedesktop.org/~airlied/linux
3804S: Supported
3805F: drivers/gpu/drm/rcar-du/
3806F: drivers/gpu/drm/shmobile/
Laurent Pincharta284e9d2014-08-19 23:04:31 +02003807F: include/linux/platform_data/shmob_drm.h
3808
Heiko Stuebner625e0342015-04-20 00:59:50 +02003809DRM DRIVERS FOR ROCKCHIP
3810M: Mark Yao <mark.yao@rock-chips.com>
3811L: dri-devel@lists.freedesktop.org
3812S: Maintained
3813F: drivers/gpu/drm/rockchip/
Rob Herring2d799dd2015-11-05 13:40:40 -06003814F: Documentation/devicetree/bindings/display/rockchip*
Heiko Stuebner625e0342015-04-20 00:59:50 +02003815
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003816DRM DRIVERS FOR STI
3817M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3818M: Vincent Abriou <vincent.abriou@st.com>
3819L: dri-devel@lists.freedesktop.org
3820T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3821S: Maintained
3822F: drivers/gpu/drm/sti
Rob Herring2d799dd2015-11-05 13:40:40 -06003823F: Documentation/devicetree/bindings/display/st,stih4xx.txt
Benjamin Gaignard7f11c472015-08-14 15:35:24 -07003824
Lucas Stach8bb0bce2015-12-03 17:12:07 +01003825DRM DRIVERS FOR VIVANTE GPU IP
3826M: Lucas Stach <l.stach@pengutronix.de>
3827R: Russell King <linux+etnaviv@arm.linux.org.uk>
3828R: Christian Gmeiner <christian.gmeiner@gmail.com>
3829L: dri-devel@lists.freedesktop.org
3830S: Maintained
3831F: drivers/gpu/drm/etnaviv
3832F: Documentation/devicetree/bindings/display/etnaviv
3833
Alexey Klimov598df1a2012-11-28 17:16:32 -03003834DSBR100 USB FM RADIO DRIVER
3835M: Alexey Klimov <klimov.linux@gmail.com>
3836L: linux-media@vger.kernel.org
3837T: git git://linuxtv.org/media_tree.git
3838S: Maintained
3839F: drivers/media/radio/dsbr100.c
3840
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003842M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08003843L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003845F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
Hans Verkuilcc11b142015-04-25 12:36:18 -03003847DT3155 MEDIA DRIVER
3848M: Hans Verkuil <hverkuil@xs4all.nl>
3849L: linux-media@vger.kernel.org
3850T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003851W: https://linuxtv.org
Hans Verkuilcc11b142015-04-25 12:36:18 -03003852S: Odd Fixes
3853F: drivers/media/pci/dt3155/
3854
Antti Palosaari91952bc2012-10-01 12:28:46 -03003855DVB_USB_AF9015 MEDIA DRIVER
3856M: Antti Palosaari <crope@iki.fi>
3857L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003858W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003859W: http://palosaari.fi/linux/
3860Q: http://patchwork.linuxtv.org/project/linux-media/list/
3861T: git git://linuxtv.org/anttip/media_tree.git
3862S: Maintained
3863F: drivers/media/usb/dvb-usb-v2/af9015*
3864
3865DVB_USB_AF9035 MEDIA DRIVER
3866M: Antti Palosaari <crope@iki.fi>
3867L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003868W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003869W: http://palosaari.fi/linux/
3870Q: http://patchwork.linuxtv.org/project/linux-media/list/
3871T: git git://linuxtv.org/anttip/media_tree.git
3872S: Maintained
3873F: drivers/media/usb/dvb-usb-v2/af9035*
3874
3875DVB_USB_ANYSEE MEDIA DRIVER
3876M: Antti Palosaari <crope@iki.fi>
3877L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003878W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003879W: http://palosaari.fi/linux/
3880Q: http://patchwork.linuxtv.org/project/linux-media/list/
3881T: git git://linuxtv.org/anttip/media_tree.git
3882S: Maintained
3883F: drivers/media/usb/dvb-usb-v2/anysee*
3884
3885DVB_USB_AU6610 MEDIA DRIVER
3886M: Antti Palosaari <crope@iki.fi>
3887L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003888W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003889W: http://palosaari.fi/linux/
3890Q: http://patchwork.linuxtv.org/project/linux-media/list/
3891T: git git://linuxtv.org/anttip/media_tree.git
3892S: Maintained
3893F: drivers/media/usb/dvb-usb-v2/au6610*
3894
3895DVB_USB_CE6230 MEDIA DRIVER
3896M: Antti Palosaari <crope@iki.fi>
3897L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003898W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003899W: http://palosaari.fi/linux/
3900Q: http://patchwork.linuxtv.org/project/linux-media/list/
3901T: git git://linuxtv.org/anttip/media_tree.git
3902S: Maintained
3903F: drivers/media/usb/dvb-usb-v2/ce6230*
3904
Michael Krufkyd099dea2012-10-02 00:56:20 -03003905DVB_USB_CXUSB MEDIA DRIVER
3906M: Michael Krufky <mkrufky@linuxtv.org>
3907L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003908W: https://linuxtv.org
Michael Krufkyd099dea2012-10-02 00:56:20 -03003909W: http://github.com/mkrufky
3910Q: http://patchwork.linuxtv.org/project/linux-media/list/
3911T: git git://linuxtv.org/media_tree.git
3912S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08003913F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03003914
Antti Palosaari91952bc2012-10-01 12:28:46 -03003915DVB_USB_EC168 MEDIA DRIVER
3916M: Antti Palosaari <crope@iki.fi>
3917L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003918W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003919W: http://palosaari.fi/linux/
3920Q: http://patchwork.linuxtv.org/project/linux-media/list/
3921T: git git://linuxtv.org/anttip/media_tree.git
3922S: Maintained
3923F: drivers/media/usb/dvb-usb-v2/ec168*
3924
Antti Palosaari55609832013-04-09 20:30:42 -03003925DVB_USB_GL861 MEDIA DRIVER
3926M: Antti Palosaari <crope@iki.fi>
3927L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003928W: https://linuxtv.org
Antti Palosaari55609832013-04-09 20:30:42 -03003929Q: http://patchwork.linuxtv.org/project/linux-media/list/
3930T: git git://linuxtv.org/anttip/media_tree.git
3931S: Maintained
3932F: drivers/media/usb/dvb-usb-v2/gl861*
3933
Michael Krufky8856f5f2012-10-02 00:55:50 -03003934DVB_USB_MXL111SF MEDIA DRIVER
3935M: Michael Krufky <mkrufky@linuxtv.org>
3936L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003937W: https://linuxtv.org
Michael Krufky8856f5f2012-10-02 00:55:50 -03003938W: http://github.com/mkrufky
3939Q: http://patchwork.linuxtv.org/project/linux-media/list/
3940T: git git://linuxtv.org/mkrufky/mxl111sf.git
3941S: Maintained
3942F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3943
Antti Palosaari91952bc2012-10-01 12:28:46 -03003944DVB_USB_RTL28XXU MEDIA DRIVER
3945M: Antti Palosaari <crope@iki.fi>
3946L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003947W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003948W: http://palosaari.fi/linux/
3949Q: http://patchwork.linuxtv.org/project/linux-media/list/
3950T: git git://linuxtv.org/anttip/media_tree.git
3951S: Maintained
3952F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3953
3954DVB_USB_V2 MEDIA DRIVER
3955M: Antti Palosaari <crope@iki.fi>
3956L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003957W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003958W: http://palosaari.fi/linux/
3959Q: http://patchwork.linuxtv.org/project/linux-media/list/
3960T: git git://linuxtv.org/anttip/media_tree.git
3961S: Maintained
3962F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3963F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3964
Jason Baronac0ac382011-08-11 14:36:43 -04003965DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07003966M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04003967S: Maintained
3968F: lib/dynamic_debug.c
3969F: include/linux/dynamic_debug.h
3970
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003971DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003972M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003973S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003974F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08003975
Moritz Fischerf17effb2015-01-10 14:10:59 -08003976E3X0 POWER BUTTON DRIVER
3977M: Moritz Fischer <moritz.fischer@ettus.com>
3978L: usrp-users@lists.ettus.com
3979W: http://www.ettus.com
3980S: Supported
3981F: drivers/input/misc/e3x0-button.c
3982F: Documentation/devicetree/bindings/input/e3x0-button.txt
3983
Antti Palosaari91952bc2012-10-01 12:28:46 -03003984E4000 MEDIA DRIVER
3985M: Antti Palosaari <crope@iki.fi>
3986L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02003987W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03003988W: http://palosaari.fi/linux/
3989Q: http://patchwork.linuxtv.org/project/linux-media/list/
3990T: git git://linuxtv.org/anttip/media_tree.git
3991S: Maintained
3992F: drivers/media/tuners/e4000*
3993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996L: linux-scsi@vger.kernel.org
3997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003998F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
Antti Palosaari91952bc2012-10-01 12:28:46 -03004000EC100 MEDIA DRIVER
4001M: Antti Palosaari <crope@iki.fi>
4002L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004003W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004004W: http://palosaari.fi/linux/
4005Q: http://patchwork.linuxtv.org/project/linux-media/list/
4006T: git git://linuxtv.org/anttip/media_tree.git
4007S: Maintained
4008F: drivers/media/dvb-frontends/ec100*
4009
Michael Halcrow237fead2006-10-04 02:16:22 -07004010ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04004011M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05004012L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05004013W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08004014W: https://launchpad.net/ecryptfs
Fengguang Wu9f273c22016-01-20 15:03:25 -08004015T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
Michael Halcrow237fead2006-10-04 02:16:22 -07004016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004017F: Documentation/filesystems/ecryptfs.txt
4018F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07004019
Alan Coxda9bb1d2006-01-18 17:44:13 -08004020EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07004021M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkovaa15aa02014-03-03 15:38:17 -08004022M: Borislav Petkov <bp@alien8.de>
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004023M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004024L: linux-edac@vger.kernel.org
Fengguang Wu07cd6bf2015-12-18 15:51:36 +08004025T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4026T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
Doug Thompson8c2a6a42006-06-30 01:56:09 -07004027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004028F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04004029F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07004030F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08004031
Borislav Petkovc476c232009-05-20 20:31:58 +02004032EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07004033M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004034M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04004035L: linux-edac@vger.kernel.org
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004036S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02004037F: drivers/edac/amd64_edac*
4038
Robert Richter836dae52013-10-18 09:24:52 +02004039EDAC-CALXEDA
4040M: Doug Thompson <dougthompson@xmission.com>
4041M: Robert Richter <rric@kernel.org>
4042L: linux-edac@vger.kernel.org
Robert Richter836dae52013-10-18 09:24:52 +02004043S: Maintained
4044F: drivers/edac/highbank*
4045
Ralf Baechlef65aad42012-10-17 00:39:09 +02004046EDAC-CAVIUM
4047M: Ralf Baechle <ralf@linux-mips.org>
4048M: David Daney <david.daney@cavium.com>
4049L: linux-edac@vger.kernel.org
4050L: linux-mips@linux-mips.org
Ralf Baechlef65aad42012-10-17 00:39:09 +02004051S: Supported
4052F: drivers/edac/octeon_edac*
4053
Dave Peterson0e438e32006-03-26 01:38:55 -08004054EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07004055M: Mark Gross <mark.gross@intel.com>
4056M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004057L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004060
4061EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07004062M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004063L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004065F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08004066
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004067EDAC-GHES
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004068M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004069L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004070S: Maintained
Joe Perches2caa67a2013-09-11 14:23:40 -07004071F: drivers/edac/ghes_edac.c
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03004072
Douglas Thompson6bc78402007-07-19 01:50:12 -07004073EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07004074M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004075L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004077F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004078
4079EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07004080M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004081L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004083F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004084
4085EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07004086M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004087L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004089F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004090
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004091EDAC-I5400
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004092M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004093L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004095F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08004096
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004097EDAC-I7300
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004098M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004099L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03004100S: Maintained
4101F: drivers/edac/i7300_edac.c
4102
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004103EDAC-I7CORE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004104M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004105L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004106S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03004107F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03004108
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004109EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07004110M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05304111M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004112L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004114F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004115
Jason Baron791b4702014-07-09 21:13:11 +00004116EDAC-IE31200
4117M: Jason Baron <jbaron@akamai.com>
4118L: linux-edac@vger.kernel.org
Jason Baron791b4702014-07-09 21:13:11 +00004119S: Maintained
4120F: drivers/edac/ie31200_edac.c
4121
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004122EDAC-MPC85XX
Johannes Thumshirn30c74692015-05-07 10:21:24 +02004123M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004124L: linux-edac@vger.kernel.org
Johannes Thumshirnccdfb972013-11-17 19:25:12 +01004125S: Maintained
4126F: drivers/edac/mpc85xx_edac.[ch]
4127
Douglas Thompsonba9a5912007-07-19 01:50:32 -07004128EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004130L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07004131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004132F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07004133
Dave Peterson0e438e32006-03-26 01:38:55 -08004134EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07004135M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04004136L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08004137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004138F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08004139
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004140EDAC-SBRIDGE
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004141M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004142L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02004143S: Maintained
4144F: drivers/edac/sb_edac.c
4145
Loc Ho995e1de2015-05-22 17:32:57 -06004146EDAC-XGENE
4147APPLIED MICRO (APM) X-GENE SOC EDAC
4148M: Loc Ho <lho@apm.com>
4149S: Supported
4150F: drivers/edac/xgene_edac.c
4151F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4152
Clemens Ladischaf399172011-01-10 16:32:54 +01004153EDIROL UA-101/UA-1000 DRIVER
4154M: Clemens Ladisch <clemens@ladisch.de>
4155L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4156T: git git://git.alsa-project.org/alsa-kernel.git
4157S: Maintained
4158F: sound/usb/misc/ua101.c
4159
Matt Fleming1f7df952012-10-03 10:04:02 +01004160EXTENSIBLE FIRMWARE INTERFACE (EFI)
Matt Fleming825fcfc2015-10-10 17:22:16 +01004161M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Fleming1f7df952012-10-03 10:04:02 +01004162L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01004163T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01004164S: Maintained
Joe Perchesfb2efb52014-08-08 14:25:01 -07004165F: Documentation/efi-stub.txt
Matt Fleming1f7df952012-10-03 10:04:02 +01004166F: arch/ia64/kernel/efi.c
4167F: arch/x86/boot/compressed/eboot.[ch]
4168F: arch/x86/include/asm/efi.h
4169F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00004170F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01004171F: include/linux/efi*.h
4172
Matt Flemingd68772b2013-02-08 16:27:24 +00004173EFI VARIABLE FILESYSTEM
4174M: Matthew Garrett <matthew.garrett@nebula.com>
4175M: Jeremy Kerr <jk@ozlabs.org>
Matt Fleming825fcfc2015-10-10 17:22:16 +01004176M: Matt Fleming <matt@codeblueprint.co.uk>
Matt Flemingd68772b2013-02-08 16:27:24 +00004177T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4178L: linux-efi@vger.kernel.org
4179S: Maintained
4180F: fs/efivarfs/
4181
Peter Jones85a00d92010-09-22 13:05:04 -07004182EFIFB FRAMEBUFFER DRIVER
4183L: linux-fbdev@vger.kernel.org
4184M: Peter Jones <pjones@redhat.com>
4185S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004186F: drivers/video/fbdev/efifb.c
Peter Jones85a00d92010-09-22 13:05:04 -07004187
Josh Triplett0bee8d22006-07-30 03:03:58 -07004188EFS FILESYSTEM
4189W: http://aeschi.ch.eu.org/efs/
4190S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004191F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07004192
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004193EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004194M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4195M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004196L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07004197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004198F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07004199
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004200EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00004201M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004202L: netdev@vger.kernel.org
4203S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004204F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07004205
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004206EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02004207M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004208L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004209W: https://linuxtv.org
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02004210T: git git://linuxtv.org/media_tree.git
4211S: Maintained
4212F: drivers/media/usb/em28xx/
4213
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004214EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07004215M: Paul Gortmaker <paul.gortmaker@windriver.com>
4216M: Matt Mackall <mpm@selenic.com>
4217M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07004218L: linux-embedded@vger.kernel.org
4219S: Maintained
4220
James Smart32505872015-05-15 13:10:58 -04004221EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4222M: James Smart <james.smart@avagotech.com>
4223M: Dick Kennedy <dick.kennedy@avagotech.com>
Jim Cromiece00f852006-11-30 04:49:44 +01004224L: linux-scsi@vger.kernel.org
James Smart32505872015-05-15 13:10:58 -04004225W: http://www.avagotech.com
Jim Cromiece00f852006-11-30 04:49:44 +01004226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004227F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04004228
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004229ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004230M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02004231S: Maintained
4232F: drivers/misc/cb710/
4233F: drivers/mmc/host/cb710-mmc.*
4234F: include/linux/cb710.h
4235
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004236ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4237M: Maxim Levitsky <maximlevitsky@gmail.com>
4238S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07004239F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03004240
Gavin Shanec207dc2013-06-28 21:12:14 +08004241ENHANCED ERROR HANDLING (EEH)
4242M: Gavin Shan <shangw@linux.vnet.ibm.com>
4243L: linuxppc-dev@lists.ozlabs.org
4244S: Supported
4245F: Documentation/powerpc/eeh-pci-error-recovery.txt
4246F: arch/powerpc/kernel/eeh*.c
4247
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004248EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004249M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004250S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07004251T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Jingoo Han8a61f012014-07-01 15:36:01 +09004252F: drivers/video/fbdev/s1d13xxxfb.c
Joe Perches679655d2009-04-07 20:44:32 -07004253F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07004254
Mark Einon38df6492014-09-30 22:29:46 +01004255ET131X NETWORK DRIVER
4256M: Mark Einon <mark.einon@gmail.com>
4257S: Odd Fixes
4258F: drivers/net/ethernet/agere/
4259
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004261M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07004262L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08004263L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00004264W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004266F: include/linux/netfilter_bridge/
4267F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
Florian Fainelli22f08ad2014-02-18 09:47:49 -08004269ETHERNET PHY LIBRARY
4270M: Florian Fainelli <f.fainelli@gmail.com>
4271L: netdev@vger.kernel.org
4272S: Maintained
4273F: include/linux/phy.h
4274F: include/linux/phy_fixed.h
4275F: drivers/net/phy/
4276F: Documentation/networking/phy.txt
4277F: drivers/of/of_mdio.c
4278F: drivers/of/of_net.c
4279
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280EXT2 FILE SYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -07004281M: Jan Kara <jack@suse.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004282L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004284F: Documentation/filesystems/ext2.txt
4285F: fs/ext2/
4286F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287
Erik Mouw72be2cc2006-12-06 20:40:49 -08004288EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02004290M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004291L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04004292W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004293Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08004294T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004296F: Documentation/filesystems/ext4.txt
4297F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298
Mimi Zoharc5532b02011-08-17 18:52:24 -04004299Extended Verification Module (EVM)
Mimi Zohar74dd7442014-02-27 08:44:45 -05004300M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4301L: linux-ima-devel@lists.sourceforge.net
4302L: linux-security-module@vger.kernel.org
Mimi Zoharc5532b02011-08-17 18:52:24 -04004303S: Supported
4304F: security/integrity/evm/
4305
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004306EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4307M: MyungJoo Ham <myungjoo.ham@samsung.com>
4308M: Chanwoo Choi <cw00.choi@samsung.com>
4309L: linux-kernel@vger.kernel.org
Chanwoo Choi81df63a2013-09-28 15:04:37 +09004310T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004311S: Maintained
4312F: drivers/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004313F: include/linux/extcon/
4314F: include/linux/extcon.h
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004315F: Documentation/extcon/
Chanwoo Choicd2c3e72015-11-06 16:30:55 -08004316F: Documentation/devicetree/bindings/extcon/
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09004317
Jingoo Hane2a75c42014-04-10 20:24:03 +09004318EXYNOS DP DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07004319M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Hane2a75c42014-04-10 20:24:03 +09004320L: dri-devel@lists.freedesktop.org
4321S: Maintained
4322F: drivers/gpu/drm/exynos/exynos_dp*
4323
Donghwa Lee33ad3912012-03-06 11:44:58 +09004324EXYNOS MIPI DISPLAY DRIVERS
4325M: Inki Dae <inki.dae@samsung.com>
4326M: Donghwa Lee <dh09.lee@samsung.com>
4327M: Kyungmin Park <kyungmin.park@samsung.com>
4328L: linux-fbdev@vger.kernel.org
4329S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004330F: drivers/video/fbdev/exynos/exynos_mipi*
Donghwa Lee33ad3912012-03-06 11:44:58 +09004331F: include/video/exynos_mipi*
4332
Jean Delvaree53004e2006-01-09 23:26:14 +01004333F71805F HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07004334M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree53004e2006-01-09 23:26:14 +01004335L: lm-sensors@lm-sensors.org
4336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004337F: Documentation/hwmon/f71805f
4338F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01004339
Michael Büscheea977e2012-04-02 12:14:32 -03004340FC0011 TUNER DRIVER
4341M: Michael Buesch <m@bues.ch>
4342L: linux-media@vger.kernel.org
4343S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03004344F: drivers/media/tuners/fc0011.h
4345F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03004346
Antti Palosaari91952bc2012-10-01 12:28:46 -03004347FC2580 MEDIA DRIVER
4348M: Antti Palosaari <crope@iki.fi>
4349L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004350W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004351W: http://palosaari.fi/linux/
4352Q: http://patchwork.linuxtv.org/project/linux-media/list/
4353T: git git://linuxtv.org/anttip/media_tree.git
4354S: Maintained
4355F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
Eric Paris88b2dbd2010-08-18 12:25:50 -04004357FANOTIFY
4358M: Eric Paris <eparis@redhat.com>
4359S: Maintained
4360F: fs/notify/fanotify/
4361F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004362F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04004363
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004365M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366W: http://www.farsite.co.uk/
4367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004368F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
Akinobu Mitac5408b82007-04-23 14:41:20 -07004370FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004371M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07004372S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004373F: Documentation/fault-injection/
4374F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07004375
Noralf Trønnes053e5142015-01-23 19:29:07 +01004376FBTFT Framebuffer drivers
4377M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4378M: Noralf Trønnes <noralf@tronnes.org>
4379S: Maintained
4380F: drivers/staging/fbtft/
4381
Robert Lovecae727d2010-02-16 12:16:00 -08004382FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
Robert Love3bd746c2014-05-28 14:19:01 -07004383M: Vasu Dev <vasu.dev@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00004384L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08004385W: www.Open-FCoE.org
4386S: Supported
4387F: drivers/scsi/libfc/
4388F: drivers/scsi/fcoe/
4389F: include/scsi/fc/
4390F: include/scsi/libfc.h
4391F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004392F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08004393
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004394FILE LOCKING (flock() and fcntl()/lockf())
Jeff Layton8c836fa2014-04-30 13:28:17 -04004395M: Jeff Layton <jlayton@poochiereds.net>
Joe Perches9c3646d2015-06-25 15:02:00 -07004396M: "J. Bruce Fields" <bfields@fieldses.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004397L: linux-fsdevel@vger.kernel.org
4398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: include/linux/fcntl.h
4400F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004401F: include/uapi/linux/fcntl.h
4402F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07004403F: fs/fcntl.c
4404F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004405
4406FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07004407M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004408L: linux-fsdevel@vger.kernel.org
4409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004410F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004411
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004412FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02004413M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004414L: lm-sensors@lm-sensors.org
4415S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004416F: drivers/hwmon/f75375s.c
4417F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004418
Clemens Ladischa331b0c2011-05-25 09:48:48 +02004419FIREWIRE AUDIO DRIVERS
4420M: Clemens Ladisch <clemens@ladisch.de>
4421L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4422T: git git://git.alsa-project.org/alsa-kernel.git
4423S: Maintained
4424F: sound/firewire/
4425
Stefan Richtereb86ec52012-11-03 09:25:20 +01004426FIREWIRE MEDIA DRIVERS (firedtv)
4427M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4428L: linux-media@vger.kernel.org
4429L: linux1394-devel@lists.sourceforge.net
4430T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4431S: Maintained
4432F: drivers/media/firewire/
4433
Chris Boota511ce32012-04-14 17:50:35 -07004434FIREWIRE SBP-2 TARGET
4435M: Chris Boot <bootc@bootc.net>
4436L: linux-scsi@vger.kernel.org
4437L: target-devel@vger.kernel.org
4438L: linux1394-devel@lists.sourceforge.net
4439T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4440S: Maintained
4441F: drivers/target/sbp/
4442
Joe Perches7d2c86b2009-04-07 20:59:01 -07004443FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004445L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01004446W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01004447T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004449F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08004450F: include/linux/firewire.h
4451F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02004452F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004453
4454FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08004455M: Ming Lei <ming.lei@canonical.com>
4456L: linux-kernel@vger.kernel.org
4457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004458F: Documentation/firmware_class/
4459F: drivers/base/firmware*.c
4460F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004461
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05004462FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06004463M: Joshua Morris <josh.h.morris@us.ibm.com>
4464M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4465S: Maintained
4466F: drivers/block/rsxx/
4467
Jiri Kosina8206f662012-05-18 13:52:29 +02004468FLOPPY DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02004469M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina8206f662012-05-18 13:52:29 +02004470T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4471S: Odd fixes
4472F: drivers/block/floppy.c
4473
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02004474FMC SUBSYSTEM
4475M: Alessandro Rubini <rubini@gnudd.com>
4476W: http://www.ohwr.org/projects/fmc-bus
4477S: Supported
4478F: drivers/fmc/
4479F: include/linux/fmc*.h
4480F: include/linux/ipmi-fru.h
4481K: fmc_d.*register
4482
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004483FPGA MANAGER FRAMEWORK
4484M: Alan Tull <atull@opensource.altera.com>
Moritz Fischerdd7d6642015-11-20 15:56:51 -08004485R: Moritz Fischer <moritz.fischer@ettus.com>
Alan Tull3c0ed7d2015-10-07 20:49:23 +01004486S: Maintained
4487F: drivers/fpga/
4488F: include/linux/fpga/fpga-mgr.h
4489W: http://www.rocketboards.org
4490
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004491FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004492M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07004493W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004495F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004496
4497FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004498L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00004499S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004500F: drivers/net/wan/dlci.c
4501F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004502
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004504M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4505M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004506L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09004508Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02004509T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09004510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004511F: Documentation/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09004512F: drivers/video/
4513F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07004514F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004515F: include/uapi/video/
4516F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
Timur Tabia57c1882012-10-16 17:33:42 -05004518FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004519M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05004520L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004521S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09004522F: drivers/video/fbdev/fsl-diu-fb.*
Timur Tabia57c1882012-10-16 17:33:42 -05004523
Zhang Wei173acc72008-03-01 07:42:48 -07004524FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: Li Yang <leoli@freescale.com>
4526M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004527L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07004528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004529F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07004530
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004531FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004533L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01004534L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004536F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02004537
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004538FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004539M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004540L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07004541L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004542S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08004543F: include/linux/platform_data/video-imxfb.h
Jingoo Han8a61f012014-07-01 15:36:01 +09004544F: drivers/video/fbdev/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01004545
Han Xu4d8e2ce2015-01-16 03:29:17 +08004546FREESCALE QUAD SPI DRIVER
4547M: Han Xu <han.xu@freescale.com>
4548L: linux-mtd@lists.infradead.org
4549S: Maintained
4550F: drivers/mtd/spi-nor/fsl-quadspi.c
4551
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004552FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004553M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4554M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004555L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004556L: netdev@vger.kernel.org
4557S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004558F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07004559F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03004560
Timur Tabid9e9d822008-04-24 08:45:26 +10004561FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004562L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004563S: Orphan
Zhao Qiang7aa1aa62015-11-30 10:48:57 +08004564F: drivers/soc/fsl/qe/
4565F: include/soc/fsl/*qe*.h
4566F: include/soc/fsl/*ucc*.h
Timur Tabid9e9d822008-04-24 08:45:26 +10004567
Joe Perchesb55ef9292009-10-26 16:49:46 -07004568FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004569M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07004570L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004571L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07004572S: Maintained
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07004573F: drivers/usb/gadget/udc/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07004574
Li Yangbeaf53b2007-05-25 13:54:02 +08004575FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08004577L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004578L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08004579S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07004580F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08004581
Claudiu Manoilabb1ed72015-10-23 11:42:01 +03004582FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4583M: Claudiu Manoil <claudiu.manoil@freescale.com>
4584L: netdev@vger.kernel.org
4585S: Maintained
4586F: drivers/net/ethernet/freescale/gianfar*
4587X: drivers/net/ethernet/freescale/gianfar_ptp.c
4588F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4589
Timur Tabid9e9d822008-04-24 08:45:26 +10004590FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004591M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004592L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004593S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004594F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004595
4596FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004597M: Timur Tabi <timur@tabi.org>
Mark Browndc859502014-08-07 10:47:24 +01004598M: Nicolin Chen <nicoleotsuka@gmail.com>
Xiubo Lib4b98292014-12-12 16:54:14 -08004599M: Xiubo Li <Xiubo.Lee@gmail.com>
Joe Perches93711662009-06-16 15:34:07 -07004600L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004601L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06004602S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07004603F: sound/soc/fsl/fsl*
Mark Browndc859502014-08-07 10:47:24 +01004604F: sound/soc/fsl/imx*
Joe Perches69aefce2009-04-09 10:39:22 -07004605F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10004606
J. German Rivera31c88962015-03-05 19:29:09 -06004607FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
Joe Perches9c3646d2015-06-25 15:02:00 -07004608M: "J. German Rivera" <German.Rivera@freescale.com>
J. German Rivera31c88962015-03-05 19:29:09 -06004609L: linux-kernel@vger.kernel.org
4610S: Maintained
4611F: drivers/staging/fsl-mc/
4612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004614M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004617F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
Pavel Machek71038f52009-01-15 13:51:02 -08004619FREEZER
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02004620M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01004621M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02004622L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08004623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004624F: Documentation/power/freezing-of-tasks.txt
4625F: include/linux/freezer.h
4626F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08004627
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04004628FRONTSWAP API
4629M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4630L: linux-kernel@vger.kernel.org
4631S: Maintained
4632F: mm/frontswap.c
4633F: include/linux/frontswap.h
4634
David Howellsa5432f52009-04-20 15:46:45 +01004635FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07004636M: David Howells <dhowells@redhat.com>
Geert Uytterhoevene62d6e22015-11-12 11:46:33 +00004637L: linux-cachefs@redhat.com (moderated for non-subscribers)
David Howellsa5432f52009-04-20 15:46:45 +01004638S: Supported
4639F: Documentation/filesystems/caching/
4640F: fs/fscache/
4641F: include/linux/fscache*.h
4642
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004643F2FS FILE SYSTEM
Jaegeuk Kim9b29d482014-05-30 08:20:08 +09004644M: Jaegeuk Kim <jaegeuk@kernel.org>
Jaegeuk Kimf6238a72014-05-31 01:00:49 +09004645M: Changman Lee <cm224.lee@samsung.com>
Chao Yu7b2a2462015-08-12 17:47:08 +08004646R: Chao Yu <chao2.yu@samsung.com>
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004647L: linux-f2fs-devel@lists.sourceforge.net
4648W: http://en.wikipedia.org/wiki/F2FS
4649T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4650S: Maintained
4651F: Documentation/filesystems/f2fs.txt
Jaegeuk Kim3bac3802014-01-09 21:00:06 +09004652F: Documentation/ABI/testing/sysfs-fs-f2fs
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004653F: fs/f2fs/
4654F: include/linux/f2fs_fs.h
Chao Yu62d43ee2015-07-06 20:29:46 +08004655F: include/trace/events/f2fs.h
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09004656
David Howells5ab7ffe2007-04-10 15:10:45 +01004657FUJITSU FR-V (FRV) PORT
David Howells0cf03052016-01-20 10:29:00 +00004658S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004659F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660
Jonathan Woithe20b93732008-06-11 10:14:56 +09304661FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304662M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05004663L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09304664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004665F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09304666
Heungjun Kim4da621b2011-11-11 08:05:33 -03004667FUJITSU M-5MO LS CAMERA ISP DRIVER
4668M: Kyungmin Park <kyungmin.park@samsung.com>
4669M: Heungjun Kim <riverful.kim@samsung.com>
4670L: linux-media@vger.kernel.org
4671S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004672F: drivers/media/i2c/m5mols/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02004673F: include/media/i2c/m5mols.h
Heungjun Kim4da621b2011-11-11 08:05:33 -03004674
Robert Gerlach2d24c492012-01-18 14:26:22 +01004675FUJITSU TABLET EXTRAS
4676M: Robert Gerlach <khnz@gmx.de>
4677L: platform-driver-x86@vger.kernel.org
4678S: Maintained
4679F: drivers/platform/x86/fujitsu-tablet.c
4680
Miklos Szeredi04578f12005-09-09 13:10:22 -07004681FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07004682M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07004683L: fuse-devel@lists.sourceforge.net
4684W: http://fuse.sourceforge.net/
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004685T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
Miklos Szeredi04578f12005-09-09 13:10:22 -07004686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004687F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004688F: include/uapi/linux/fuse.h
Miklos Szeredi0a30f612015-07-01 17:10:36 +02004689F: Documentation/filesystems/fuse.txt
Miklos Szeredi04578f12005-09-09 13:10:22 -07004690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07004692M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004694S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07004695F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Peter Oberparleiterd8e21622013-10-16 13:46:49 -07004697GCOV BASED KERNEL PROFILING
4698M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4699S: Maintained
4700F: kernel/gcov/
4701F: Documentation/gcov.txt
4702
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004704M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705L: linux-scsi@vger.kernel.org
4706W: http://www.icp-vortex.com/
4707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004708F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709
Jan Kiszka158daf12015-02-17 13:47:49 -08004710GDB KERNEL DEBUGGING HELPER SCRIPTS
4711M: Jan Kiszka <jan.kiszka@siemens.com>
4712S: Supported
4713F: scripts/gdb/
4714
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004715GEMTEK FM RADIO RECEIVER DRIVER
4716M: Hans Verkuil <hverkuil@xs4all.nl>
4717L: linux-media@vger.kernel.org
4718T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004719W: https://linuxtv.org
Hans Verkuil3169a1c2012-11-23 07:11:58 -03004720S: Maintained
4721F: drivers/media/radio/radio-gemtek*
4722
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004723GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07004724M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004725S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004726F: drivers/i2c/busses/i2c-gpio.c
4727F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02004728
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004729GENERIC GPIO I2C MULTIPLEXER DRIVER
4730M: Peter Korsgaard <peter.korsgaard@barco.com>
4731L: linux-i2c@vger.kernel.org
4732S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02004733F: drivers/i2c/muxes/i2c-mux-gpio.c
4734F: include/linux/i2c-mux-gpio.h
4735F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01004736
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004737GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004738M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004741F: drivers/net/wan/c101.c
4742F: drivers/net/wan/hd6457*
4743F: drivers/net/wan/hdlc*
4744F: drivers/net/wan/n2.c
4745F: drivers/net/wan/pc300too.c
4746F: drivers/net/wan/pci200syn.c
4747F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004749GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004751L: linux-arch@vger.kernel.org
4752T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4753S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07004754F: include/asm-generic/
4755F: include/uapi/asm-generic/
Arnd Bergmann1527aab2009-06-14 22:46:16 +02004756
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05304757GENERIC PHY FRAMEWORK
4758M: Kishon Vijay Abraham I <kishon@ti.com>
4759L: linux-kernel@vger.kernel.org
4760T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4761S: Supported
4762F: drivers/phy/
4763F: include/linux/phy/
4764
Kevin Hilmaneea97ae2015-03-12 10:33:46 -07004765GENERIC PM DOMAINS
4766M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4767M: Kevin Hilman <khilman@kernel.org>
4768M: Ulf Hansson <ulf.hansson@linaro.org>
4769L: linux-pm@vger.kernel.org
4770S: Supported
4771F: drivers/base/power/domain*.c
4772F: include/linux/pm_domain.h
4773
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004774GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07004775M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004776L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03004777S: Supported
4778F: drivers/uio/uio_pci_generic.c
4779
Joe Perchesf8f1ec72014-06-04 16:05:31 -07004780GET_MAINTAINER SCRIPT
4781M: Joe Perches <joe@perches.com>
4782S: Maintained
4783F: scripts/get_maintainer.pl
4784
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004785GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004786M: Steven Whitehouse <swhiteho@redhat.com>
Bob Peterson28666d62015-02-13 11:23:11 -06004787M: Bob Peterson <rpeterso@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04004788L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004789W: http://sources.redhat.com/cluster/
Bob Peterson28666d62015-02-13 11:23:11 -06004790T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004792F: Documentation/filesystems/gfs2*.txt
4793F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004794F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04004795
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004796GIGASET ISDN DRIVERS
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004797M: Paul Bolle <pebolle@tiscali.nl>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004798L: gigaset307x-common@lists.sourceforge.net
4799W: http://gigaset307x.sourceforge.net/
Tilman Schmidt6b096fd2015-05-02 19:23:22 +02004800S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004801F: Documentation/isdn/README.gigaset
4802F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004803F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08004804
Joe Perches7eea35f2014-07-30 05:09:23 -03004805GO7007 MPEG CODEC
4806M: Hans Verkuil <hans.verkuil@cisco.com>
4807L: linux-media@vger.kernel.org
4808S: Maintained
4809F: drivers/media/usb/go7007/
4810
Bastien Noceraca96ea82014-10-31 09:26:16 -07004811GOODIX TOUCHSCREEN
4812M: Bastien Nocera <hadess@hadess.net>
4813L: linux-input@vger.kernel.org
4814S: Maintained
4815F: drivers/input/touchscreen/goodix.c
4816
Grant Likelya0dc00b2011-02-12 01:48:14 -07004817GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02004818M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004819M: Alexandre Courbot <gnurou@gmail.com>
Alexandre Courbotd15b7172013-05-26 11:50:54 +09004820L: linux-gpio@vger.kernel.org
Linus Walleijf2fa75c2013-12-10 09:43:09 +01004821T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4822S: Maintained
4823F: Documentation/gpio/
Linus Walleij40c159b2015-10-22 10:21:57 +02004824F: Documentation/ABI/testing/gpio-cdev
Linus Walleijfe950462015-10-22 09:58:34 +02004825F: Documentation/ABI/obsolete/sysfs-gpio
Grant Likelya0dc00b2011-02-12 01:48:14 -07004826F: drivers/gpio/
Alexandre Courbotbdc6e952014-08-04 13:06:58 +09004827F: include/linux/gpio/
4828F: include/linux/gpio.h
Yang Bai9b692342012-10-04 17:12:35 -07004829F: include/asm-generic/gpio.h
Linus Walleij3c702e92015-10-21 15:29:53 +02004830F: include/uapi/linux/gpio.h
Linus Walleij6d591c42015-10-21 15:45:54 +02004831F: tools/gpio/
Grant Likelya0dc00b2011-02-12 01:48:14 -07004832
Harry Wei71a6d0a2011-05-11 15:13:33 -07004833GRE DEMULTIPLEXER DRIVER
4834M: Dmitry Kozlov <xeb@mail.ru>
4835L: netdev@vger.kernel.org
4836S: Maintained
Joe Perches11c26772013-09-11 14:23:48 -07004837F: net/ipv4/gre_demux.c
4838F: net/ipv4/gre_offload.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07004839F: include/net/gre.h
4840
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004841GRETH 10/100/1G Ethernet MAC device driver
4842M: Kristoffer Glembo <kristoffer@gaisler.com>
4843L: netdev@vger.kernel.org
4844S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08004845F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00004846
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004847GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004848M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004849L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004850T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004851S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004852F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004853
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004854GSPCA GL860 SUBDRIVER
4855M: Olivier Lorin <o.lorin@laposte.net>
4856L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004857T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004858S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004859F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03004860
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004861GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004862M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004863L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004864T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004865S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004866F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004867
4868GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004870L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004871T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004872S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004873F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004874
Brian Johnson261982f2009-07-19 15:58:56 -03004875GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03004876M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03004877L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004878T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03004879S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004880F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03004881
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004882GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004883M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004884L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004885T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004886S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004887F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004888
4889GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03004890M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004891L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004892T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004893S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03004894F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03004895
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004896GUID PARTITION TABLE (GPT)
Andrew Morton4f973c62015-06-25 15:02:05 -07004897M: Davidlohr Bueso <dave@stgolabs.net>
Davidlohr Bueso584ec972013-12-18 17:08:55 -08004898L: linux-efi@vger.kernel.org
4899S: Maintained
4900F: block/partitions/efi.*
4901
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004902STK1160 USB VIDEO CAPTURE DRIVER
Ezequiel Garcia3259aa52015-03-10 11:43:20 -03004903M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004904L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004905T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03004906S: Maintained
4907F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004908
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004909H8/300 ARCHITECTURE
4910M: Yoshinori Sato <ysato@users.sourceforge.jp>
Geert Uytterhoevenb992c762015-07-17 16:23:55 -07004911L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
Yoshinori Sato4e456b82015-03-11 01:41:38 +09004912W: http://uclinux-h8.sourceforge.jp
4913T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4914S: Maintained
4915F: arch/h8300/
4916F: drivers/clocksource/h8300_*.c
4917F: drivers/clk/h8300/
4918F: drivers/irqchip/irq-renesas-h8*.c
4919
Harry Wei71a6d0a2011-05-11 15:13:33 -07004920HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4921M: Frank Seidel <frank@f-seidel.de>
4922L: platform-driver-x86@vger.kernel.org
4923W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4924S: Maintained
4925F: drivers/platform/x86/hdaps.c
4926
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004927HDPVR USB VIDEO ENCODER DRIVER
4928M: Hans Verkuil <hverkuil@xs4all.nl>
4929L: linux-media@vger.kernel.org
4930T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004931W: https://linuxtv.org
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004932S: Odd Fixes
Joe Perches14430812013-09-11 14:23:50 -07004933F: drivers/media/usb/hdpvr/
Hans Verkuil48fc9e22013-04-11 03:36:49 -03004934
Harry Wei71a6d0a2011-05-11 15:13:33 -07004935HWPOISON MEMORY FAILURE HANDLING
Andi Kleenf9625c42014-06-04 16:05:32 -07004936M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Harry Wei71a6d0a2011-05-11 15:13:33 -07004937L: linux-mm@kvack.org
Harry Wei71a6d0a2011-05-11 15:13:33 -07004938S: Maintained
4939F: mm/memory-failure.c
4940F: mm/hwpoison-inject.c
4941
4942HYPERVISOR VIRTUAL CONSOLE DRIVER
4943L: linuxppc-dev@lists.ozlabs.org
4944S: Odd Fixes
4945F: drivers/tty/hvc/
4946
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004947HACKRF MEDIA DRIVER
4948M: Antti Palosaari <crope@iki.fi>
4949L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004950W: https://linuxtv.org
Antti Palosaarie5ab1472014-09-10 04:20:15 -03004951W: http://palosaari.fi/linux/
4952Q: http://patchwork.linuxtv.org/project/linux-media/list/
4953T: git git://linuxtv.org/anttip/media_tree.git
4954S: Maintained
4955F: drivers/media/usb/hackrf/
4956
Michael Buesch844dd052006-06-26 00:24:59 -07004957HARDWARE MONITORING
Jiri Slabyd8130622015-07-17 16:23:20 -07004958M: Jean Delvare <jdelvare@suse.com>
Guenter Roeckca462082012-06-01 23:28:23 -07004959M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04004960L: lm-sensors@lm-sensors.org
4961W: http://www.lm-sensors.org/
Jean Delvarea94ef4e2015-04-27 16:37:39 +02004962T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07004963T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02004964S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01004965F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07004966F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01004967F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04004968
4969HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07004970M: Matt Mackall <mpm@selenic.com>
4971M: Herbert Xu <herbert@gondor.apana.org.au>
Michael S. Tsirkin3eda71672015-01-16 09:16:00 +02004972L: linux-crypto@vger.kernel.org
Joe Perchesc0d07872009-09-23 15:57:17 -07004973S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004974F: Documentation/hw_random.txt
4975F: drivers/char/hw_random/
4976F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04004977
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004978HARDWARE SPINLOCK CORE
4979M: Ohad Ben-Cohen <ohad@wizery.com>
4980S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08004981T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004982F: Documentation/hwspinlock.txt
4983F: drivers/hwspinlock/hwspinlock_*
4984F: include/linux/hwspinlock.h
4985
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004987L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004989F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
Antti Palosaari91952bc2012-10-01 12:28:46 -03004991HD29L2 MEDIA DRIVER
4992M: Antti Palosaari <crope@iki.fi>
4993L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02004994W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03004995W: http://palosaari.fi/linux/
4996Q: http://patchwork.linuxtv.org/project/linux-media/list/
4997T: git git://linuxtv.org/anttip/media_tree.git
4998S: Maintained
4999F: drivers/media/dvb-frontends/hd29l2*
5000
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005001HEWLETT-PACKARD SMART2 RAID DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005002L: iss_storagedev@hp.com
Michael Opdenackeraf9f1b32014-10-13 15:51:28 -07005003S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005004F: Documentation/blockdev/cpqarray.txt
5005F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005006
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005007HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Don Brace693373d2014-10-15 22:32:41 +00005008M: Don Brace <don.brace@pmcs.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005009L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00005010L: storagedev@pmcs.com
5011L: linux-scsi@vger.kernel.org
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005012S: Supported
5013F: Documentation/scsi/hpsa.txt
5014F: drivers/scsi/hpsa*.[ch]
5015F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005016F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05005017
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005018HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Don Brace693373d2014-10-15 22:32:41 +00005019M: Don Brace <don.brace@pmcs.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005020L: iss_storagedev@hp.com
Don Brace693373d2014-10-15 22:32:41 +00005021L: storagedev@pmcs.com
5022L: linux-scsi@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005024F: Documentation/blockdev/cciss.txt
5025F: drivers/block/cciss*
5026F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005027F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005028
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02005030L: linux-fsdevel@vger.kernel.org
5031S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005032F: Documentation/filesystems/hfs.txt
5033F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034
Geert Uytterhoevenef575f42014-01-23 15:54:21 -08005035HFSPLUS FILESYSTEM
5036L: linux-fsdevel@vger.kernel.org
5037S: Orphan
5038F: Documentation/filesystems/hfsplus.txt
5039F: fs/hfsplus/
5040
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005042M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043L: linux-nvidia@lists.surfsouth.com
5044W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5045S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005046F: drivers/video/fbdev/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005048HIBERNATION (aka Software Suspend, aka swsusp)
Rafael J. Wysocki49db1902013-10-09 01:47:53 +02005049M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +01005050M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +02005051L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005052S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005053F: arch/x86/power/
5054F: drivers/base/power/
5055F: kernel/power/
5056F: include/linux/suspend.h
5057F: include/linux/freezer.h
5058F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07005059F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005060
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005061HID CORE LAYER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005062M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +01005063R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04005064L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005065T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005067F: drivers/hid/
5068F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005069F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01005070
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005071HID SENSOR HUB DRIVERS
Jiri Kosinae5f64502015-08-09 09:11:34 +02005072M: Jiri Kosina <jikos@kernel.org>
Srinivas Pandruvada30ee72f2015-05-15 11:35:38 -07005073M: Jonathan Cameron <jic23@kernel.org>
5074M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5075L: linux-input@vger.kernel.org
5076L: linux-iio@vger.kernel.org
5077S: Maintained
5078F: Documentation/hid/hid-sensor*
5079F: drivers/hid/hid-sensor-*
5080F: drivers/iio/*/hid-*
5081F: include/linux/hid-sensor-*
5082
Ingo Molnar38bed542007-02-22 09:09:34 +01005083HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07005084M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005085L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005086T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01005087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005088F: Documentation/timers/
Thomas Gleixner5cee9642014-06-22 12:06:40 +02005089F: kernel/time/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01005090F: kernel/time/clockevents.c
5091F: kernel/time/tick*.*
5092F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07005093F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07005094F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01005095
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07005098S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005099F: drivers/net/hamradio/dmascc.c
5100F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005102HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005103M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005104W: http://www.highpoint-tech.com
5105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005106F: Documentation/scsi/hptiop.txt
5107F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08005108
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07005110M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111L: linux-hippi@sunsite.dk
5112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005113F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005114F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07005115F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07005116F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
John Garry16c6c252015-11-18 00:50:59 +08005118HISILICON SAS Controller
5119M: John Garry <john.garry@huawei.com>
5120W: http://www.hisilicon.com
5121S: Supported
5122F: drivers/scsi/hisi_sas/
5123F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5124
Jouni Malinenff1d2762005-05-12 22:54:16 -04005125HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005126M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07005127L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07005128L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04005129W: http://hostap.epitest.fi/
5130S: Maintained
Kalle Valoeb4f98d2015-11-18 09:42:58 +02005131F: drivers/net/wireless/intersil/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04005132
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005133HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05005134L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01005135S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005136F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00005137
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005138HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07005139M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005140S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07005141F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005142
Joe Perches7d2c86b2009-04-07 20:59:01 -07005143HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07005144M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08005145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005146F: Documentation/timers/hpet.txt
5147F: drivers/char/hpet.c
5148F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005149F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005150
Jiri Kosinae07b5d72010-03-18 10:59:57 +01005151HPET: x86
Joe Perches9e06f632014-04-03 14:48:53 -07005152S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005153F: arch/x86/kernel/hpet.c
5154F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08005155
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005157M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005160F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005162HSI SUBSYSTEM
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005163M: Sebastian Reichel <sre@kernel.org>
5164T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005165S: Maintained
5166F: Documentation/ABI/testing/sysfs-bus-hsi
Sebastian Reichel56459ea2014-03-28 19:57:59 +01005167F: Documentation/hsi.txt
Sebastian Reichel3441cde2013-11-27 10:17:22 +01005168F: drivers/hsi/
5169F: include/linux/hsi/
5170F: include/uapi/linux/hsi/
5171
Joe Perches7d2c86b2009-04-07 20:59:01 -07005172HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005173M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005174W: http://www.pharscape.org
5175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005176F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00005177
Arvid Brodin19990e22013-11-29 23:36:00 +01005178HSR NETWORK PROTOCOL
5179M: Arvid Brodin <arvid.brodin@alten.se>
5180L: netdev@vger.kernel.org
5181S: Maintained
5182F: net/hsr/
5183
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005184HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005185M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005186L: linux-input@vger.kernel.org
5187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005188F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04005189
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005191M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005193F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005195Hyper-V CORE AND DRIVERS
Joe Perches9c3646d2015-06-25 15:02:00 -07005196M: "K. Y. Srinivasan" <kys@microsoft.com>
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005197M: Haiyang Zhang <haiyangz@microsoft.com>
5198L: devel@linuxdriverproject.org
5199S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07005200F: arch/x86/include/asm/mshyperv.h
5201F: arch/x86/include/uapi/asm/hyperv.h
5202F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005203F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005204F: drivers/hv/
Haiyang Zhangf92ca802013-11-21 14:32:10 -08005205F: drivers/input/serio/hyperv-keyboard.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005206F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07005207F: drivers/scsi/storvsc_drv.c
Jingoo Han8a61f012014-07-01 15:36:01 +09005208F: drivers/video/fbdev/hyperv_fb.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07005209F: include/linux/hyperv.h
5210F: tools/hv/
Dexuan Cui54bf7252015-08-05 00:52:45 -07005211F: Documentation/ABI/stable/sysfs-bus-vmbus
K. Y. Srinivasan05183182011-12-01 14:31:30 -08005212
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005213I2C OVER PARALLEL PORT
Jiri Slabyd8130622015-07-17 16:23:20 -07005214M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005215L: linux-i2c@vger.kernel.org
5216S: Maintained
5217F: Documentation/i2c/busses/i2c-parport
5218F: Documentation/i2c/busses/i2c-parport-light
5219F: drivers/i2c/busses/i2c-parport.c
5220F: drivers/i2c/busses/i2c-parport-light.c
5221
5222I2C/SMBUS CONTROLLER DRIVERS FOR PC
Jiri Slabyd8130622015-07-17 16:23:20 -07005223M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005224L: linux-i2c@vger.kernel.org
5225S: Maintained
5226F: Documentation/i2c/busses/i2c-ali1535
5227F: Documentation/i2c/busses/i2c-ali1563
5228F: Documentation/i2c/busses/i2c-ali15x3
5229F: Documentation/i2c/busses/i2c-amd756
5230F: Documentation/i2c/busses/i2c-amd8111
5231F: Documentation/i2c/busses/i2c-i801
5232F: Documentation/i2c/busses/i2c-nforce2
5233F: Documentation/i2c/busses/i2c-piix4
5234F: Documentation/i2c/busses/i2c-sis5595
5235F: Documentation/i2c/busses/i2c-sis630
5236F: Documentation/i2c/busses/i2c-sis96x
5237F: Documentation/i2c/busses/i2c-via
5238F: Documentation/i2c/busses/i2c-viapro
5239F: drivers/i2c/busses/i2c-ali1535.c
5240F: drivers/i2c/busses/i2c-ali1563.c
5241F: drivers/i2c/busses/i2c-ali15x3.c
5242F: drivers/i2c/busses/i2c-amd756.c
5243F: drivers/i2c/busses/i2c-amd756-s4882.c
5244F: drivers/i2c/busses/i2c-amd8111.c
5245F: drivers/i2c/busses/i2c-i801.c
5246F: drivers/i2c/busses/i2c-isch.c
5247F: drivers/i2c/busses/i2c-nforce2.c
5248F: drivers/i2c/busses/i2c-nforce2-s4985.c
5249F: drivers/i2c/busses/i2c-piix4.c
5250F: drivers/i2c/busses/i2c-sis5595.c
5251F: drivers/i2c/busses/i2c-sis630.c
5252F: drivers/i2c/busses/i2c-sis96x.c
5253F: drivers/i2c/busses/i2c-via.c
5254F: drivers/i2c/busses/i2c-viapro.c
5255
Neil Hormancb7f07a2013-02-10 11:59:03 -05005256I2C/SMBUS ISMT DRIVER
5257M: Seth Heasley <seth.heasley@intel.com>
5258M: Neil Horman <nhorman@tuxdriver.com>
5259L: linux-i2c@vger.kernel.org
5260F: drivers/i2c/busses/i2c-ismt.c
5261F: Documentation/i2c/busses/i2c-ismt
5262
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005263I2C/SMBUS STUB DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005264M: Jean Delvare <jdelvare@suse.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005265L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005266S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01005267F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005268
Jean Delvare5b543962005-08-15 19:51:02 +02005269I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01005270M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01005271L: linux-i2c@vger.kernel.org
Wolfram Sang9d4ea272014-04-02 20:25:59 +02005272W: https://i2c.wiki.kernel.org/
5273Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
Wolfram Sang14d77c42013-02-08 20:54:40 +01005274T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275S: Maintained
Wolfram Sang40ed1b42014-12-08 10:53:13 +01005276F: Documentation/devicetree/bindings/i2c/
Joe Perches679655d2009-04-07 20:44:32 -07005277F: Documentation/i2c/
5278F: drivers/i2c/
Wolfram Sang630bc462015-10-29 08:25:48 +01005279F: drivers/i2c/*/
Joe Perches679655d2009-04-07 20:44:32 -07005280F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01005281F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005282F: include/uapi/linux/i2c.h
5283F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Wolfram Sang4560d672014-08-19 10:08:35 -05005285I2C ACPI SUPPORT
5286M: Mika Westerberg <mika.westerberg@linux.intel.com>
5287L: linux-i2c@vger.kernel.org
5288L: linux-acpi@vger.kernel.org
5289S: Maintained
Wolfram Sang4560d672014-08-19 10:08:35 -05005290
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005291I2C-TAOS-EVM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005292M: Jean Delvare <jdelvare@suse.com>
Jean Delvared85c8a6a2012-11-13 22:27:19 +01005293L: linux-i2c@vger.kernel.org
5294S: Maintained
5295F: Documentation/i2c/busses/i2c-taos-evm
5296F: drivers/i2c/busses/i2c-taos-evm.c
5297
Till Harbaume8c76ee2007-05-01 23:26:35 +02005298I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005300L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07005301W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02005302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005303F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02005304
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07005306M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005308F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309
5310i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07005311M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07005312T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313S: Maintained
5314
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005316M: Tony Luck <tony.luck@intel.com>
5317M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07005319T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005321F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005323IBM Power VMX Cryptographic instructions
5324M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005325M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005326L: linux-crypto@vger.kernel.org
5327S: Supported
5328F: drivers/crypto/vmx/Makefile
5329F: drivers/crypto/vmx/Kconfig
5330F: drivers/crypto/vmx/vmx.c
5331F: drivers/crypto/vmx/aes*
5332F: drivers/crypto/vmx/ghash*
5333F: drivers/crypto/vmx/ppc-xlate.pl
5334
Kent Yoder956c2032012-09-07 04:17:01 +08005335IBM Power in-Nest Crypto Acceleration
Leonidas Da Silva Barbosa4cd38752015-08-08 18:29:27 -03005336M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
Paulo Flabiano Smorigo5cd01fe2015-08-10 16:14:17 -03005337M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08005338L: linux-crypto@vger.kernel.org
5339S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005340F: drivers/crypto/nx/Makefile
5341F: drivers/crypto/nx/Kconfig
5342F: drivers/crypto/nx/nx-aes*
5343F: drivers/crypto/nx/nx-sha*
5344F: drivers/crypto/nx/nx.*
5345F: drivers/crypto/nx/nx_csbcpb.h
5346F: drivers/crypto/nx/nx_debugfs.h
Kent Yoder956c2032012-09-07 04:17:01 +08005347
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005348IBM Power 842 compression accelerator
Dan Streetman41656aa2015-07-29 19:50:46 -04005349M: Dan Streetman <ddstreet@ieee.org>
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005350S: Supported
Dan Streetman28bceea2015-06-18 12:28:32 -04005351F: drivers/crypto/nx/Makefile
5352F: drivers/crypto/nx/Kconfig
Dan Streetman7011a122015-05-07 13:49:17 -04005353F: drivers/crypto/nx/nx-842*
Dan Streetman2da572c2015-05-07 13:49:14 -04005354F: include/linux/sw842.h
Dan Streetman2062c5b2015-05-07 13:49:15 -04005355F: crypto/842.c
Dan Streetman2da572c2015-05-07 13:49:14 -04005356F: lib/842/
Seth Jennings0e16aaf2012-07-19 09:42:40 -05005357
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07005359M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005361F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362
Santiago Leon9d348af2010-09-03 18:29:53 +00005363IBM Power Virtual Ethernet Device Driver
Thomas Falconeddd63a2015-01-09 14:29:40 -06005364M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Santiago Leon9d348af2010-09-03 18:29:53 +00005365L: netdev@vger.kernel.org
5366S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07005367F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00005368
Thomas Falcon032c5e82015-12-21 11:26:06 -06005369IBM Power SRIOV Virtual NIC Device Driver
5370M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5371M: John Allen <jallen@linux.vnet.ibm.com>
5372L: netdev@vger.kernel.org
5373S: Supported
5374F: drivers/net/ethernet/ibm/ibmvnic.*
5375
Nathan Fontenote6babec2014-04-09 13:32:06 -05005376IBM Power Virtual SCSI Device Drivers
Tyrel Datwylerbcbde522015-01-12 16:31:34 -08005377M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Robert Jennings4b7652c2012-07-31 12:34:36 -05005378L: linux-scsi@vger.kernel.org
5379S: Supported
Nathan Fontenote6babec2014-04-09 13:32:06 -05005380F: drivers/scsi/ibmvscsi/ibmvscsi*
5381F: drivers/scsi/ibmvscsi/viosrp.h
5382
5383IBM Power Virtual FC Device Drivers
Tyrel Datwyler44b4dad2015-01-12 16:31:35 -08005384M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Nathan Fontenote6babec2014-04-09 13:32:06 -05005385L: linux-scsi@vger.kernel.org
5386S: Supported
5387F: drivers/scsi/ibmvscsi/ibmvfc*
Robert Jennings4b7652c2012-07-31 12:34:36 -05005388
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389IBM ServeRAID RAID DRIVER
Michael Opdenackerf9213e72014-08-08 14:23:50 -07005390S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005391F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05005393ICH LPC AND GPIO DRIVER
5394M: Peter Tyser <ptyser@xes-inc.com>
5395S: Maintained
5396F: drivers/mfd/lpc_ich.c
5397F: drivers/gpio/gpio-ich.c
5398
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01005399IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005400M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005402Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07005403T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005405F: Documentation/ide/
5406F: drivers/ide/
5407F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408
Ike Panhc6cb8c132011-08-25 22:28:45 +08005409IDEAPAD LAPTOP EXTRAS DRIVER
5410M: Ike Panhc <ike.pan@canonical.com>
5411L: platform-driver-x86@vger.kernel.org
5412W: http://launchpad.net/ideapad-laptop
5413S: Maintained
5414F: drivers/platform/x86/ideapad-laptop.c
5415
Andrey Moiseev1ea4c162013-08-25 22:51:15 -07005416IDEAPAD LAPTOP SLIDEBAR DRIVER
5417M: Andrey Moiseev <o2g.org.ru@gmail.com>
5418L: linux-input@vger.kernel.org
5419W: https://github.com/o2genum/ideapad-slidebar
5420S: Maintained
5421F: drivers/input/misc/ideapad_slidebar.c
5422
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02005423IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01005424M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01005425L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01005426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: Documentation/cdrom/ide-cd
5428F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429
Andy Henroid27471fd2008-10-09 11:45:22 -07005430IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07005431M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02005432L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07005433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005434F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07005435
Sergey Lapin02cf2282009-06-08 12:18:50 +00005436IEEE 802.15.4 SUBSYSTEM
Alexander Aringb6e195f2014-07-03 23:13:19 +02005437M: Alexander Aring <alex.aring@gmail.com>
Varka Bhadramebef9c12014-08-08 17:32:45 +05305438L: linux-wpan@vger.kernel.org
5439W: https://github.com/linux-wpan
5440T: git git://github.com/linux-wpan/linux-wpan-next.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00005441S: Maintained
5442F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00005443F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08005444F: drivers/net/ieee802154/
Alexander Aring580947d2014-10-25 09:41:05 +02005445F: include/linux/nl802154.h
5446F: include/linux/ieee802154.h
5447F: include/net/nl802154.h
5448F: include/net/mac802154.h
5449F: include/net/af_ieee802154.h
5450F: include/net/cfg802154.h
5451F: include/net/ieee802154_netdev.h
Varka Bhadramebef9c12014-08-08 17:32:45 +05305452F: Documentation/networking/ieee802154.txt
Sergey Lapin02cf2282009-06-08 12:18:50 +00005453
Sean Youngb1c97192014-10-23 17:58:22 -03005454IGORPLUG-USB IR RECEIVER
5455M: Sean Young <sean@mess.org>
5456L: linux-media@vger.kernel.org
5457S: Maintained
5458F: drivers/media/rc/igorplugusb.c
5459
Sean Young40ad4a32012-11-19 10:32:53 -03005460IGUANAWORKS USB IR TRANSCEIVER
5461M: Sean Young <sean@mess.org>
5462L: linux-media@vger.kernel.org
5463S: Maintained
5464F: drivers/media/rc/iguanair.c
5465
Ameya Palande9545f862012-01-10 09:00:58 -08005466IIO SUBSYSTEM AND DRIVERS
Sachin Kamat030a13d2013-09-11 11:00:00 +01005467M: Jonathan Cameron <jic23@kernel.org>
Lars-Peter Clausenf0d61162014-08-18 09:29:00 +01005468R: Hartmut Knaack <knaack.h@gmx.de>
5469R: Lars-Peter Clausen <lars@metafoo.de>
5470R: Peter Meerwald <pmeerw@pmeerw.net>
Ameya Palande9545f862012-01-10 09:00:58 -08005471L: linux-iio@vger.kernel.org
5472S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02005473F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005474F: drivers/staging/iio/
Daniel Baluta8fe671f2014-11-13 15:19:47 -08005475F: include/linux/iio/
Roberta Dobrescu817020c2015-02-26 10:49:25 +02005476F: tools/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08005477
Stanislaw Gruszka65519262011-01-08 15:19:40 +01005478IKANOS/ADI EAGLE ADSL USB DRIVER
5479M: Matthieu Castet <castet.matthieu@free.fr>
5480M: Stanislaw Gruszka <stf_xl@wp.pl>
5481S: Maintained
5482F: drivers/usb/atm/ueagle-atm.c
5483
Guenter Roecke89ab512013-03-08 08:13:09 -08005484INA209 HARDWARE MONITOR DRIVER
5485M: Guenter Roeck <linux@roeck-us.net>
5486L: lm-sensors@lm-sensors.org
5487S: Maintained
5488F: Documentation/hwmon/ina209
5489F: Documentation/devicetree/bindings/i2c/ina209.txt
5490F: drivers/hwmon/ina209.c
5491
5492INA2XX HARDWARE MONITOR DRIVER
5493M: Guenter Roeck <linux@roeck-us.net>
5494L: lm-sensors@lm-sensors.org
5495S: Maintained
5496F: Documentation/hwmon/ina2xx
5497F: drivers/hwmon/ina2xx.c
5498F: include/linux/platform_data/ina2xx.h
5499
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01005500INDUSTRY PACK SUBSYSTEM (IPACK)
5501M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5502M: Jens Taprogge <jens.taprogge@taprogge.org>
5503M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5504L: industrypack-devel@lists.sourceforge.net
5505W: http://industrypack.sourceforge.net
5506S: Maintained
5507F: drivers/ipack/
5508
Zubair Lutfullah Kakakhel8adc53f2015-03-18 16:16:37 +00005509INGENIC JZ4780 DMA Driver
5510M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5511S: Maintained
5512F: drivers/dma/dma-jz4780.c
5513
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005514INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Mimi Zohar74dd7442014-02-27 08:44:45 -05005515M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Dmitry Kasatkinbfd33c42015-01-15 14:18:18 +02005516M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
Mimi Zohar74dd7442014-02-27 08:44:45 -05005517L: linux-ima-devel@lists.sourceforge.net
5518L: linux-ima-user@lists.sourceforge.net
5519L: linux-security-module@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08005520T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005522F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05005523
James Hogan9a4ea5a2014-11-17 09:17:49 -03005524IMGTEC IR DECODER DRIVER
5525M: James Hogan <james.hogan@imgtec.com>
5526S: Maintained
5527F: drivers/media/rc/img-ir/
5528
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005530L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09005531S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09005532F: drivers/video/fbdev/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533
5534INFINIBAND SUBSYSTEM
Doug Ledfordb6b2bbe2015-05-05 12:57:09 -04005535M: Doug Ledford <dledford@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Sean Hefty <sean.hefty@intel.com>
5537M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005538L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07005539W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005540Q: http://patchwork.kernel.org/project/linux-rdma/list/
Doug Ledford2936ae02015-05-11 21:03:36 -04005541T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005543F: Documentation/infiniband/
5544F: drivers/infiniband/
Doug Ledford2dfcad32015-08-27 14:18:57 -04005545F: drivers/staging/rdma/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005546F: include/uapi/linux/if_infiniband.h
Yann Droneaud954138d2015-05-04 14:31:03 +02005547F: include/uapi/rdma/
5548F: include/rdma/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549
Robert Lovec9f04f52005-07-15 12:21:07 -04005550INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07005551M: John McCutchan <john@johnmccutchan.com>
5552M: Robert Love <rlove@rlove.org>
5553M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04005554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005555F: Documentation/filesystems/inotify.txt
5556F: fs/notify/inotify/
5557F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005558F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04005559
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005560INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005561M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005562L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005563Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07005564T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005566F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005567F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005568F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07005569F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005570
Henrik Rydberg3267a872010-06-24 19:10:40 -07005571INPUT MULTITOUCH (MT) PROTOCOL
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005572M: Henrik Rydberg <rydberg@bitmath.org>
Henrik Rydberg3267a872010-06-24 19:10:40 -07005573L: linux-input@vger.kernel.org
Henrik Rydberg75dd1122015-01-08 14:32:21 -08005574S: Odd fixes
Henrik Rydberg3267a872010-06-24 19:10:40 -07005575F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01005576F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07005577K: \b(ABS|SYN)_MT_
5578
Jie Yang97fa99a2015-02-02 16:55:27 +08005579INTEL ASoC BDW/HSW DRIVERS
5580M: Jie Yang <yang.jie@linux.intel.com>
Jim Davise5747e42015-06-25 15:01:58 -07005581L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Jie Yang97fa99a2015-02-02 16:55:27 +08005582S: Supported
Joe Perchese8e12252015-06-30 14:59:39 -07005583F: sound/soc/intel/common/sst-dsp*
5584F: sound/soc/intel/common/sst-firmware.c
5585F: sound/soc/intel/boards/broadwell.c
5586F: sound/soc/intel/haswell/
Jie Yang97fa99a2015-02-02 16:55:27 +08005587
Dave Jiang4ac13e12011-07-29 17:16:55 -07005588INTEL C600 SERIES SAS CONTROLLER DRIVER
5589M: Intel SCU Linux support <intel-linux-scu@intel.com>
Lukasz Doraufdc58132014-04-07 15:39:58 -07005590M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07005591L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07005592T: git git://git.code.sf.net/p/intel-sas/isci
5593S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07005594F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07005595
Alex Hungecc83e52015-12-18 23:31:10 +08005596INTEL HID EVENT DRIVER
5597M: Alex Hung <alex.hung@canonical.com>
5598L: platform-driver-x86@vger.kernel.org
5599S: Maintained
5600F: drivers/platform/x86/intel-hid.c
5601
Len Brown26717172010-03-08 14:07:30 -05005602INTEL IDLE DRIVER
5603M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02005604L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005605T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05005606S: Supported
5607F: drivers/idle/intel_idle.c
5608
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005609INTEL PSTATE DRIVER
Srinivas Pandruvada58ac1f62015-11-02 09:45:46 -08005610M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5611M: Len Brown <lenb@kernel.org>
Kristen Carlson Accardi7c1ac182014-12-15 15:58:24 -08005612L: linux-pm@vger.kernel.org
5613S: Supported
5614F: drivers/cpufreq/intel_pstate.c
5615
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005616INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08005617M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005618L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005620F: Documentation/fb/intelfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +09005621F: drivers/video/fbdev/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005622
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005624M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005625L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005626S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09005627F: drivers/video/fbdev/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305629INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005630M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005631L: platform-driver-x86@vger.kernel.org
Rafael J. Wysocki5ca92bd2013-10-10 23:03:44 +02005632W: https://01.org/linux-acpi
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005634F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05305635
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005636INTEL I/OAT DMA DRIVER
Dave Jiang18ebd562013-10-22 15:29:20 -07005637M: Dave Jiang <dave.jiang@intel.com>
Dan Williams08223d82014-08-19 06:07:56 -07005638R: Dan Williams <dan.j.williams@intel.com>
Dave Jiang18ebd562013-10-22 15:29:20 -07005639L: dmaengine@vger.kernel.org
5640Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005642F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07005643
David Woodhouse6c8909b2008-10-18 16:12:17 +01005644INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07005645M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01005646L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07005647T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01005648S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07005649F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07005650F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01005651
Dan Williamsb3e5f262007-08-07 10:26:35 -07005652INTEL IOP-ADMA DMA DRIVER
Dan Williams08223d82014-08-19 06:07:56 -07005653R: Dan Williams <dan.j.williams@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07005654S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07005655F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07005656
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005657INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Krzysztof Hałasa5529c2c2014-09-30 10:32:58 +02005658M: Krzysztof Halasa <khalasa@piap.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005660F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5661F: arch/arm/mach-ixp4xx/include/mach/npe.h
5662F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5663F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07005664F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07005665F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01005666
Michael Buesch844dd052006-06-26 00:24:59 -07005667INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005668M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07005669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005670F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005671
Jeff Kirsher2f302322015-03-25 17:01:03 -07005672INTEL ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005673M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005674R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5675R: Shannon Nelson <shannon.nelson@intel.com>
5676R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5677R: Don Skidmore <donald.c.skidmore@intel.com>
Jeff Kirsher6e80a182015-11-10 11:09:06 -08005678R: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher2f302322015-03-25 17:01:03 -07005679R: John Ronciak <john.ronciak@intel.com>
5680R: Mitch Williams <mitch.a.williams@intel.com>
5681L: intel-wired-lan@lists.osuosl.org
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00005682W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08005683W: http://e1000.sourceforge.net/
Jeff Kirsher2f302322015-03-25 17:01:03 -07005684Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5685T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5686T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00005688F: Documentation/networking/e100.txt
5689F: Documentation/networking/e1000.txt
5690F: Documentation/networking/e1000e.txt
5691F: Documentation/networking/igb.txt
5692F: Documentation/networking/igbvf.txt
5693F: Documentation/networking/ixgb.txt
5694F: Documentation/networking/ixgbe.txt
5695F: Documentation/networking/ixgbevf.txt
Jesse Brandeburg1bff6522013-09-11 08:40:23 +00005696F: Documentation/networking/i40e.txt
Greg Rose105bf2f2013-12-21 06:13:16 +00005697F: Documentation/networking/i40evf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07005698F: drivers/net/ethernet/intel/
Joe Perchesbc90d292014-02-25 13:35:53 -08005699F: drivers/net/ethernet/intel/*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
Linus Walleij0963d59b2013-10-19 15:39:17 +02005701INTEL-MID GPIO DRIVER
5702M: David Cohen <david.a.cohen@linux.intel.com>
5703L: linux-gpio@vger.kernel.org
5704S: Maintained
5705F: drivers/gpio/gpio-intel-mid.c
5706
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005707INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5708M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005709L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04005710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005711F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07005712F: Documentation/networking/README.ipw2200
Kalle Valo367a1092015-11-17 20:24:59 +02005713F: drivers/net/wireless/intel/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06005714
Alexander Shishkin5760b0a2015-09-22 15:47:20 +03005715INTEL(R) TRACE HUB
5716M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5717S: Supported
5718F: Documentation/trace/intel_th.txt
5719F: drivers/hwtracing/intel_th/
5720
Shane Wang4bd96a72010-03-10 14:36:10 +08005721INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Wei, Gang74b18e12015-12-02 07:07:20 +00005722M: Ning Sun <ning.sun@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08005723L: tboot-devel@lists.sourceforge.net
5724W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07005725T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08005726S: Supported
5727F: Documentation/intel_txt.txt
5728F: include/linux/tboot.h
5729F: arch/x86/kernel/tboot.c
5730
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005731INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07005732M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005733M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -07005734L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005735S: Supported
5736W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07005737F: Documentation/wimax/README.i2400m
5738F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005739F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08005740
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005741INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5742M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005743L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01005744S: Supported
Kalle Valo7ac9a362015-11-17 20:37:11 +02005745F: drivers/net/wireless/intel/iwlegacy/
Wey-Yi Guyefa31442011-02-22 16:43:05 -08005746
Zhu Yib481de92007-09-25 17:54:57 -07005747INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07005748M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02005749M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Johannes Berg7b9aebf2015-09-08 17:03:20 +02005750M: Intel Linux Wireless <linuxwifi@intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07005751L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07005752W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07005753T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07005754S: Supported
Kalle Valoe705c122015-11-17 20:57:38 +02005755F: drivers/net/wireless/intel/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07005756
Tomas Winklerde8fe022012-05-09 16:39:02 +03005757INTEL MANAGEMENT ENGINE (mei)
5758M: Tomas Winkler <tomas.winkler@intel.com>
5759L: linux-kernel@vger.kernel.org
5760S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005761F: include/uapi/linux/mei.h
Tomas Winkler5069288b2015-06-13 22:11:33 +03005762F: include/linux/mei_cl_bus.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03005763F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08005764F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03005765
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005766INTEL MIC DRIVERS (mic)
5767M: Sudeep Dutt <sudeep.dutt@intel.com>
5768M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5769S: Supported
5770W: https://github.com/sudeepdutt/mic
5771W: http://software.intel.com/en-us/mic-developer
5772F: include/linux/mic_bus.h
5773F: include/linux/scif.h
5774F: include/uapi/linux/mic_common.h
5775F: include/uapi/linux/mic_ioctl.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005776F: include/uapi/linux/scif_ioctl.h
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005777F: drivers/misc/mic/
5778F: drivers/dma/mic_x100_dma.c
5779F: drivers/dma/mic_x100_dma.h
Fengguang Wu9f273c22016-01-20 15:03:25 -08005780F: Documentation/mic/
Sudeep Dutt50ceb982015-10-13 11:21:19 -07005781
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005782INTEL PMC/P-Unit IPC DRIVER
qipeng.zha0a8b8352015-06-27 00:32:15 +08005783M: Zha Qipeng<qipeng.zha@intel.com>
5784L: platform-driver-x86@vger.kernel.org
5785S: Maintained
5786F: drivers/platform/x86/intel_pmc_ipc.c
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005787F: drivers/platform/x86/intel_punit_ipc.c
qipeng.zha0a8b8352015-06-27 00:32:15 +08005788F: arch/x86/include/asm/intel_pmc_ipc.h
Qipeng Zhafdca4f12015-12-11 22:45:00 +08005789F: arch/x86/include/asm/intel_punit_ipc.h
qipeng.zha0a8b8352015-06-27 00:32:15 +08005790
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305791INTEL TELEMETRY DRIVER
5792M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5793L: platform-driver-x86@vger.kernel.org
5794S: Maintained
Souvik Kumar Chakravarty378f9562016-01-12 16:00:33 +05305795F: arch/x86/include/asm/intel_telemetry.h
Souvik Kumar Chakravartyf1fc3cd2016-01-21 09:30:50 +05305796F: drivers/platform/x86/intel_telemetry*
Ralf Baechlecb109a02007-08-30 23:56:30 -07005797
Joe Perches8b58be82009-07-29 15:04:30 -07005798IOC3 ETHERNET DRIVER
Ralf Baechled39e0722010-10-19 18:32:41 +01005799M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlecb109a02007-08-30 23:56:30 -07005800L: linux-mips@linux-mips.org
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005801S: Maintained
Ralf Baechlecb109a02007-08-30 23:56:30 -07005802F: drivers/net/ethernet/sgi/ioc3-eth.c
Stephen Warren0b6e8562013-09-13 13:10:27 -06005803
5804IOC3 SERIAL DRIVER
5805M: Pat Gefre <pfg@sgi.com>
5806L: linux-serial@vger.kernel.org
5807S: Maintained
5808F: drivers/tty/serial/ioc3_serial.c
5809
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005810IOMMU DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005811M: Joerg Roedel <joro@8bytes.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812L: iommu@lists.linux-foundation.org
Joe Perches679655d2009-04-07 20:44:32 -07005813T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814S: Maintained
Francois Romieu1202d6f2007-09-17 17:13:55 -07005815F: drivers/iommu/
Joe Perches8b58be82009-07-29 15:04:30 -07005816
5817IP MASQUERADING
Francois Romieu1202d6f2007-09-17 17:13:55 -07005818M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5819S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07005820F: net/ipv4/netfilter/ipt_MASQUERADE.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07005821
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005822IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005823M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005824L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005825S: Maintained
Dennis Dalessandro6f9b3892015-07-30 09:25:42 -04005826F: drivers/staging/rdma/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08005827
Corey Minyard4409ebe2006-04-20 02:43:12 -07005828IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005829M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08005830L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07005831W: http://openipmi.sourceforge.net/
5832S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005833F: Documentation/IPMI.txt
5834F: drivers/char/ipmi/
5835F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005836F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07005837
Kenneth Westfield2d800892015-03-03 16:21:50 -08005838QCOM AUDIO (ASoC) DRIVERS
5839M: Patrick Lai <plai@codeaurora.org>
5840M: Banajit Goswami <bgoswami@codeaurora.org>
5841L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5842S: Supported
5843F: sound/soc/qcom/
5844
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005845IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005846M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005847L: linux-scsi@vger.kernel.org
5848W: http://www.adaptec.com/
5849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005850F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005851
5852IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07005853M: Wensong Zhang <wensong@linux-vs.org>
5854M: Simon Horman <horms@verge.net.au>
5855M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005856L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005857L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08005859T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5860T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
Joe Perches679655d2009-04-07 20:44:32 -07005861F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07005862F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005863F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07005864F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865
Randy Dunlape7839f22008-10-12 16:11:45 -07005866IPWIRELESS DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02005867M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07005868M: David Sterba <dsterba@suse.com>
Jiri Kosina92094aa2011-11-13 21:41:00 +01005869S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08005870F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01005871
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005872IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005873M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005874L: netdev@vger.kernel.org
5875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005876F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005877F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07005878F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005879
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005881M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07005882L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01005883L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07005885S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02005886T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07005887F: Documentation/networking/irda.txt
5888F: drivers/net/irda/
5889F: include/net/irda/
5890F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005892IRQ SUBSYSTEM
5893M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01005894L: linux-kernel@vger.kernel.org
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005895S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005896T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005897F: kernel/irq/
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005898
5899IRQCHIP DRIVERS
5900M: Thomas Gleixner <tglx@linutronix.de>
5901M: Jason Cooper <jason@lakedaemon.net>
Thomas Gleixner54d9ffc2015-07-30 12:38:06 +02005902M: Marc Zyngier <marc.zyngier@arm.com>
Jason Cooper2ed9fd22014-05-13 18:47:01 +00005903L: linux-kernel@vger.kernel.org
5904S: Maintained
5905T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5906T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
Geert Uytterhoeven5b5a9062014-08-28 09:56:47 +02005907F: Documentation/devicetree/bindings/interrupt-controller/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01005908F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02005909
Grant Likely7ab3a832012-02-14 14:06:47 -07005910IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005911M: Jiang Liu <jiang.liu@linux.intel.com>
5912M: Marc Zyngier <marc.zyngier@arm.com>
Grant Likely7ab3a832012-02-14 14:06:47 -07005913S: Maintained
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005914T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Grant Likely7ab3a832012-02-14 14:06:47 -07005915F: Documentation/IRQ-domain.txt
5916F: include/linux/irqdomain.h
5917F: kernel/irq/irqdomain.c
Thomas Gleixnerb09dec22015-07-30 12:40:55 +02005918F: kernel/irq/msi.c
Grant Likely7ab3a832012-02-14 14:06:47 -07005919
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005920ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07005921M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005923F: Documentation/isapnp.txt
5924F: drivers/pnp/isapnp/
5925F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005926
Hans Verkuild39b84202012-11-23 07:07:02 -03005927ISA RADIO MODULE
5928M: Hans Verkuil <hverkuil@xs4all.nl>
5929L: linux-media@vger.kernel.org
5930T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02005931W: https://linuxtv.org
Hans Verkuild39b84202012-11-23 07:07:02 -03005932S: Maintained
5933F: drivers/media/radio/radio-isa*
5934
Harry Wei71a6d0a2011-05-11 15:13:33 -07005935iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5936M: Peter Jones <pjones@redhat.com>
5937M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5938S: Maintained
5939F: drivers/firmware/iscsi_ibft*
5940
Mike Christie14816b1e2007-11-28 16:22:06 -08005941ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07005942M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08005943L: open-iscsi@googlegroups.com
5944W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07005945T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08005946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005947F: drivers/scsi/*iscsi*
5948F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08005949
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005950ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5951M: Or Gerlitz <ogerlitz@mellanox.com>
Or Gerlitzb261aea2014-10-01 14:02:17 +03005952M: Sagi Grimberg <sagig@mellanox.com>
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005953M: Roi Dayan <roid@mellanox.com>
5954L: linux-rdma@vger.kernel.org
5955S: Supported
5956W: http://www.openfabrics.org
5957W: www.open-iscsi.org
5958Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches14430812013-09-11 14:23:50 -07005959F: drivers/infiniband/ulp/iser/
Or Gerlitz1e65eb42013-05-08 12:21:19 +00005960
Sagi Grimberg2b70e5f2015-01-07 12:54:44 +02005961ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5962M: Sagi Grimberg <sagig@mellanox.com>
5963T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5964L: linux-rdma@vger.kernel.org
5965L: target-devel@vger.kernel.org
5966S: Supported
5967W: http://www.linux-iscsi.org
5968F: drivers/infiniband/ulp/isert
5969
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005972L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07005973L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07005975T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005977F: Documentation/isdn/
5978F: drivers/isdn/
5979F: include/linux/isdn.h
5980F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005981F: include/uapi/linux/isdn.h
5982F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
5984ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07005985M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07005986L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987W: http://www.melware.de
5988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005989F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990
Jean Delvared6248702010-03-05 22:17:20 +01005991IT87 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07005992M: Jean Delvare <jdelvare@suse.com>
Jean Delvared6248702010-03-05 22:17:20 +01005993L: lm-sensors@lm-sensors.org
5994S: Maintained
5995F: Documentation/hwmon/it87
5996F: drivers/hwmon/it87.c
5997
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005998IT913X MEDIA DRIVER
Antti Palosaarid7104bf2013-03-09 22:58:13 -03005999M: Antti Palosaari <crope@iki.fi>
6000L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006001W: https://linuxtv.org
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006002W: http://palosaari.fi/linux/
6003Q: http://patchwork.linuxtv.org/project/linux-media/list/
6004T: git git://linuxtv.org/anttip/media_tree.git
6005S: Maintained
Antti Palosaari249c6972014-09-01 19:44:59 -03006006F: drivers/media/tuners/it913x*
Antti Palosaarid7104bf2013-03-09 22:58:13 -03006007
Hans Verkuil91821ff2007-12-02 09:35:33 -03006008IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03006009M: Andy Walls <awalls@md.metrocast.net>
Joe Perches7b212ed2014-12-10 15:51:24 -08006010L: ivtv-devel@ivtvdriver.org (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006011L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006012T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03006013W: http://www.ivtvdriver.org
6014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006015F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006016F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006017F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03006018
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006019IX2505V MEDIA DRIVER
6020M: Malcolm Priestley <tvboxspy@gmail.com>
6021L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006022W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006023Q: http://patchwork.linuxtv.org/project/linux-media/list/
6024S: Maintained
6025F: drivers/media/dvb-frontends/ix2505v*
6026
Guenter Roeck4453d732010-08-09 17:21:08 -07006027JC42.4 TEMPERATURE SENSOR DRIVER
6028M: Guenter Roeck <linux@roeck-us.net>
6029L: lm-sensors@lm-sensors.org
6030S: Maintained
6031F: drivers/hwmon/jc42.c
6032F: Documentation/hwmon/jc42
6033
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006034JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06006035M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006036L: jfs-discussion@lists.sourceforge.net
6037W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07006038T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05006039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006040F: Documentation/filesystems/jfs.txt
6041F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006042
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006043JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006044M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006045L: netdev@vger.kernel.org
6046S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07006047F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08006048
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006050M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04006051L: linux-mtd@lists.infradead.org
6052W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006054F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006055F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
Theodore Ts'od183e112011-05-26 09:53:09 -04006057JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6058M: "Theodore Ts'o" <tytso@mit.edu>
Jan Karac290ea02015-06-18 16:52:29 +02006059M: Jan Kara <jack@suse.com>
Theodore Ts'od183e112011-05-26 09:53:09 -04006060L: linux-ext4@vger.kernel.org
6061S: Maintained
6062F: fs/jbd2/
6063F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07006064
Mikhail Ulyanov207dab52015-07-22 08:23:05 -03006065JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6066M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6067L: linux-media@vger.kernel.org
6068S: Maintained
6069F: drivers/media/platform/rcar_jpu.c
6070
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006071JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03006072M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006073L: linux-serial@vger.kernel.org
6074S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006075F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03006076
Clemens Ladischaf399172011-01-10 16:32:54 +01006077K10TEMP HARDWARE MONITORING DRIVER
6078M: Clemens Ladisch <clemens@ladisch.de>
6079L: lm-sensors@lm-sensors.org
6080S: Maintained
6081F: Documentation/hwmon/k10temp
6082F: drivers/hwmon/k10temp.c
6083
Rudolf Marek4660cb32006-10-08 22:01:26 +02006084K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006085M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02006086L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006088F: Documentation/hwmon/k8temp
6089F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
6091KCONFIG
Michal Marek5eb1f992013-10-30 12:02:27 +01006092M: "Yann E. MORIN" <yann.morin.1998@free.fr>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006093L: linux-kbuild@vger.kernel.org
Joe Perchescea83212014-03-03 15:38:38 -08006094T: git git://gitorious.org/linux-kconfig/linux-kconfig
Michal Marek5eb1f992013-10-30 12:02:27 +01006095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006096F: Documentation/kbuild/kconfig-language.txt
6097F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098
Vivek Goyalea6c2082006-05-20 14:59:55 -07006099KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07006100M: Vivek Goyal <vgoyal@redhat.com>
6101M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07006102L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07006103W: http://lse.sourceforge.net/kdump/
6104S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006105F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07006106
Hans Verkuilf41bf022012-11-23 07:04:36 -03006107KEENE FM RADIO TRANSMITTER DRIVER
6108M: Hans Verkuil <hverkuil@xs4all.nl>
6109L: linux-media@vger.kernel.org
6110T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006111W: https://linuxtv.org
Hans Verkuilf41bf022012-11-23 07:04:36 -03006112S: Maintained
6113F: drivers/media/radio/radio-keene*
6114
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07006116M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08006117L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006119F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120
Michal Marek70fb7ba2010-01-29 14:22:43 +01006121KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Jiri Slabyd8130622015-07-17 16:23:20 -07006122M: Michal Marek <mmarek@suse.com>
Joe Perches08deed12012-03-23 15:01:57 -07006123T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6124T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02006125L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08006126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: Documentation/kbuild/
6128F: Makefile
6129F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01006130F: scripts/basic/
6131F: scripts/mk*
6132F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
6134KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07006135L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07006136W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07006137S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04006139KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: "J. Bruce Fields" <bfields@fieldses.org>
J. Bruce Fields883985f62015-08-24 16:44:40 -04006141M: Jeff Layton <jlayton@poochiereds.net>
Neil Brown16141c02007-12-11 16:16:12 -08006142L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143W: http://nfs.sourceforge.net/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006144T: git git://linux-nfs.org/~bfields/linux.git
NeilBrown98fac232007-01-26 00:56:57 -08006145S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006146F: fs/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006147F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07006148F: fs/lockd/
6149F: fs/nfs_common/
6150F: net/sunrpc/
6151F: include/linux/lockd/
6152F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006153F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
Shuah Khan13b122b2014-10-13 15:51:21 -07006155KERNEL SELFTEST FRAMEWORK
6156M: Shuah Khan <shuahkh@osg.samsung.com>
6157L: linux-api@vger.kernel.org
6158T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6159S: Maintained
6160F: tools/testing/selftests
6161
Avi Kivity426d62e2006-12-13 00:34:03 -08006162KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov0a00a772013-11-27 16:35:22 +02006163M: Gleb Natapov <gleb@kernel.org>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006164M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006165L: kvm@vger.kernel.org
Ramkumar Ramachandrae3e58472013-10-31 16:16:34 +05306166W: http://www.linux-kvm.org
Ramkumar Ramachandraa94b40a2013-10-31 16:29:23 +05306167T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
Avi Kivity426d62e2006-12-13 00:34:03 -08006168S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02006169F: Documentation/*/kvm*.txt
6170F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07006171F: arch/*/kvm/
Christian Borntraeger1662e862015-03-12 14:59:26 +01006172F: arch/x86/kernel/kvm.c
6173F: arch/x86/kernel/kvmclock.c
Joe Perches679655d2009-04-07 20:44:32 -07006174F: arch/*/include/asm/kvm*
6175F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006176F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07006177F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08006178
Joerg Roedelad8003d2008-09-10 20:01:07 +02006179KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01006180M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006181L: kvm@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006182W: http://www.linux-kvm.org/
Joerg Roedel7de609c2012-10-29 19:08:21 +01006183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006184F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07006185F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006186
Hollis Blanchard513014b2008-04-16 23:28:08 -05006187KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Jiri Slabyd8130622015-07-17 16:23:20 -07006188M: Alexander Graf <agraf@suse.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03006189L: kvm-ppc@vger.kernel.org
Dirk Müller038161d2015-10-01 13:46:01 +02006190W: http://www.linux-kvm.org/
Michael Ellerman6a7f9722012-10-15 19:01:05 +00006191T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05006192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006193F: arch/powerpc/include/asm/kvm*
6194F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05006195
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006196KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07006197M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02006198M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006199L: linux-s390@vger.kernel.org
6200W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006201T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006202S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006203F: Documentation/s390/kvm.txt
6204F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07006205F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01006206
Christoffer Dalla7494742013-01-20 18:42:26 -05006207KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006208M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006209M: Marc Zyngier <marc.zyngier@arm.com>
6210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Christoffer Dalla7494742013-01-20 18:42:26 -05006211L: kvmarm@lists.cs.columbia.edu
6212W: http://systems.cs.columbia.edu/projects/kvm-arm
Fengguang Wu1b1ebe82015-12-18 15:51:44 +08006213T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
Christoffer Dall0f4ca792013-06-21 13:54:36 -07006214S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05006215F: arch/arm/include/uapi/asm/kvm*
6216F: arch/arm/include/asm/kvm*
6217F: arch/arm/kvm/
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006218F: virt/kvm/arm/
6219F: include/kvm/arm_*
Christoffer Dalla7494742013-01-20 18:42:26 -05006220
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006221KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
Marc Zyngier5c8818b2014-04-26 03:43:01 -07006222M: Christoffer Dall <christoffer.dall@linaro.org>
Marc Zyngier6394a3e2013-04-02 17:49:40 +01006223M: Marc Zyngier <marc.zyngier@arm.com>
6224L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6225L: kvmarm@lists.cs.columbia.edu
6226S: Maintained
6227F: arch/arm64/include/uapi/asm/kvm*
6228F: arch/arm64/include/asm/kvm*
6229F: arch/arm64/kvm/
6230
James Hoganbfd3d532015-12-16 23:49:41 +00006231KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6232M: James Hogan <james.hogan@imgtec.com>
6233L: linux-mips@linux-mips.org
6234S: Supported
6235F: arch/mips/include/uapi/asm/kvm*
6236F: arch/mips/include/asm/kvm*
6237F: arch/mips/kvm/
6238
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006239KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07006240M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07006241W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07006242L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006244F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006245F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07006246F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07006247
David Howellse9714612010-03-29 23:42:09 +01006248KEYS/KEYRINGS:
6249M: David Howells <dhowells@redhat.com>
David Howellsaa62eff2015-08-11 13:29:48 +01006250L: keyrings@vger.kernel.org
David Howellse9714612010-03-29 23:42:09 +01006251S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006252F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01006253F: include/linux/key.h
6254F: include/linux/key-type.h
6255F: include/keys/
6256F: security/keys/
6257
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006258KEYS-TRUSTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006259M: David Safford <safford@us.ibm.com>
6260M: Mimi Zohar <zohar@linux.vnet.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006261L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006262L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006263S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006264F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006265F: include/keys/trusted-type.h
6266F: security/keys/trusted.c
6267F: security/keys/trusted.h
6268
6269KEYS-ENCRYPTED
Mimi Zohar74dd7442014-02-27 08:44:45 -05006270M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6271M: David Safford <safford@us.ibm.com>
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006272L: linux-security-module@vger.kernel.org
David Howellsaa62eff2015-08-11 13:29:48 +01006273L: keyrings@vger.kernel.org
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006274S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07006275F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006276F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08006277F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05006278
Jason Wessel5b778da2010-05-20 21:04:28 -05006279KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07006280M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05006281W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006282L: kgdb-bugreport@lists.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -08006283T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006285F: Documentation/DocBook/kgdb.tmpl
6286F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006287F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05006288F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07006289F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05006290F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05006291
Pekka Enberg456db8c2008-04-28 22:47:29 +03006292KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07006293M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006294M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03006295S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08006296F: Documentation/kmemcheck.txt
6297F: arch/x86/include/asm/kmemcheck.h
6298F: arch/x86/mm/kmemcheck/
6299F: include/linux/kmemcheck.h
6300F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03006301
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006302KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07006303M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01006304S: Maintained
6305F: Documentation/kmemleak.txt
6306F: include/linux/kmemleak.h
6307F: mm/kmemleak.c
6308F: mm/kmemleak-test.c
6309
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006310KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07006311M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6312M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6313M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07006314M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006316F: Documentation/kprobes.txt
6317F: include/linux/kprobes.h
6318F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07006319
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006320KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07006322W: http://miguelojeda.es/auxdisplay.htm
6323W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006325F: Documentation/auxdisplay/ks0108
6326F: drivers/auxdisplay/ks0108.c
6327F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08006328
David Ahern1b69c6d2015-09-29 20:07:11 -07006329L3MDEV
6330M: David Ahern <dsa@cumulusnetworks.com>
6331L: netdev@vger.kernel.org
6332S: Maintained
6333F: net/l3mdev
6334F: include/net/l3mdev.h
6335
John Crispin9ca44352016-01-04 20:28:12 +01006336LANTIQ MIPS ARCHITECTURE
6337M: John Crispin <blogic@openwrt.org>
6338L: linux-mips@linux-mips.org
6339S: Maintained
6340F: arch/mips/lantiq
6341
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07006344S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006345F: Documentation/networking/lapb-module.txt
6346F: include/*/lapb.h
6347F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348
6349LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07006350M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351L: linux-scsi@vger.kernel.org
6352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006353F: Documentation/scsi/53c700.txt
6354F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355
Richard Purdie263de9b2006-05-15 09:44:16 -07006356LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006357M: Richard Purdie <rpurdie@rpsys.net>
Andrew Morton48b945a2015-05-05 16:23:30 -07006358M: Jacek Anaszewski <j.anaszewski@samsung.com>
Bryan Wuaa69cb82012-05-31 19:51:37 +08006359L: linux-leds@vger.kernel.org
Jacek Anaszewskib8926ba2015-08-20 08:59:35 +02006360T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07006361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006362F: drivers/leds/
6363F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07006364
Jean Delvareb0461a42011-06-15 15:08:46 -07006365LEGACY EEPROM DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006366M: Jean Delvare <jdelvare@suse.com>
Jean Delvareb0461a42011-06-15 15:08:46 -07006367S: Maintained
6368F: Documentation/misc-devices/eeprom
6369F: drivers/misc/eeprom/eeprom.c
6370
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07006372M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373L: legousb-devel@lists.sourceforge.net
6374W: http://legousb.sourceforge.net/
6375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006376F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377
Michael Krufky055616a2012-10-02 00:56:06 -03006378LG2160 MEDIA DRIVER
6379M: Michael Krufky <mkrufky@linuxtv.org>
6380L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006381W: https://linuxtv.org
Michael Krufky055616a2012-10-02 00:56:06 -03006382W: http://github.com/mkrufky
6383Q: http://patchwork.linuxtv.org/project/linux-media/list/
6384T: git git://linuxtv.org/mkrufky/tuners.git
6385S: Maintained
6386F: drivers/media/dvb-frontends/lg2160.*
6387
Michael Krufky6f0e7722012-10-02 00:56:00 -03006388LGDT3305 MEDIA DRIVER
6389M: Michael Krufky <mkrufky@linuxtv.org>
6390L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006391W: https://linuxtv.org
Michael Krufky6f0e7722012-10-02 00:56:00 -03006392W: http://github.com/mkrufky
6393Q: http://patchwork.linuxtv.org/project/linux-media/list/
6394T: git git://linuxtv.org/mkrufky/tuners.git
6395S: Maintained
6396F: drivers/media/dvb-frontends/lgdt3305.*
6397
Rusty Russell568a17f2007-10-25 14:12:24 +10006398LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07006399M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006400L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10006401W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06006402S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08006403F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07006404F: arch/x86/lguest/
6405F: drivers/lguest/
6406F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08006407F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10006408
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006409LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6410M: Tejun Heo <tj@kernel.org>
6411L: linux-ide@vger.kernel.org
6412T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6413S: Maintained
6414F: drivers/ata/
6415F: include/linux/ata.h
6416F: include/linux/libata.h
6417
6418LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
Viresh Kumarda899472015-07-17 16:23:50 -07006419M: Viresh Kumar <vireshk@kernel.org>
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006420L: linux-ide@vger.kernel.org
6421T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6422S: Maintained
6423F: include/linux/pata_arasan_cf_data.h
6424F: drivers/ata/pata_arasan_cf.c
6425
Bartlomiej Zolnierkiewiczc7fa0562014-12-02 17:29:08 +01006426LIBATA PATA DRIVERS
6427M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6428M: Tejun Heo <tj@kernel.org>
6429L: linux-ide@vger.kernel.org
6430T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6431S: Maintained
6432F: drivers/ata/pata_*.c
6433F: drivers/ata/ata_generic.c
6434
Tejun Heo32ac7cb2015-01-06 18:36:44 -05006435LIBATA SATA AHCI PLATFORM devices support
6436M: Hans de Goede <hdegoede@redhat.com>
6437M: Tejun Heo <tj@kernel.org>
6438L: linux-ide@vger.kernel.org
6439T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6440S: Maintained
6441F: drivers/ata/ahci_platform.c
6442F: drivers/ata/libahci_platform.c
6443F: include/linux/ahci_platform.h
6444
6445LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6446M: Mikael Pettersson <mikpelinux@gmail.com>
6447L: linux-ide@vger.kernel.org
6448T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6449S: Maintained
6450F: drivers/ata/sata_promise.*
6451
Sasha Levin1acd4372013-06-13 18:41:24 -04006452LIBLOCKDEP
6453M: Sasha Levin <sasha.levin@oracle.com>
6454S: Maintained
6455F: tools/lib/lockdep/
6456
Dan Williamsbc301962015-06-25 04:48:19 -04006457LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6458M: Dan Williams <dan.j.williams@intel.com>
6459L: linux-nvdimm@lists.01.org
6460Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08006461T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
Dan Williamsbc301962015-06-25 04:48:19 -04006462S: Supported
6463F: drivers/nvdimm/*
6464F: include/linux/nd.h
6465F: include/linux/libnvdimm.h
6466F: include/uapi/linux/ndctl.h
6467
6468LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6469M: Ross Zwisler <ross.zwisler@linux.intel.com>
6470L: linux-nvdimm@lists.01.org
6471Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6472S: Supported
6473F: drivers/nvdimm/blk.c
6474F: drivers/nvdimm/region_devs.c
6475F: drivers/acpi/nfit*
6476
6477LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6478M: Vishal Verma <vishal.l.verma@intel.com>
6479L: linux-nvdimm@lists.01.org
6480Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6481S: Supported
6482F: drivers/nvdimm/btt*
6483
6484LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6485M: Ross Zwisler <ross.zwisler@linux.intel.com>
6486L: linux-nvdimm@lists.01.org
6487Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6488S: Supported
6489F: drivers/nvdimm/pmem.c
Ross Zwislerb864bc12015-07-10 11:06:10 -06006490F: include/linux/pmem.h
Ross Zwisler40603522015-08-18 13:55:36 -06006491F: arch/*/include/asm/pmem.h
Dan Williamsbc301962015-06-25 04:48:19 -04006492
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006493LIGHTNVM PLATFORM SUPPORT
6494M: Matias Bjorling <mb@lightnvm.io>
6495W: http://github/OpenChannelSSD
Matias Bjørling4ead1a22015-11-16 15:34:35 +01006496L: linux-block@vger.kernel.org
Matias Bjørlingcd9e9802015-10-28 19:54:55 +01006497S: Maintained
6498F: drivers/lightnvm/
6499F: include/linux/lightnvm.h
6500F: include/uapi/linux/lightnvm.h
6501
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07006503M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504W: http://www.ibm.com/linux/ltc/projects/ppc
6505S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006506F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507
Paul Mackerras852bb9f2008-07-04 21:04:42 +10006508LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006509M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6510M: Paul Mackerras <paulus@samba.org>
Benjamin Herrenschmidtea668932014-07-28 13:54:37 +10006511M: Michael Ellerman <mpe@ellerman.id.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006513L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006514Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Michael Ellerman99580842015-07-07 19:16:23 +10006515T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00006517F: Documentation/powerpc/
6518F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519
6520LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006521M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006523L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006525F: arch/powerpc/platforms/powermac/
6526F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527
Grant Likely77a76362008-07-12 12:11:43 -06006528LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00006529M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006530L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschincba5b1c2014-10-02 16:16:59 -07006531T: git git://git.denx.de/linux-denx-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006533F: arch/powerpc/platforms/512x/
6534F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535
6536LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches49e7d9d2015-04-15 16:17:31 -07006537M: Alistair Popple <alistair@popple.id.au>
Joe Perches8b58be82009-07-29 15:04:30 -07006538M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006540L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006542F: arch/powerpc/platforms/40x/
6543F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544
Grant Likely260c02a2007-10-02 12:15:34 +10006545LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006546L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01006547S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00006548F: arch/powerpc/*/*virtex*
6549F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550
Tom Rinie93adf12005-07-26 12:49:53 -07006551LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07006552M: Vitaly Bordug <vitb@kernel.crashing.org>
Tom Rinie93adf12005-07-26 12:49:53 -07006553W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006554L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07006555S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07006556F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07006557
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Scott Wood44451d42015-12-31 12:57:26 -06006559M: Scott Wood <oss@buserror.net>
Joe Perches8b58be82009-07-29 15:04:30 -07006560M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01006561W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006562L: linuxppc-dev@lists.ozlabs.org
Scott Wooda1e0fb42014-05-05 20:46:43 -05006563T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
Jim Cromiece00f852006-11-30 04:49:44 +01006564S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006565F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03006566F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567
Olof Johanssonab06ff32006-09-06 14:44:54 -05006568LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07006569M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006570L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00006571S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00006572F: arch/powerpc/platforms/pasemi/
6573F: drivers/*/*pasemi*
6574F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05006575
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08006578L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579S: Supported
6580
Harry Weia23ce6d2011-02-11 16:52:20 +01006581LIS3LV02D ACCELEROMETER DRIVER
6582M: Eric Piel <eric.piel@tremplin-utc.net>
6583S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01006584F: Documentation/misc-devices/lis3lv02d
6585F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07006586F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01006587
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006588LIVE PATCHING
6589M: Josh Poimboeuf <jpoimboe@redhat.com>
6590M: Seth Jennings <sjenning@redhat.com>
Jiri Kosinae5f64502015-08-09 09:11:34 +02006591M: Jiri Kosina <jikos@kernel.org>
Jiri Slabyd8130622015-07-17 16:23:20 -07006592M: Vojtech Pavlik <vojtech@suse.com>
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006593S: Maintained
6594F: kernel/livepatch/
6595F: include/linux/livepatch.h
6596F: arch/x86/include/asm/livepatch.h
6597F: arch/x86/kernel/livepatch.c
6598F: Documentation/ABI/testing/sysfs-kernel-livepatch
Seth Jennings13d1cf72014-12-16 11:58:20 -06006599F: samples/livepatch/
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006600L: live-patching@vger.kernel.org
Jiri Kosina74d50da2014-12-22 13:40:20 +01006601T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
Seth Jenningsb700e7f2014-12-16 11:58:19 -06006602
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006603LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07006604M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006606F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006607F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07006608F: include/net/llc*
6609F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006610
Adrien Demarez4e233cb2009-12-09 20:35:50 +01006611LM73 HARDWARE MONITOR DRIVER
6612M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6613L: lm-sensors@lm-sensors.org
6614S: Maintained
6615F: drivers/hwmon/lm73.c
6616
Jean Delvare156e2d12011-07-25 21:46:11 +02006617LM78 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006618M: Jean Delvare <jdelvare@suse.com>
Jean Delvare156e2d12011-07-25 21:46:11 +02006619L: lm-sensors@lm-sensors.org
6620S: Maintained
6621F: Documentation/hwmon/lm78
6622F: drivers/hwmon/lm78.c
6623
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624LM83 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006625M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006626L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006628F: Documentation/hwmon/lm83
6629F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630
6631LM90 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07006632M: Jean Delvare <jdelvare@suse.com>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02006633L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006635F: Documentation/hwmon/lm90
Wei Niaae7bce2013-11-15 10:40:39 +01006636F: Documentation/devicetree/bindings/hwmon/lm90.txt
Joe Perches679655d2009-04-07 20:44:32 -07006637F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638
Guenter Roeck917cc4e2013-05-19 20:44:27 -07006639LM95234 HARDWARE MONITOR DRIVER
6640M: Guenter Roeck <linux@roeck-us.net>
6641L: lm-sensors@lm-sensors.org
6642S: Maintained
6643F: Documentation/hwmon/lm95234
6644F: drivers/hwmon/lm95234.c
6645
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006646LME2510 MEDIA DRIVER
6647M: Malcolm Priestley <tvboxspy@gmail.com>
6648L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006649W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006650Q: http://patchwork.linuxtv.org/project/linux-media/list/
6651S: Maintained
6652F: drivers/media/usb/dvb-usb-v2/lmedm04*
6653
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006654LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07006655M: Peter Zijlstra <peterz@infradead.org>
6656M: Ingo Molnar <mingo@redhat.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01006657L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006658T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006659S: Maintained
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -07006660F: Documentation/locking/lockdep*.txt
6661F: Documentation/locking/lockstat.txt
Joe Perches679655d2009-04-07 20:44:32 -07006662F: include/linux/lockdep.h
Joe Perches7486d6d2013-11-14 14:59:45 -08006663F: kernel/locking/
Peter Zijlstra512e67f2007-10-11 22:11:11 +02006664
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006665LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07006666M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01006667L: linux-ntfs-dev@lists.sourceforge.net
6668W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006670F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08006671F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672
Joern Engelef6ada32009-11-20 22:17:12 +01006673LogFS
6674M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05306675M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01006676L: logfs@logfs.org
6677W: logfs.org
6678S: Maintained
6679F: fs/logfs/
6680
Roland Stiggeb62d7942013-04-02 19:37:11 +02006681LPC32XX MACHINE SUPPORT
6682M: Roland Stigge <stigge@antcom.de>
6683L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6684S: Maintained
6685F: arch/arm/mach-lpc32xx/
6686
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006687LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Reddy, Sreekanth3a980502014-06-13 20:48:04 +05306688M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6689M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6690M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6691M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6692L: MPT-FusionLinux.pdl@avagotech.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006693L: linux-scsi@vger.kernel.org
6694W: http://www.lsilogic.com/support
6695S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006696F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05306697F: drivers/scsi/mpt2sas/
6698F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07006699
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07006701M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702L: linux-scsi@vger.kernel.org
6703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006704F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705
Guenter Roecke5f5c992010-06-25 11:59:54 -07006706LTC4261 HARDWARE MONITOR DRIVER
6707M: Guenter Roeck <linux@roeck-us.net>
6708L: lm-sensors@lm-sensors.org
6709S: Maintained
6710F: Documentation/hwmon/ltc4261
6711F: drivers/hwmon/ltc4261.c
6712
Mike Frysinger81365c32008-10-29 14:01:12 -07006713LTP (Linux Test Project)
Joe Perches28b8e8d2010-03-23 13:35:20 -07006714M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006715M: Cyril Hrubis <chrubis@suse.cz>
Cyril Hrubis05261092015-09-17 16:01:57 -07006716M: Wanlong Gao <wanlong.gao@gmail.com>
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006717M: Jan Stancek <jstancek@redhat.com>
6718M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6719M: Alexey Kodanev <alexey.kodanev@oracle.com>
Cyril Hrubis05261092015-09-17 16:01:57 -07006720L: ltp@lists.linux.it (subscribers-only)
Cyril Hrubisf2eb7f62014-05-09 15:36:58 -07006721W: http://linux-test-project.github.io/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07006722T: git git://github.com/linux-test-project/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07006723S: Maintained
6724
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006725M32R ARCHITECTURE
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006726W: http://www.linux-m32r.org/
Michael Opdenackerb4174862014-10-13 15:51:26 -07006727S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006728F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07006729
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07006731M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732L: linux-m68k@lists.linux-m68k.org
6733W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07006734T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006736F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07006737F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738
6739M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07006740M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01006742L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07006744F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745
6746M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07006747M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748W: http://www.tazenda.demon.co.uk/phil/linux-hp
6749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006750F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751
Antti Palosaari74425542013-11-06 14:03:32 -03006752M88DS3103 MEDIA DRIVER
6753M: Antti Palosaari <crope@iki.fi>
6754L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006755W: https://linuxtv.org
Antti Palosaari74425542013-11-06 14:03:32 -03006756W: http://palosaari.fi/linux/
6757Q: http://patchwork.linuxtv.org/project/linux-media/list/
6758T: git git://linuxtv.org/anttip/media_tree.git
6759S: Maintained
6760F: drivers/media/dvb-frontends/m88ds3103*
6761
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006762M88RS2000 MEDIA DRIVER
6763M: Malcolm Priestley <tvboxspy@gmail.com>
6764L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006765W: https://linuxtv.org
Malcolm Priestley68620bd2012-11-04 19:16:31 +01006766Q: http://patchwork.linuxtv.org/project/linux-media/list/
6767S: Maintained
6768F: drivers/media/dvb-frontends/m88rs2000*
6769
Alexey Klimov07a092f2012-11-12 02:57:32 -03006770MA901 MASTERKIT USB FM RADIO DRIVER
Joe Perchesb75f0052014-03-03 15:38:37 -08006771M: Alexey Klimov <klimov.linux@gmail.com>
6772L: linux-media@vger.kernel.org
6773T: git git://linuxtv.org/media_tree.git
6774S: Maintained
6775F: drivers/media/radio/radio-ma901.c
Alexey Klimov07a092f2012-11-12 02:57:32 -03006776
Jiri Benc64a327a2007-05-05 11:47:08 -07006777MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07006778M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07006779L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006780W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02006781T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6782T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07006783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006784F: Documentation/networking/mac80211-injection.txt
6785F: include/net/mac80211.h
6786F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07006787
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006788MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006789M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006790L: netdev@vger.kernel.org
6791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006792F: drivers/net/macvlan.c
6793F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07006794
Jassi Brar2b6d83e2014-06-12 22:31:19 +05306795MAILBOX API
6796M: Jassi Brar <jassisinghbrar@gmail.com>
6797L: linux-kernel@vger.kernel.org
6798S: Maintained
6799F: drivers/mailbox/
6800F: include/linux/mailbox_client.h
6801F: include/linux/mailbox_controller.h
6802
Michael Kerriskfaf16682005-07-31 22:34:47 -07006803MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07006804M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006805W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07006806L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07006807S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07006808
Russell King8427def2014-02-28 22:40:53 +00006809MARVELL ARMADA DRM SUPPORT
6810M: Russell King <rmk+kernel@arm.linux.org.uk>
6811S: Maintained
6812F: drivers/gpu/drm/armada/
6813
Guenter Roeck3ad50cc2014-10-29 10:44:56 -07006814MARVELL 88E6352 DSA support
6815M: Guenter Roeck <linux@roeck-us.net>
6816S: Maintained
6817F: drivers/net/dsa/mv88e6352.c
6818
Thomas Petazzonic4d007b2015-10-09 17:39:02 +02006819MARVELL CRYPTO DRIVER
6820M: Boris Brezillon <boris.brezillon@free-electrons.com>
6821M: Arnaud Ebalard <arno@natisbad.org>
6822F: drivers/crypto/marvell/
6823S: Maintained
6824L: linux-crypto@vger.kernel.org
6825
stephen hemminger44c14c12012-04-02 12:59:47 +00006826MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6827M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08006828M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00006829L: netdev@vger.kernel.org
6830S: Maintained
6831F: drivers/net/ethernet/marvell/sk*
6832
Stefano Brivio74cda162007-11-19 20:27:46 +01006833MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01006834L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05006835S: Orphan
Kalle Valof988d642015-11-17 21:07:19 +02006836F: drivers/net/wireless/marvell/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01006837
Dale Farnsworthb60d6972006-01-16 16:45:45 -07006838MARVELL MV643XX ETHERNET DRIVER
Sebastian Hesselbarth4e3faf82013-10-04 12:56:39 +02006839M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006840L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00006841S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07006842F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07006843F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02006845MARVELL MVNETA ETHERNET DRIVER
6846M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6847L: netdev@vger.kernel.org
6848S: Maintained
6849F: drivers/net/ethernet/marvell/mvneta.*
6850
Bing Zhaofcad5842011-07-13 13:11:58 -07006851MARVELL MWIFIEX WIRELESS DRIVER
Bing Zhaob9d31702014-07-30 13:57:16 -07006852M: Amitkumar Karwar <akarwar@marvell.com>
Avinash Patil550795f2015-06-24 16:52:21 +05306853M: Nishant Sarmukadam <nishants@marvell.com>
Bing Zhaofcad5842011-07-13 13:11:58 -07006854L: linux-wireless@vger.kernel.org
6855S: Maintained
Kalle Valo277b0242015-11-17 21:14:51 +02006856F: drivers/net/wireless/marvell/mwifiex/
Bing Zhaofcad5842011-07-13 13:11:58 -07006857
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006858MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01006859M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006860L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02006861S: Odd Fixes
Kalle Valode60f1d2015-11-17 21:18:12 +02006862F: drivers/net/wireless/marvell/mwl8k.c
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02006863
Pierre Ossman2a695672009-03-16 19:52:26 +01006864MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006865M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006866S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07006867F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01006868
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006870L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07006871S: Orphan
Jingoo Han8a61f012014-07-01 15:36:01 +09006872F: drivers/video/fbdev/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006873F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874
Guenter Roeckca462082012-06-01 23:28:23 -07006875MAX16065 HARDWARE MONITOR DRIVER
6876M: Guenter Roeck <linux@roeck-us.net>
6877L: lm-sensors@lm-sensors.org
6878S: Maintained
6879F: Documentation/hwmon/max16065
6880F: drivers/hwmon/max16065.c
6881
Guenter Roeck1f61cab2015-06-08 11:15:23 -07006882MAX20751 HARDWARE MONITOR DRIVER
6883M: Guenter Roeck <linux@roeck-us.net>
6884L: lm-sensors@lm-sensors.org
6885S: Maintained
6886F: Documentation/hwmon/max20751
6887F: drivers/hwmon/max20751.c
6888
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006889MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07006890M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006891L: lm-sensors@lm-sensors.org
6892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006893F: Documentation/hwmon/max6650
6894F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02006895
Guenter Roecke89ab512013-03-08 08:13:09 -08006896MAX6697 HARDWARE MONITOR DRIVER
6897M: Guenter Roeck <linux@roeck-us.net>
6898L: lm-sensors@lm-sensors.org
6899S: Maintained
6900F: Documentation/hwmon/max6697
6901F: Documentation/devicetree/bindings/i2c/max6697.txt
6902F: drivers/hwmon/max6697.c
6903F: include/linux/platform_data/max6697.h
6904
Krzysztof Kozlowskif8f847b2015-01-20 11:00:56 +01006905MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6906M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6907L: linux-pm@vger.kernel.org
6908S: Supported
6909F: drivers/power/max14577_charger.c
6910F: drivers/power/max77693_charger.c
6911
Javier Martinez Canillas38114052015-07-17 10:17:58 +02006912MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6913M: Javier Martinez Canillas <javier@osg.samsung.com>
6914L: linux-kernel@vger.kernel.org
6915S: Supported
6916F: drivers/*/*max77802.c
6917F: Documentation/devicetree/bindings/*/*max77802.txt
6918F: include/dt-bindings/*/*max77802.h
6919
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006920MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6921M: Chanwoo Choi <cw00.choi@samsung.com>
6922M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6923L: linux-kernel@vger.kernel.org
6924S: Supported
6925F: drivers/*/max14577.c
6926F: drivers/*/max77686.c
6927F: drivers/*/max77693.c
6928F: drivers/extcon/extcon-max14577.c
6929F: drivers/extcon/extcon-max77693.c
6930F: drivers/rtc/rtc-max77686.c
6931F: drivers/clk/clk-max77686.c
6932F: Documentation/devicetree/bindings/mfd/max14577.txt
Javier Martinez Canillas377452f2015-07-17 10:17:57 +02006933F: Documentation/devicetree/bindings/*/max77686.txt
Krzysztof Kozlowskibefeb592015-02-16 16:00:23 -08006934F: Documentation/devicetree/bindings/mfd/max77693.txt
6935F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6936F: include/linux/mfd/max14577*.h
6937F: include/linux/mfd/max77686*.h
6938F: include/linux/mfd/max77693*.h
6939
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006940MAXIRADIO FM RADIO RECEIVER DRIVER
6941M: Hans Verkuil <hverkuil@xs4all.nl>
6942L: linux-media@vger.kernel.org
6943T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006944W: https://linuxtv.org
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03006945S: Maintained
6946F: drivers/media/radio/radio-maxiradio*
6947
Peter Rosinc05dc2c2015-09-23 16:26:23 +02006948MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6949M: Peter Rosin <peda@axentia.se>
6950L: linux-iio@vger.kernel.org
6951S: Maintained
6952F: drivers/iio/potentiometer/mcp4531.c
6953
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006954MEDIA DRIVERS FOR RENESAS - VSP1
6955M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6956L: linux-media@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09006957L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart6f32a8c2015-03-04 09:12:20 -03006958T: git git://linuxtv.org/media_tree.git
6959S: Supported
6960F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6961F: drivers/media/platform/vsp1/
6962
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006963MEDIA DRIVERS FOR ASCOT2E
6964M: Sergey Kozlov <serjk@netup.ru>
6965L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006966W: https://linuxtv.org
Kozlov Sergeydacf9ce2015-07-28 11:33:01 -03006967W: http://netup.tv/
6968T: git git://linuxtv.org/media_tree.git
6969S: Supported
6970F: drivers/media/dvb-frontends/ascot2e*
6971
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006972MEDIA DRIVERS FOR CXD2841ER
6973M: Sergey Kozlov <serjk@netup.ru>
6974L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006975W: https://linuxtv.org
Kozlov Sergeya6dc60ff2015-07-28 11:33:03 -03006976W: http://netup.tv/
6977T: git git://linuxtv.org/media_tree.git
6978S: Supported
6979F: drivers/media/dvb-frontends/cxd2841er*
6980
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006981MEDIA DRIVERS FOR HORUS3A
6982M: Sergey Kozlov <serjk@netup.ru>
6983L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006984W: https://linuxtv.org
Kozlov Sergeya5d32b32015-07-28 11:33:00 -03006985W: http://netup.tv/
6986T: git git://linuxtv.org/media_tree.git
6987S: Supported
6988F: drivers/media/dvb-frontends/horus3a*
6989
Kozlov Sergeye0252732015-07-28 11:33:02 -03006990MEDIA DRIVERS FOR LNBH25
6991M: Sergey Kozlov <serjk@netup.ru>
6992L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02006993W: https://linuxtv.org
Kozlov Sergeye0252732015-07-28 11:33:02 -03006994W: http://netup.tv/
6995T: git git://linuxtv.org/media_tree.git
6996S: Supported
6997F: drivers/media/dvb-frontends/lnbh25*
6998
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03006999MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7000M: Sergey Kozlov <serjk@netup.ru>
7001L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007002W: https://linuxtv.org
Kozlov Sergey52b1eaf2015-07-28 11:33:04 -03007003W: http://netup.tv/
7004T: git git://linuxtv.org/media_tree.git
7005S: Supported
7006F: drivers/media/pci/netup_unidvb/*
7007
Joe Perches127c49a2009-04-08 08:34:04 -07007008MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02007009M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07007010P: LinuxTV.org Project
7011L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007012W: https://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007013Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007014T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07007015S: Maintained
7016F: Documentation/dvb/
7017F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007018F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007019F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02007020F: drivers/staging/media/
Mauro Carvalho Chehabeb4b0ec2015-11-16 08:35:53 -02007021F: include/linux/platform_data/media/
Joe Perches127c49a2009-04-08 08:34:04 -07007022F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007023F: include/uapi/linux/dvb/
7024F: include/uapi/linux/videodev2.h
7025F: include/uapi/linux/media.h
7026F: include/uapi/linux/v4l2-*
7027F: include/uapi/linux/meye.h
7028F: include/uapi/linux/ivtv*
7029F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007030
Jakub Kicinskic869f772015-05-26 11:16:00 +02007031MEDIATEK MT7601U WIRELESS LAN DRIVER
7032M: Jakub Kicinski <kubakici@wp.pl>
7033L: linux-wireless@vger.kernel.org
7034S: Maintained
7035F: drivers/net/wireless/mediatek/mt7601u/
7036
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307037MEGARAID SCSI/SAS DRIVERS
7038M: Kashyap Desai <kashyap.desai@avagotech.com>
7039M: Sumit Saxena <sumit.saxena@avagotech.com>
7040M: Uday Lingala <uday.lingala@avagotech.com>
7041L: megaraidlinux.pdl@avagotech.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02007042L: linux-scsi@vger.kernel.org
Sumit.Saxena@avagotech.come3990652014-11-17 15:24:03 +05307043W: http://www.lsi.com
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007045F: Documentation/scsi/megaraid.txt
7046F: drivers/scsi/megaraid.*
7047F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07007048
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007049MELLANOX ETHERNET DRIVER (mlx4_en)
Or Gerlitze7523a42015-11-17 18:25:07 +02007050M: Eugenia Emantayev <eugenia@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007051L: netdev@vger.kernel.org
Amir Vadai2c46c9d2012-12-02 03:49:21 +00007052S: Supported
7053W: http://www.mellanox.com
7054Q: http://patchwork.ozlabs.org/project/netdev/list/
7055F: drivers/net/ethernet/mellanox/mlx4/en_*
7056
Or Gerlitze7523a42015-11-17 18:25:07 +02007057MELLANOX ETHERNET DRIVER (mlx5e)
7058M: Saeed Mahameed <saeedm@mellanox.com>
7059L: netdev@vger.kernel.org
7060S: Supported
7061W: http://www.mellanox.com
7062Q: http://patchwork.ozlabs.org/project/netdev/list/
7063F: drivers/net/ethernet/mellanox/mlx5/core/en_*
7064
Jiri Pirko93c1edb2015-07-29 23:33:46 +02007065MELLANOX ETHERNET SWITCH DRIVERS
7066M: Jiri Pirko <jiri@mellanox.com>
7067M: Ido Schimmel <idosch@mellanox.com>
7068L: netdev@vger.kernel.org
7069S: Supported
7070W: http://www.mellanox.com
7071Q: http://patchwork.ozlabs.org/project/netdev/list/
7072F: drivers/net/ethernet/mellanox/mlxsw/
7073
Mathieu Desnoyers5b25b132015-09-11 13:07:39 -07007074MEMBARRIER SUPPORT
7075M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7076M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7077L: linux-kernel@vger.kernel.org
7078S: Supported
7079F: kernel/membarrier.c
7080F: include/uapi/linux/membarrier.h
7081
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007082MEMORY MANAGEMENT
7083L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007084W: http://www.linux-mm.org
7085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007086F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08007087F: include/linux/gfp.h
7088F: include/linux/mmzone.h
7089F: include/linux/memory_hotplug.h
7090F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07007091F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07007092
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04007093MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07007094M: David Woodhouse <dwmw2@infradead.org>
Brian Norris242c3252013-12-04 15:28:45 -08007095M: Brian Norris <computersforpeace@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007097W: http://www.linux-mtd.infradead.org/
7098Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Brian Norris242c3252013-12-04 15:28:45 -08007099T: git git://git.infradead.org/linux-mtd.git
Brian Norrisab95eac2014-09-15 21:56:17 -07007100T: git git://git.infradead.org/l2-mtd.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007102F: drivers/mtd/
7103F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007104F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007106MEN A21 WATCHDOG DRIVER
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007107M: Johannes Thumshirn <morbidrsa@gmail.com>
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007108L: linux-watchdog@vger.kernel.org
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007109S: Maintained
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02007110F: drivers/watchdog/mena21_wdt.c
7111
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007112MEN CHAMELEON BUS (mcb)
Johannes Thumshirn30c74692015-05-07 10:21:24 +02007113M: Johannes Thumshirn <morbidrsa@gmail.com>
7114S: Maintained
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007115F: drivers/mcb/
7116F: include/linux/mcb.h
Johannes Thumshirnb9f2f452015-07-17 12:23:01 +02007117F: Documentation/men-chameleon-bus.txt
Johannes Thumshirn3764e822014-02-26 17:29:05 +01007118
Andreas Werner48b490d2014-09-15 09:36:30 +02007119MEN F21BMC (Board Management Controller)
7120M: Andreas Werner <andreas.werner@men.de>
7121S: Supported
7122F: drivers/mfd/menf21bmc.c
7123F: drivers/watchdog/menf21bmc_wdt.c
7124F: drivers/leds/leds-menf21bmc.c
7125F: drivers/hwmon/menf21bmc_hwmon.c
7126F: Documentation/hwmon/menf21bmc
7127
James Hogan12285942012-10-10 12:59:49 +01007128METAG ARCHITECTURE
7129M: James Hogan <james.hogan@imgtec.com>
James Hogand668d9e2013-07-22 09:51:38 +01007130L: linux-metag@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08007131T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
James Hoganf23d0e22015-11-09 18:40:59 +00007132S: Odd Fixes
James Hogan12285942012-10-10 12:59:49 +01007133F: arch/metag/
7134F: Documentation/metag/
7135F: Documentation/devicetree/bindings/metag/
Rob Herring2d799dd2015-11-05 13:40:40 -06007136F: Documentation/devicetree/bindings/interrupt-controller/img,*
James Hogana2c5d4e2012-10-09 10:54:39 +01007137F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01007138F: drivers/irqchip/irq-metag.c
7139F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01007140F: drivers/tty/metag_da.c
James Hogan12285942012-10-10 12:59:49 +01007141
Michal Simekc6375b02009-03-27 14:25:52 +01007142MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07007143M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01007144W: http://www.monstr.eu/fdt/
7145T: git git://git.monstr.eu/linux-2.6-microblaze.git
7146S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02007147F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148
Chen Yu2508a452015-08-18 23:30:25 +08007149MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7150M: Chen Yu <yu.c.chen@intel.com>
7151L: platform-driver-x86@vger.kernel.org
7152S: Supported
7153F: drivers/platform/x86/surfacepro3_button.c
7154
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007156M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007158F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159
7160MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07007161M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01007163W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00007164T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01007165Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00007166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007167F: Documentation/mips/
7168F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007169
Hans Verkuil08b76202012-11-23 07:15:42 -03007170MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7171M: Hans Verkuil <hverkuil@xs4all.nl>
7172L: linux-media@vger.kernel.org
7173T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007174W: https://linuxtv.org
Hans Verkuil08b76202012-11-23 07:15:42 -03007175S: Odd Fixes
7176F: drivers/media/radio/radio-miropcm20*
7177
Or Gerlitzc09befc2015-12-23 18:30:58 +02007178MELLANOX MLX4 core VPI driver
7179M: Yishai Hadas <yishaih@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007180L: netdev@vger.kernel.org
7181L: linux-rdma@vger.kernel.org
7182W: http://www.mellanox.com
7183Q: http://patchwork.ozlabs.org/project/netdev/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007184S: Supported
7185F: drivers/net/ethernet/mellanox/mlx4/
7186F: include/linux/mlx4/
7187
7188MELLANOX MLX4 IB driver
7189M: Yishai Hadas <yishaih@mellanox.com>
7190L: linux-rdma@vger.kernel.org
7191W: http://www.mellanox.com
Eli Cohene126ba92013-07-07 17:25:49 +03007192Q: http://patchwork.kernel.org/project/linux-rdma/list/
Or Gerlitzc09befc2015-12-23 18:30:58 +02007193S: Supported
7194F: drivers/infiniband/hw/mlx4/
7195F: include/linux/mlx4/
7196
Or Gerlitz595a4d82015-12-23 18:30:57 +02007197MELLANOX MLX5 core VPI driver
7198M: Matan Barak <matanb@mellanox.com>
7199M: Leon Romanovsky <leonro@mellanox.com>
Eli Cohene126ba92013-07-07 17:25:49 +03007200L: netdev@vger.kernel.org
7201L: linux-rdma@vger.kernel.org
7202W: http://www.mellanox.com
7203Q: http://patchwork.ozlabs.org/project/netdev/list/
Eli Cohene126ba92013-07-07 17:25:49 +03007204S: Supported
7205F: drivers/net/ethernet/mellanox/mlx5/core/
7206F: include/linux/mlx5/
7207
Or Gerlitz595a4d82015-12-23 18:30:57 +02007208MELLANOX MLX5 IB driver
7209M: Matan Barak <matanb@mellanox.com>
7210M: Leon Romanovsky <leonro@mellanox.com>
Joe Perchesb75f0052014-03-03 15:38:37 -08007211L: linux-rdma@vger.kernel.org
7212W: http://www.mellanox.com
7213Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perchesb75f0052014-03-03 15:38:37 -08007214S: Supported
Joe Perchesb75f0052014-03-03 15:38:37 -08007215F: drivers/infiniband/hw/mlx5/
Or Gerlitz595a4d82015-12-23 18:30:57 +02007216F: include/linux/mlx5/
Eli Cohene126ba92013-07-07 17:25:49 +03007217
Crt Mori764589b2015-08-17 19:34:33 +02007218MELEXIS MLX90614 DRIVER
7219M: Crt Mori <cmo@melexis.com>
7220L: linux-iio@vger.kernel.org
7221W: http://www.melexis.com
7222S: Supported
7223F: drivers/iio/temperature/mlx90614.c
7224
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007225MN88472 MEDIA DRIVER
7226M: Antti Palosaari <crope@iki.fi>
7227L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007228W: https://linuxtv.org
Antti Palosaari0ce277e2014-11-12 00:35:42 -03007229W: http://palosaari.fi/linux/
7230Q: http://patchwork.linuxtv.org/project/linux-media/list/
7231T: git git://linuxtv.org/anttip/media_tree.git
7232S: Maintained
7233F: drivers/staging/media/mn88472/
7234F: drivers/media/dvb-frontends/mn88472.h
7235
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007236MN88473 MEDIA DRIVER
7237M: Antti Palosaari <crope@iki.fi>
7238L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007239W: https://linuxtv.org
Antti Palosaari4f4d2382014-11-12 00:53:57 -03007240W: http://palosaari.fi/linux/
7241Q: http://patchwork.linuxtv.org/project/linux-media/list/
7242T: git git://linuxtv.org/anttip/media_tree.git
7243S: Maintained
7244F: drivers/staging/media/mn88473/
7245F: drivers/media/dvb-frontends/mn88473.h
7246
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007248M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007250F: include/linux/module.h
7251F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252
7253MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08007255S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007256F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007257F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02007258F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259
Jiri Slabyb9705b62008-04-30 00:53:48 -07007260MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07007261M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08007262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007263F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07007264F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08007265
Alexey Klimov889b2f82012-11-16 17:43:59 -03007266MR800 AVERMEDIA USB FM RADIO DRIVER
7267M: Alexey Klimov <klimov.linux@gmail.com>
7268L: linux-media@vger.kernel.org
7269T: git git://linuxtv.org/media_tree.git
7270S: Maintained
7271F: drivers/media/radio/radio-mr800.c
7272
Alan Ottd7155692014-08-16 17:09:03 -04007273MRF24J40 IEEE 802.15.4 RADIO DRIVER
7274M: Alan Ott <alan@signal11.us>
7275L: linux-wpan@vger.kernel.org
7276S: Maintained
7277F: drivers/net/ieee802154/mrf24j40.c
Alexander Aring2e6fd642015-09-21 11:24:26 +02007278F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
Alan Ottd7155692014-08-16 17:09:03 -04007279
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007280MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08007281M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007282L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007284F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04007285
Anisse Astier0f1006b2009-12-17 11:28:49 +01007286MSI WMI SUPPORT
Matthew Garrettd09448532010-02-11 10:40:13 -05007287L: platform-driver-x86@vger.kernel.org
Anisse Astier5ee70412015-06-14 22:32:23 +02007288S: Orphan
Anisse Astier0f1006b2009-12-17 11:28:49 +01007289F: drivers/platform/x86/msi-wmi.c
7290
Antti Palosaari19a628a2014-02-02 23:51:30 -03007291MSI001 MEDIA DRIVER
7292M: Antti Palosaari <crope@iki.fi>
7293L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007294W: https://linuxtv.org
Antti Palosaari19a628a2014-02-02 23:51:30 -03007295W: http://palosaari.fi/linux/
7296Q: http://patchwork.linuxtv.org/project/linux-media/list/
7297T: git git://linuxtv.org/anttip/media_tree.git
7298S: Maintained
Antti Palosaari0185e192014-07-12 08:58:32 -03007299F: drivers/media/tuners/msi001*
Antti Palosaari19a628a2014-02-02 23:51:30 -03007300
Antti Palosaari75705892014-07-13 21:35:47 -03007301MSI2500 MEDIA DRIVER
Antti Palosaari2c572132014-02-02 23:55:12 -03007302M: Antti Palosaari <crope@iki.fi>
7303L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007304W: https://linuxtv.org
Antti Palosaari2c572132014-02-02 23:55:12 -03007305W: http://palosaari.fi/linux/
7306Q: http://patchwork.linuxtv.org/project/linux-media/list/
7307T: git git://linuxtv.org/anttip/media_tree.git
7308S: Maintained
Antti Palosaari75705892014-07-13 21:35:47 -03007309F: drivers/media/usb/msi2500/
Antti Palosaari2c572132014-02-02 23:55:12 -03007310
Robert Jarzmik159eeea2015-06-25 19:14:18 +02007311MSYSTEMS DISKONCHIP G3 MTD DRIVER
7312M: Robert Jarzmik <robert.jarzmik@free.fr>
7313L: linux-mtd@lists.infradead.org
7314S: Maintained
7315F: drivers/mtd/devices/docg3*
7316
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007317MT9M032 APTINA SENSOR DRIVER
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007318M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7319L: linux-media@vger.kernel.org
7320T: git git://linuxtv.org/media_tree.git
7321S: Maintained
7322F: drivers/media/i2c/mt9m032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007323F: include/media/i2c/mt9m032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007324
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007325MT9P031 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007326M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7327L: linux-media@vger.kernel.org
7328T: git git://linuxtv.org/media_tree.git
7329S: Maintained
7330F: drivers/media/i2c/mt9p031.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007331F: include/media/i2c/mt9p031.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007332
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007333MT9T001 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007334M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7335L: linux-media@vger.kernel.org
7336T: git git://linuxtv.org/media_tree.git
7337S: Maintained
7338F: drivers/media/i2c/mt9t001.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007339F: include/media/i2c/mt9t001.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007340
Laurent Pinchart62a37dc2013-08-09 08:46:11 -03007341MT9V032 APTINA CAMERA SENSOR
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007342M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7343L: linux-media@vger.kernel.org
7344T: git git://linuxtv.org/media_tree.git
7345S: Maintained
Laurent Pinchartf2272e12014-01-01 14:40:35 -03007346F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007347F: drivers/media/i2c/mt9v032.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -02007348F: include/media/i2c/mt9v032.h
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03007349
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007350MULTIFUNCTION DEVICES (MFD)
Samuel Ortizf7d32102013-05-17 00:53:42 +02007351M: Lee Jones <lee.jones@linaro.org>
Lee Jones7caa7992014-07-22 13:24:38 +01007352T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007353S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007354F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01007355F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07007356
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02007357MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Ulf Hanssone18eaf82014-02-19 00:01:05 +01007358M: Ulf Hansson <ulf.hansson@linaro.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07007359L: linux-mmc@vger.kernel.org
Ulf Hansson708dce32014-05-14 14:32:53 +02007360T: git git://git.linaro.org/people/ulf.hansson/mmc.git
Chris Ball245feaa2010-09-10 12:05:24 -04007361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007362F: drivers/mmc/
7363F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007364F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01007365
David Brownell15a05802007-08-08 09:12:54 -07007366MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06007367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007368F: drivers/mmc/host/mmc_spi.c
7369F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07007370
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007372M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007374F: Documentation/sound/oss/MultiSound
7375F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376
Jiri Slabyd7354102006-12-08 02:38:35 -08007377MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02007378S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07007379F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07007380F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08007381
Felipe Balbi550a7372008-07-24 12:27:36 +03007382MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03007383M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007384L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007385T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007387F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03007388
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007389MXL5007T MEDIA DRIVER
7390M: Michael Krufky <mkrufky@linuxtv.org>
7391L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02007392W: https://linuxtv.org
Michael Krufkyea0af5f2012-10-02 00:55:41 -03007393W: http://github.com/mkrufky
7394Q: http://patchwork.linuxtv.org/project/linux-media/list/
7395T: git git://linuxtv.org/mkrufky/tuners.git
7396S: Maintained
7397F: drivers/media/tuners/mxl5007t.*
7398
Brice Goglin2d3cf582008-05-17 12:45:36 +02007399MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007400M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02007401L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07007402W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02007403S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07007404F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02007405
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04007407S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007408F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409
Daniel Mack23dc05a2011-05-18 11:28:38 +02007410NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7411M: Daniel Mack <zonque@gmail.com>
7412S: Maintained
Jim Davise5747e42015-06-25 15:01:58 -07007413L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Daniel Mack23dc05a2011-05-18 11:28:38 +02007414W: http://www.native-instruments.com
7415F: sound/usb/caiaq/
7416
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07007418M: Petr Vandrovec <petr@vandrovec.name>
7419S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007420F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421
Finn Thaina79b0322014-05-05 15:35:30 +10007422NCR 5380 SCSI DRIVERS
7423M: Finn Thain <fthain@telegraphics.com.au>
7424M: Michael Schmitz <schmitzmic@gmail.com>
7425L: linux-scsi@vger.kernel.org
7426S: Maintained
7427F: Documentation/scsi/g_NCR5380.txt
7428F: drivers/scsi/NCR5380.*
7429F: drivers/scsi/arm/cumana_1.c
7430F: drivers/scsi/arm/oak.c
7431F: drivers/scsi/atari_NCR5380.c
7432F: drivers/scsi/atari_scsi.*
7433F: drivers/scsi/dmx3191d.c
7434F: drivers/scsi/dtc.*
7435F: drivers/scsi/g_NCR5380.*
7436F: drivers/scsi/g_NCR5380_mmio.c
7437F: drivers/scsi/mac_scsi.*
7438F: drivers/scsi/pas16.*
Finn Thaina79b0322014-05-05 15:35:30 +10007439F: drivers/scsi/sun3_scsi.*
7440F: drivers/scsi/sun3_scsi_vme.c
7441F: drivers/scsi/t128.*
7442
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07007444M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445L: linux-scsi@vger.kernel.org
7446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007447F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07007449NCT6775 HARDWARE MONITOR DRIVER
7450M: Guenter Roeck <linux@roeck-us.net>
7451L: lm-sensors@lm-sensors.org
7452S: Maintained
7453F: Documentation/hwmon/nct6775
7454F: drivers/hwmon/nct6775.c
7455
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007456NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07007457M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07007458L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00007459W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08007460S: Supported
7461F: drivers/infiniband/hw/nes/
7462
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007463NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08007464M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07007465L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007467F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07007468
Jon Masonb2f5a052010-07-15 08:47:27 +00007469NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00007470M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07007471L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07007472S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007473F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00007474F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07007475F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07007476
Pablo Neira Ayusodb9cf3a2014-06-16 13:01:52 +02007477NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01007478M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007479M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007480M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07007481L: netfilter-devel@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07007482L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483W: http://www.netfilter.org/
7484W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02007485Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7486T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7487T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007489F: include/linux/netfilter*
7490F: include/linux/netfilter/
7491F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007492F: include/uapi/linux/netfilter*
7493F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07007494F: net/*/netfilter.c
7495F: net/*/netfilter/
7496F: net/netfilter/
Pablo Neira Ayuso91c269a2015-07-06 20:55:35 +02007497F: net/bridge/br_netfilter*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498
Paul Moore4cc67732006-09-25 15:57:13 -07007499NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00007500M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07007501W: http://netlabel.sf.net
7502L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00007503S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007504F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07007505F: include/net/netlabel.h
7506F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07007507
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007509M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02007511W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007513F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007514F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07007515F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516
Jakub Kicinski4c352362015-12-01 14:55:22 +00007517NETRONOME ETHERNET DRIVERS
7518M: Jakub Kicinski <jakub.kicinski@netronome.com>
7519M: Rolf Neugebauer <rolf.neugebauer@netronome.com>
7520L: oss-drivers@netronome.com
7521S: Maintained
7522F: drivers/net/ethernet/netronome/
7523
Pavel Machek5ddb88c2006-09-29 02:01:29 -07007524NETWORK BLOCK DEVICE (NBD)
Markus Pargmann4ca58292015-01-28 19:35:38 +01007525M: Markus Pargmann <mpa@pengutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08007527L: nbd-general@lists.sourceforge.net
Markus Pargmann4ca58292015-01-28 19:35:38 +01007528T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
Joe Perches679655d2009-04-07 20:44:32 -07007529F: Documentation/blockdev/nbd.txt
7530F: drivers/block/nbd.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007531F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007532
Neil Horman6e436502009-10-05 03:56:55 +00007533NETWORK DROP MONITOR
7534M: Neil Horman <nhorman@tuxdriver.com>
7535L: netdev@vger.kernel.org
7536S: Maintained
7537W: https://fedorahosted.org/dropwatch/
7538F: net/core/drop_monitor.c
7539
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07007541M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007542L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00007543W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007544Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00007545T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7546T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007548F: net/
7549F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007550F: include/linux/in.h
7551F: include/linux/net.h
7552F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007553F: include/uapi/linux/in.h
7554F: include/uapi/linux/net.h
7555F: include/uapi/linux/netdevice.h
Nicolas Dichtel0c7aecd2015-01-15 15:11:15 +01007556F: include/uapi/linux/net_namespace.h
Tobias Klauser7e814a62014-03-11 12:06:24 +01007557F: tools/net/
Daniel Borkmannf4e53f92014-03-13 10:18:53 +01007558F: tools/testing/selftests/net/
Sasha Levin335a67d2014-03-27 02:01:34 -04007559F: lib/random32.c
Daniel Borkmanna101ccd2014-06-10 12:31:10 +02007560F: lib/test_bpf.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561
7562NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07007563M: "David S. Miller" <davem@davemloft.net>
7564M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07007565M: James Morris <jmorris@namei.org>
7566M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7567M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007568L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007569T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007571F: net/ipv4/
7572F: net/ipv6/
7573F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00007574F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575
David S. Miller73b76562012-10-16 14:08:40 -04007576NETWORKING [IPSEC]
7577M: Steffen Klassert <steffen.klassert@secunet.com>
7578M: Herbert Xu <herbert@gondor.apana.org.au>
7579M: "David S. Miller" <davem@davemloft.net>
7580L: netdev@vger.kernel.org
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007581T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7582T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
David S. Miller73b76562012-10-16 14:08:40 -04007583S: Maintained
Fan Du5826bdd2014-01-18 09:55:28 +08007584F: net/core/flow.c
David S. Miller73b76562012-10-16 14:08:40 -04007585F: net/xfrm/
7586F: net/key/
7587F: net/ipv4/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007588F: net/ipv4/esp4.c
7589F: net/ipv4/ah4.c
7590F: net/ipv4/ipcomp.c
7591F: net/ipv4/ip_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007592F: net/ipv6/xfrm*
Steffen Klassertd1fc5022013-12-13 12:56:05 +01007593F: net/ipv6/esp6.c
7594F: net/ipv6/ah6.c
7595F: net/ipv6/ipcomp6.c
7596F: net/ipv6/ip6_vti.c
David S. Miller73b76562012-10-16 14:08:40 -04007597F: include/uapi/linux/xfrm.h
7598F: include/net/xfrm.h
7599
James Morris10e2ff12007-08-25 14:41:28 -07007600NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00007601M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07007602L: netdev@vger.kernel.org
7603S: Maintained
7604
John W. Linville29f8f632006-01-18 14:52:48 -08007605NETWORKING [WIRELESS]
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08007606L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007607Q: http://patchwork.kernel.org/project/linux-wireless/list/
John W. Linville29f8f632006-01-18 14:52:48 -08007608
Joe Perches788873a2009-04-16 09:38:45 +00007609NETWORKING DRIVERS
7610L: netdev@vger.kernel.org
7611W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00007612Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07007613T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7614T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00007615S: Odd Fixes
7616F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00007617F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02007618F: include/linux/netdevice.h
Jean Delvare0b63bf12012-10-18 22:11:38 +02007619F: include/linux/etherdevice.h
7620F: include/linux/fcdevice.h
7621F: include/linux/fddidevice.h
7622F: include/linux/hippidevice.h
7623F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007624F: include/uapi/linux/if_*
7625F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00007626
John W. Linville0e324cf2014-12-17 12:07:05 -05007627NETWORKING DRIVERS (WIRELESS)
7628M: Kalle Valo <kvalo@codeaurora.org>
7629L: linux-wireless@vger.kernel.org
7630Q: http://patchwork.kernel.org/project/linux-wireless/list/
Fengguang Wu9f273c22016-01-20 15:03:25 -08007631T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7632T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
John W. Linville0e324cf2014-12-17 12:07:05 -05007633S: Maintained
7634F: drivers/net/wireless/
7635
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007636NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00007637M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07007638M: Sony Chacko <sony.chacko@qlogic.com>
7639M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007640L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00007641W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007642S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07007643F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04007644
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007645NFC SUBSYSTEM
7646M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7647M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7648M: Samuel Ortiz <sameo@linux.intel.com>
7649L: linux-wireless@vger.kernel.org
Dan Carpenter1eb3b212014-08-11 13:14:25 +03007650L: linux-nfc@lists.01.org (subscribers-only)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02007651S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007652F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03007653F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007654F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03007655F: drivers/nfc/
Christophe Ricard397d6492015-12-23 23:45:21 +01007656F: include/linux/platform_data/microread.h
7657F: include/linux/platform_data/nfcmrvl.h
7658F: include/linux/platform_data/nxp-nci.h
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07007659F: include/linux/platform_data/pn544.h
Christophe Ricard397d6492015-12-23 23:45:21 +01007660F: include/linux/platform_data/st21nfca.h
7661F: include/linux/platform_data/st-nci.h
Mark A. Greer7ebb88e2014-03-10 11:56:25 -07007662F: Documentation/devicetree/bindings/net/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04007664NFS, SUNRPC, AND LOCKD CLIENTS
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007665M: Trond Myklebust <trond.myklebust@primarydata.com>
Trond Myklebust0e3b1372015-02-03 17:13:58 -05007666M: Anna Schumaker <anna.schumaker@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05007667L: linux-nfs@vger.kernel.org
7668W: http://client.linux-nfs.org
Trond Myklebustcd7b9962013-12-04 12:29:49 -05007669T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007671F: fs/lockd/
7672F: fs/nfs/
7673F: fs/nfs_common/
7674F: net/sunrpc/
7675F: include/linux/lockd/
7676F: include/linux/nfs*
7677F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007678F: include/uapi/linux/nfs*
7679F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007681NILFS2 FILESYSTEM
Ryusuke Konishie2126932014-04-03 14:50:25 -07007682M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09007683L: linux-nilfs@vger.kernel.org
Ryusuke Konishif9472262014-04-03 14:50:32 -07007684W: http://nilfs.sourceforge.net/
Ryusuke Konishie2126932014-04-03 14:50:25 -07007685T: git git://github.com/konis/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007687F: Documentation/filesystems/nilfs2.txt
7688F: fs/nilfs2/
7689F: include/linux/nilfs2_fs.h
Ryusuke Konishic35c7ac2015-11-06 16:32:11 -08007690F: include/trace/events/nilfs2.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07007691
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007693M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007696F: Documentation/scsi/NinjaSCSI.txt
7697F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
7699NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007700M: GOTO Masanori <gotom@debian.or.jp>
7701M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007702W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007704F: Documentation/scsi/NinjaSCSI.txt
7705F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007707NIOS2 ARCHITECTURE
7708M: Ley Foon Tan <lftan@altera.com>
7709L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
Ley Foon Tan0094dc42015-09-08 01:50:05 +08007710T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
Ley Foon Tan383b8fb2014-11-06 15:20:14 +08007711S: Maintained
7712F: arch/nios2/
7713
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007714NOKIA N900 POWER SUPPLY DRIVERS
7715M: Pali Rohár <pali.rohar@gmail.com>
7716S: Maintained
7717F: include/linux/power/bq2415x_charger.h
Andrew F. Davis081bab22015-09-22 14:35:06 -05007718F: include/linux/power/bq27xxx_battery.h
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007719F: include/linux/power/isp1704_charger.h
7720F: drivers/power/bq2415x_charger.c
Andrew F. Davis081bab22015-09-22 14:35:06 -05007721F: drivers/power/bq27xxx_battery.c
Pali Rohár2a6afdd2015-03-29 15:35:54 +02007722F: drivers/power/isp1704_charger.c
7723F: drivers/power/rx51_battery.c
7724
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007725NTB DRIVER CORE
Jon Mason9ef6bf62014-06-19 10:44:24 -07007726M: Jon Mason <jdmason@kudzu.us>
7727M: Dave Jiang <dave.jiang@intel.com>
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007728M: Allen Hubbe <Allen.Hubbe@emc.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007729L: linux-ntb@googlegroups.com
Jon Masonfce8a7b2012-11-16 19:27:12 -07007730S: Supported
Jon Mason29844112013-07-30 16:29:48 -07007731W: https://github.com/jonmason/ntb/wiki
7732T: git git://github.com/jonmason/ntb.git
Jon Masonfce8a7b2012-11-16 19:27:12 -07007733F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07007734F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07007735F: include/linux/ntb.h
Allen Hubbea1bd3ba2015-04-09 10:33:20 -04007736F: include/linux/ntb_transport.h
Jon Masonfce8a7b2012-11-16 19:27:12 -07007737
Allen Hubbee26a5842015-04-09 10:33:20 -04007738NTB INTEL DRIVER
7739M: Jon Mason <jdmason@kudzu.us>
7740M: Dave Jiang <dave.jiang@intel.com>
Jon Mason5e9fd732015-07-04 14:48:33 -04007741L: linux-ntb@googlegroups.com
Allen Hubbee26a5842015-04-09 10:33:20 -04007742S: Supported
7743W: https://github.com/jonmason/ntb/wiki
7744T: git git://github.com/jonmason/ntb.git
7745F: drivers/ntb/hw/intel/
Joe Perches679655d2009-04-07 20:44:32 -07007746
Xiangliang Yua1b36952016-01-21 19:47:05 +08007747NTB AMD DRIVER
7748M: Xiangliang Yu <Xiangliang.Yu@amd.com>
7749L: linux-ntb@googlegroups.com
7750S: Supported
7751F: drivers/ntb/hw/amd/
7752
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753NTFS FILESYSTEM
7754M: Anton Altaparmakov <anton@tuxera.com>
7755L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07007756W: http://www.tuxera.com/
Josh Boyer1adc1232005-11-23 15:44:15 -08007757T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007759F: Documentation/filesystems/ntfs.txt
7760F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007761
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08007762NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007763M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007764L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01007765S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007766F: drivers/video/fbdev/riva/
7767F: drivers/video/fbdev/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768
Matthew Wilcox79461682012-11-10 08:54:53 -05007769NVM EXPRESS DRIVER
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007770M: Keith Busch <keith.busch@intel.com>
7771M: Jens Axboe <axboe@fb.com>
Matthew Wilcox79461682012-11-10 08:54:53 -05007772L: linux-nvme@lists.infradead.org
Jay Freyenseeb3975e92015-10-28 16:37:51 +09007773T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7774W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
Matthew Wilcox79461682012-11-10 08:54:53 -05007775S: Supported
Jay Sternberg57dacad2015-10-09 18:17:06 +02007776F: drivers/nvme/host/
Matthew Wilcox79461682012-11-10 08:54:53 -05007777F: include/linux/nvme.h
7778
Srinivas Kandagatlaaee4b9b2015-07-27 12:17:24 +01007779NVMEM FRAMEWORK
7780M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7781M: Maxime Ripard <maxime.ripard@free-electrons.com>
7782S: Maintained
7783F: drivers/nvmem/
7784F: Documentation/devicetree/bindings/nvmem/
7785F: include/linux/nvmem-consumer.h
7786F: include/linux/nvmem-provider.h
7787
Clément Perrochauddece4582015-03-09 11:12:04 +01007788NXP-NCI NFC DRIVER
7789M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7790R: Charles Gorand <charles.gorand@effinnov.com>
7791L: linux-nfc@lists.01.org (moderated for non-subscribers)
7792S: Supported
7793F: drivers/nfc/nxp-nci
7794
Russell Kingf50d7142014-03-03 12:18:14 +00007795NXP TDA998X DRM DRIVER
7796M: Russell King <rmk+kernel@arm.linux.org.uk>
7797S: Supported
7798F: drivers/gpu/drm/i2c/tda998x_drv.c
7799F: include/drm/i2c/tda998x.h
7800
Peter Rosinfbace432014-11-08 14:40:17 +01007801NXP TFA9879 DRIVER
7802M: Peter Rosin <peda@axentia.se>
7803L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7804S: Maintained
7805F: sound/soc/codecs/tfa9879*
7806
Tony Lindgrenf5525782009-05-28 13:23:53 -07007807OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07007808M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007809L: linux-omap@vger.kernel.org
7810W: http://www.muru.com/linux/omap/
7811W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08007812Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02007813T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007814S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07007815F: arch/arm/*omap*/
Felipe Balbi026da812015-01-19 16:13:53 -06007816F: arch/arm/configs/omap1_defconfig
7817F: arch/arm/configs/omap2plus_defconfig
Jean Delvare046d0a32012-01-12 20:32:05 +01007818F: drivers/i2c/busses/i2c-omap.c
Felipe Balbidc68cd12014-11-06 08:37:19 -06007819F: drivers/irqchip/irq-omap-intc.c
7820F: drivers/mfd/*omap*.c
7821F: drivers/mfd/menelaus.c
7822F: drivers/mfd/palmas.c
7823F: drivers/mfd/tps65217.c
7824F: drivers/mfd/tps65218.c
7825F: drivers/mfd/tps65910.c
7826F: drivers/mfd/twl-core.[ch]
7827F: drivers/mfd/twl4030*.c
7828F: drivers/mfd/twl6030*.c
7829F: drivers/mfd/twl6040*.c
7830F: drivers/regulator/palmas-regulator*.c
7831F: drivers/regulator/pbias-regulator.c
7832F: drivers/regulator/tps65217-regulator.c
7833F: drivers/regulator/tps65218-regulator.c
7834F: drivers/regulator/tps65910-regulator.c
7835F: drivers/regulator/twl-regulator.c
Jean Delvare046d0a32012-01-12 20:32:05 +01007836F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07007837
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007838OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007839M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007840M: Tony Lindgren <tony@atomide.com>
7841L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07007842L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007843S: Maintained
7844F: arch/arm/boot/dts/*omap*
7845F: arch/arm/boot/dts/*am3*
Nishanth Menon05eb20f2014-10-21 09:24:22 -05007846F: arch/arm/boot/dts/*am4*
7847F: arch/arm/boot/dts/*am5*
7848F: arch/arm/boot/dts/*dra7*
Tony Lindgren50f29fb2012-12-16 11:29:59 -08007849
Tony Lindgrenf5525782009-05-28 13:23:53 -07007850OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007851M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007852L: linux-omap@vger.kernel.org
7853S: Maintained
7854F: arch/arm/*omap*/*clock*
7855
7856OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007857M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007858L: linux-omap@vger.kernel.org
7859S: Maintained
7860F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07007861F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007862
Joe Perchesd21db562013-09-11 14:23:35 -07007863OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007864M: Rajendra Nayak <rnayak@ti.com>
7865M: Paul Walmsley <paul@pwsan.com>
7866L: linux-omap@vger.kernel.org
7867S: Maintained
Joe Perchesd21db562013-09-11 14:23:35 -07007868F: arch/arm/mach-omap2/prm*
Paul Walmsley692ab1f2011-03-09 18:44:28 -07007869
Tony Lindgrenf5525782009-05-28 13:23:53 -07007870OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03007871M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03007872M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Jim Davise5747e42015-06-25 15:01:58 -07007873L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Tony Lindgrenf5525782009-05-28 13:23:53 -07007874L: linux-omap@vger.kernel.org
7875S: Maintained
7876F: sound/soc/omap/
7877
Tony Lindgren18640192014-11-20 09:13:42 -08007878OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7879M: Roger Quadros <rogerq@ti.com>
7880M: Tony Lindgren <tony@atomide.com>
7881L: linux-omap@vger.kernel.org
7882S: Maintained
7883F: drivers/memory/omap-gpmc.c
7884F: arch/arm/mach-omap2/*gpmc*
7885
Tony Lindgrenf5525782009-05-28 13:23:53 -07007886OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007887M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007888L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07007889L: linux-omap@vger.kernel.org
7890S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007891F: drivers/video/fbdev/omap/
Tony Lindgrenf5525782009-05-28 13:23:53 -07007892
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007893OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02007894M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007895L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02007896L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007897S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09007898F: drivers/video/fbdev/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03007899F: Documentation/arm/OMAP/DSS
7900
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007901OMAP HARDWARE SPINLOCK SUPPORT
7902M: Ohad Ben-Cohen <ohad@wizery.com>
7903L: linux-omap@vger.kernel.org
7904S: Maintained
7905F: drivers/hwspinlock/omap_hwspinlock.c
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03007906
Tony Lindgrenf5525782009-05-28 13:23:53 -07007907OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007908M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007909L: linux-omap@vger.kernel.org
7910S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007911F: drivers/mmc/host/omap.c
7912
7913OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05307914L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007915L: linux-omap@vger.kernel.org
Balaji T Kdfa5d192014-09-17 22:50:11 +05307916S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07007917F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07007918
7919OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007920M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007921S: Maintained
7922F: drivers/char/hw_random/omap-rng.c
7923
Paul Walmsleyf400c822010-12-06 19:08:54 -07007924OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007925M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007926M: Paul Walmsley <paul@pwsan.com>
7927L: linux-omap@vger.kernel.org
7928S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08007929F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07007930
Paul Walmsley8633fb32015-01-19 23:49:50 -07007931OMAP HWMOD DATA
7932M: Paul Walmsley <paul@pwsan.com>
7933L: linux-omap@vger.kernel.org
7934S: Maintained
7935F: arch/arm/mach-omap2/omap_hwmod*data*
7936
Paul Walmsleyf400c822010-12-06 19:08:54 -07007937OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02007938M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07007939L: linux-omap@vger.kernel.org
7940S: Maintained
7941F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7942
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007943OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007944M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7945L: linux-media@vger.kernel.org
7946S: Maintained
Sakari Ailus7eec52d2015-03-19 01:50:22 +02007947F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007948F: drivers/media/platform/omap3isp/
Laurent Pinchart0db83ce2014-06-06 12:08:59 -03007949F: drivers/staging/media/omap4iss/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03007950
Tony Lindgrenf5525782009-05-28 13:23:53 -07007951OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03007952M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07007953L: linux-usb@vger.kernel.org
7954L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03007955T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07007956S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07007957F: drivers/usb/*/*omap*
7958F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07007959
Kevin Hilman6d994712012-07-16 10:05:07 -07007960OMAP GPIO DRIVER
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03007961M: Grygorii Strashko <grygorii.strashko@ti.com>
Santosh Shilimkar97215802014-10-13 14:16:28 -04007962M: Santosh Shilimkar <ssantosh@kernel.org>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007963M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07007964L: linux-omap@vger.kernel.org
7965S: Maintained
Javier Martinez Canillasfe643522015-11-13 10:35:29 -03007966F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
Kevin Hilman6d994712012-07-16 10:05:07 -07007967F: drivers/gpio/gpio-omap.c
7968
Mark Jacksonc351e292013-10-04 09:15:01 +01007969OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7970M: Mark Jackson <mpfj@newflow.co.uk>
7971L: linux-omap@vger.kernel.org
7972S: Maintained
7973F: arch/arm/boot/dts/am335x-nano.dts
7974
Bob Copeland0ad122d2008-07-25 19:45:18 -07007975OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007976M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07007977L: linux-karma-devel@lists.sourceforge.net
7978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007979F: Documentation/filesystems/omfs.txt
7980F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07007981
Harald Weltec1986ee2005-11-13 16:06:29 -08007982OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007983M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08007984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007985F: drivers/char/pcmcia/cm4000_cs.c
7986F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007987F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08007988
Harald Welte77c44ab2005-11-13 16:06:26 -08007989OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007990M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08007991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007992F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08007993
Jonathan Corbet77d51402007-03-22 19:44:17 -03007994OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007995M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007996L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007997T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03007998S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007999F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03008000
Thomas Gleixner431bca72007-05-02 09:31:35 +02008001ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008002M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02008003L: linux-mtd@lists.infradead.org
8004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008005F: drivers/mtd/onenand/
8006F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02008007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008009M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010L: osst-users@lists.sourceforge.net
8011L: linux-scsi@vger.kernel.org
8012S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07008013F: Documentation/scsi/osst.txt
8014F: drivers/scsi/osst.*
8015F: drivers/scsi/osst_*.h
8016F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008017
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008018OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008019M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01008020L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008022F: Documentation/i2c/busses/i2c-ocores
8023F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008024
Grant Likely860c44c2009-10-26 16:49:49 -07008025OPEN FIRMWARE AND FLATTENED DEVICE TREE
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008026M: Rob Herring <robh+dt@kernel.org>
Grant Likelyc8fb70a2015-08-23 13:34:08 -07008027M: Frank Rowand <frowand.list@gmail.com>
8028M: Grant Likely <grant.likely@linaro.org>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07008029L: devicetree@vger.kernel.org
Rob Herringa7fefe92014-12-26 14:05:54 -06008030W: http://www.devicetree.org/
8031T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
Grant Likely860c44c2009-10-26 16:49:49 -07008032S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07008033F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07008034F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07008035F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07008036
Grant Likelyf8828202013-07-19 18:57:39 -07008037OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Rob Herring5d3ad8a2013-12-03 10:20:16 -06008038M: Rob Herring <robh+dt@kernel.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008039M: Pawel Moll <pawel.moll@arm.com>
8040M: Mark Rutland <mark.rutland@arm.com>
Ian Campbellde809632013-08-30 09:50:42 +01008041M: Ian Campbell <ijc+devicetree@hellion.org.uk>
Kumar Galabdbff6b2013-08-08 10:51:15 -05008042M: Kumar Gala <galak@codeaurora.org>
Grant Likelyf8828202013-07-19 18:57:39 -07008043L: devicetree@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008044T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
Grant Likelyf8828202013-07-19 18:57:39 -07008045S: Maintained
8046F: Documentation/devicetree/
8047F: arch/*/boot/dts/
8048F: include/dt-bindings/
8049
Pantelis Antoniou2bb65f52015-03-17 22:30:57 +02008050OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8051M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8052L: devicetree@vger.kernel.org
8053S: Maintained
8054F: Documentation/devicetree/dynamic-resolution-notes.txt
8055F: Documentation/devicetree/overlay-notes.txt
8056F: drivers/of/overlay.c
8057F: drivers/of/resolver.c
8058
Jonas Bonn19f9d392011-06-04 22:00:38 +03008059OPENRISC ARCHITECTURE
8060M: Jonas Bonn <jonas@southpole.se>
8061W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02008062L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03008063S: Maintained
8064T: git git://openrisc.net/~jonas/linux
Joe Perches14430812013-09-11 14:23:50 -07008065F: arch/openrisc/
Jonas Bonn19f9d392011-06-04 22:00:38 +03008066
Jesse Grossccb13522011-10-25 19:26:31 -07008067OPENVSWITCH
Jesse Gross4f337ed2014-05-16 15:57:59 -07008068M: Pravin Shelar <pshelar@nicira.com>
Pravin B Shelarb422da72015-01-02 11:18:21 -08008069L: netdev@vger.kernel.org
Jesse Grossccb13522011-10-25 19:26:31 -07008070L: dev@openvswitch.org
8071W: http://openvswitch.org
Jesse Grossccb13522011-10-25 19:26:31 -07008072S: Maintained
8073F: net/openvswitch/
Pravin B Shelarb422da72015-01-02 11:18:21 -08008074F: include/uapi/linux/openvswitch.h
Jesse Grossccb13522011-10-25 19:26:31 -07008075
Viresh Kumar875fa6f2015-11-20 15:57:27 -08008076OPERATING PERFORMANCE POINTS (OPP)
8077M: Viresh Kumar <vireshk@kernel.org>
8078M: Nishanth Menon <nm@ti.com>
8079M: Stephen Boyd <sboyd@codeaurora.org>
8080L: linux-pm@vger.kernel.org
8081S: Maintained
8082T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8083F: drivers/base/power/opp/
8084F: include/linux/pm_opp.h
8085F: Documentation/power/opp.txt
8086F: Documentation/devicetree/bindings/opp/
8087
Clemens Ladischaf399172011-01-10 16:32:54 +01008088OPL4 DRIVER
8089M: Clemens Ladisch <clemens@ladisch.de>
8090L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8091T: git git://git.alsa-project.org/alsa-kernel.git
8092S: Maintained
8093F: sound/drivers/opl4/
8094
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01008096M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097L: oprofile-list@lists.sf.net
8098S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02008099F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07008100F: arch/*/oprofile/
8101F: drivers/oprofile/
8102F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008104ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07008105M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08008106M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008107L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
Mark Fasheh01945fa2015-02-27 15:51:40 -08008108W: http://ocfs2.wiki.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008110F: Documentation/filesystems/ocfs2.txt
8111F: Documentation/filesystems/dlmfs.txt
8112F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008113
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07008115L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02008116W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07008117W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01008118S: Orphan
Kalle Valo2be45b62015-11-18 09:57:18 +02008119F: drivers/net/wireless/intersil/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008121OSD LIBRARY and FILESYSTEM
Boaz Harroshfadc0752014-10-19 19:19:57 +03008122M: Boaz Harrosh <ooo@electrozaur.com>
Benny Halevyf1f66302014-02-10 11:57:29 +02008123M: Benny Halevy <bhalevy@primarydata.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02008124L: osd-dev@open-osd.org
8125W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07008126T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02008127S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008128F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07008129F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03008130F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02008131
Miklos Szeredief94b182014-11-20 16:39:59 +01008132OVERLAY FILESYSTEM
Neil Brown7c37fbd2014-10-24 00:14:39 +02008133M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi1d113732014-11-20 16:40:01 +01008134L: linux-unionfs@vger.kernel.org
8135T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
Neil Brown7c37fbd2014-10-24 00:14:39 +02008136S: Supported
Miklos Szeredi1d113732014-11-20 16:40:01 +01008137F: fs/overlayfs/
Neil Brown7c37fbd2014-10-24 00:14:39 +02008138F: Documentation/filesystems/overlayfs.txt
8139
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008140P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008141M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008142L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02008143W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008144S: Maintained
Kalle Valod3466832015-11-18 09:49:59 +02008145F: drivers/net/wireless/intersil/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008146
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008147PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008148M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008149L: netdev@vger.kernel.org
8150S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07008151F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06008152
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008153PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008154M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01008155L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008157F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01008158
Steffen Klassert48fc2672010-08-13 10:10:46 -04008159PADATA PARALLEL EXECUTION MECHANISM
8160M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04008161L: linux-crypto@vger.kernel.org
8162S: Maintained
8163F: kernel/padata.c
8164F: include/linux/padata.h
8165F: Documentation/padata.txt
8166
Harald Welte709ee532008-09-23 17:46:57 +02008167PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008168M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05008169L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02008170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008171F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02008172
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01008173PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07008174M: David Howells <dhowells@redhat.com>
8175M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01008176L: linux-am33-list@redhat.com (moderated for non-subscribers)
8177W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008179F: Documentation/mn10300/
8180F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01008181
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308182PARALLEL PORT SUBSYSTEM
8183M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8184M: Sudip Mukherjee <sudip@vectorindia.org>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008185L: linux-parport@lists.infradead.org (subscribers-only)
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008187F: drivers/parport/
8188F: include/linux/parport*.h
8189F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008190F: include/uapi/linux/ppdev.h
Sudip Mukherjee64dfff02015-05-20 20:57:02 +05308191F: Documentation/parport*.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008193PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008194M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07008195M: Chris Wright <chrisw@sous-sol.org>
8196M: Alok Kataria <akataria@vmware.com>
8197M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00008198L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008199S: Supported
Luis R. Rodrigueza2e19992015-02-13 17:13:40 +10308200F: Documentation/virtual/paravirt_ops.txt
Joe Perches679655d2009-04-07 20:44:32 -07008201F: arch/*/kernel/paravirt*
8202F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008203
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07008205M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07008206L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008208F: Documentation/blockdev/paride.txt
8209F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210
8211PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00008212M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05008213M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00008214L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08008216Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07008217T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00008218T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008220F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008221F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07008222F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00008223F: drivers/char/agp/parisc-agp.c
8224F: drivers/input/serio/gscps2.c
8225F: drivers/parport/parport_gsc.*
8226F: drivers/tty/serial/8250/8250_gsc.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008227F: drivers/video/fbdev/sti*
Helge Deller2b6bac92013-05-30 13:48:07 +00008228F: drivers/video/console/sti*
8229F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230
Jim Cromie1662d322006-10-06 00:43:59 -07008231PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008232M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008233L: lm-sensors@lm-sensors.org
8234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008235F: Documentation/hwmon/pc87360
8236F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07008237
8238PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008239M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07008240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008241F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07008242
Jean Delvare1ad107f2010-08-14 21:09:00 +02008243PC87427 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -07008244M: Jean Delvare <jdelvare@suse.com>
Jean Delvare1ad107f2010-08-14 21:09:00 +02008245L: lm-sensors@lm-sensors.org
8246S: Maintained
8247F: Documentation/hwmon/pc87427
8248F: drivers/hwmon/pc87427.c
8249
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008250PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008251M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008252S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07008253F: drivers/leds/leds-pca9532.c
8254F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02008255
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008256PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07008257M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008258L: linux-i2c@vger.kernel.org
8259S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02008260F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02008261
Khalid Aziz3971dae2012-04-12 12:49:13 -07008262PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07008263M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07008264S: Maintained
8265F: drivers/firmware/pcdp.*
8266
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008267PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07008268M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07008269L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008271F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06008272
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07008274M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07008275L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06008276Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06008277T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008279F: Documentation/PCI/
8280F: drivers/pci/
8281F: include/linux/pci*
Bjorn Helgaas6b49ee42013-10-09 14:39:08 -06008282F: arch/x86/pci/
Bjorn Helgaascad01f92014-04-05 15:07:00 -06008283F: arch/x86/kernel/quirks.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284
Ley Foon Taneaa61112015-10-23 18:27:12 +08008285PCI DRIVER FOR ALTERA PCIE IP
8286M: Ley Foon Tan <lftan@altera.com>
8287L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8288L: linux-pci@vger.kernel.org
8289S: Supported
8290F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8291F: drivers/pci/host/pcie-altera.c
8292
Rob Herringb7e78172015-01-28 10:16:18 -06008293PCI DRIVER FOR ARM VERSATILE PLATFORM
8294M: Rob Herring <robh@kernel.org>
8295L: linux-pci@vger.kernel.org
8296L: linux-arm-kernel@lists.infradead.org
8297S: Maintained
8298F: Documentation/devicetree/bindings/pci/versatile.txt
8299F: drivers/pci/host/pci-versatile.c
8300
Tanmay Inamdar5f6b6cc2014-10-01 13:01:35 -06008301PCI DRIVER FOR APPLIEDMICRO XGENE
8302M: Tanmay Inamdar <tinamdar@apm.com>
8303L: linux-pci@vger.kernel.org
8304L: linux-arm-kernel@lists.infradead.org
8305S: Maintained
8306F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8307F: drivers/pci/host/pci-xgene.c
8308
Minghuan Lian62d0ff832014-11-05 16:45:11 +08008309PCI DRIVER FOR FREESCALE LAYERSCAPE
8310M: Minghuan Lian <minghuan.Lian@freescale.com>
8311M: Mingkai Hu <mingkai.hu@freescale.com>
8312M: Roy Zang <tie-fei.zang@freescale.com>
8313L: linuxppc-dev@lists.ozlabs.org
8314L: linux-pci@vger.kernel.org
8315L: linux-arm-kernel@lists.infradead.org
8316S: Maintained
8317F: drivers/pci/host/*layerscape*
8318
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008319PCI DRIVER FOR IMX6
Lucas Stachf175aa22015-01-19 11:17:31 +01008320M: Richard Zhu <Richard.Zhu@freescale.com>
Lucas Stach1ba55f52014-07-31 20:16:04 +02008321M: Lucas Stach <l.stach@pengutronix.de>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008322L: linux-pci@vger.kernel.org
8323L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8324S: Maintained
8325F: drivers/pci/host/*imx6*
8326
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06008327PCI DRIVER FOR TI KEYSTONE
8328M: Murali Karicheri <m-karicheri2@ti.com>
8329L: linux-pci@vger.kernel.org
8330L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8331S: Maintained
8332F: drivers/pci/host/*keystone*
8333
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008334PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8335M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8336M: Jason Cooper <jason@lakedaemon.net>
8337L: linux-pci@vger.kernel.org
8338L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8339S: Maintained
8340F: drivers/pci/host/*mvebu*
8341
Thierry Reding0447cfd2013-08-09 16:49:32 +02008342PCI DRIVER FOR NVIDIA TEGRA
8343M: Thierry Reding <thierry.reding@gmail.com>
8344L: linux-tegra@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008345L: linux-pci@vger.kernel.org
Thierry Reding0447cfd2013-08-09 16:49:32 +02008346S: Supported
8347F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8348F: drivers/pci/host/pci-tegra.c
8349
Kishon Vijay Abraham I47ff3de2014-07-22 15:23:45 -06008350PCI DRIVER FOR TI DRA7XX
8351M: Kishon Vijay Abraham I <kishon@ti.com>
8352L: linux-omap@vger.kernel.org
8353L: linux-pci@vger.kernel.org
8354S: Supported
8355F: Documentation/devicetree/bindings/pci/ti-pci.txt
8356F: drivers/pci/host/pci-dra7xx.c
8357
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008358PCI DRIVER FOR RENESAS R-CAR
8359M: Simon Horman <horms@verge.net.au>
8360L: linux-pci@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09008361L: linux-renesas-soc@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008362S: Maintained
8363F: drivers/pci/host/*rcar*
8364
Jingoo Han4af82252013-09-12 20:29:24 +09008365PCI DRIVER FOR SAMSUNG EXYNOS
Jingoo Hanb7701752015-05-14 15:17:07 -07008366M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han4af82252013-09-12 20:29:24 +09008367L: linux-pci@vger.kernel.org
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008368L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8369L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Jingoo Han4af82252013-09-12 20:29:24 +09008370S: Maintained
8371F: drivers/pci/host/pci-exynos.c
8372
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008373PCI DRIVER FOR SYNOPSIS DESIGNWARE
Jingoo Hanb7701752015-05-14 15:17:07 -07008374M: Jingoo Han <jingoohan1@gmail.com>
Pratyush Anand110baab2015-04-30 09:46:07 +05308375M: Pratyush Anand <pratyush.anand@gmail.com>
Bjorn Helgaasf0b75692013-12-11 10:40:59 -07008376L: linux-pci@vger.kernel.org
8377S: Maintained
8378F: drivers/pci/host/*designware*
8379
Will Deaconcf288552014-05-01 12:04:28 +01008380PCI DRIVER FOR GENERIC OF HOSTS
8381M: Will Deacon <will.deacon@arm.com>
8382L: linux-pci@vger.kernel.org
8383L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8384S: Maintained
8385F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8386F: drivers/pci/host/pci-host-generic.c
8387
Keith Busch185a3832016-01-12 13:18:10 -07008388PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8389M: Keith Busch <keith.busch@intel.com>
8390L: linux-pci@vger.kernel.org
8391S: Supported
8392F: arch/x86/pci/vmd.c
8393
Pratyush Anand51b66a62014-02-11 11:39:26 +05308394PCIE DRIVER FOR ST SPEAR13XX
Pratyush Anand110baab2015-04-30 09:46:07 +05308395M: Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05308396L: linux-pci@vger.kernel.org
Pratyush Anand110baab2015-04-30 09:46:07 +05308397S: Maintained
Pratyush Anand51b66a62014-02-11 11:39:26 +05308398F: drivers/pci/host/*spear*
8399
Ley Foon Tanaf1169b2015-10-23 18:27:13 +08008400PCI MSI DRIVER FOR ALTERA MSI IP
8401M: Ley Foon Tan <lftan@altera.com>
8402L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8403L: linux-pci@vger.kernel.org
8404S: Supported
8405F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8406F: drivers/pci/host/pcie-altera-msi.c
8407
Duc Dangdcd19de2015-06-05 15:56:34 -05008408PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8409M: Duc Dang <dhdang@apm.com>
8410L: linux-pci@vger.kernel.org
8411L: linux-arm-kernel@lists.infradead.org
8412S: Maintained
8413F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8414F: drivers/pci/host/pci-xgene-msi.c
8415
Zhou Wang500a1d92015-10-29 20:02:51 -05008416PCIE DRIVER FOR HISILICON
8417M: Zhou Wang <wangzhou1@hisilicon.com>
Gabriele Paoloni5930fe42015-11-27 01:17:05 +08008418M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
Zhou Wang500a1d92015-10-29 20:02:51 -05008419L: linux-pci@vger.kernel.org
8420S: Maintained
8421F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8422F: drivers/pci/host/pcie-hisi.c
8423
Stanimir Varbanov82a82382015-12-18 14:38:57 +02008424PCIE DRIVER FOR QUALCOMM MSM
8425M: Stanimir Varbanov <svarbanov@mm-sol.com>
8426L: linux-pci@vger.kernel.org
8427L: linux-arm-msm@vger.kernel.org
8428S: Maintained
8429F: drivers/pci/host/*qcom*
8430
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008432P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07008433L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08008434W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Fengguang Wu9f273c22016-01-20 15:03:25 -08008435T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07008436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008437F: Documentation/pcmcia/
8438F: drivers/pcmcia/
8439F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440
8441PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08008442M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07008443L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008444S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07008445F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446
Steffen Klassert48fc2672010-08-13 10:10:46 -04008447PCRYPT PARALLEL CRYPTO ENGINE
8448M: Steffen Klassert <steffen.klassert@secunet.com>
8449L: linux-crypto@vger.kernel.org
8450S: Maintained
8451F: crypto/pcrypt.c
8452F: include/crypto/pcrypt.h
8453
Tejun Heoe72df0b2010-12-10 17:02:49 +01008454PER-CPU MEMORY ALLOCATOR
8455M: Tejun Heo <tj@kernel.org>
8456M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01008457T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8458S: Maintained
8459F: include/linux/percpu*.h
8460F: mm/percpu*.c
8461F: arch/*/include/asm/percpu.h
8462
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008463PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07008464M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008466F: include/linux/delayacct.h
8467F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07008468
Ingo Molnar57c0c152009-09-21 12:20:38 +02008469PERFORMANCE EVENTS SUBSYSTEM
Peter Zijlstradaecbd2672015-11-16 11:07:44 +01008470M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01008471M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melof80c5392014-03-27 17:36:14 -03008472M: Arnaldo Carvalho de Melo <acme@kernel.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008473L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008474T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008475S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09008476F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02008477F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008478F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01008479F: arch/*/kernel/perf_event*.c
8480F: arch/*/kernel/*/perf_event*.c
8481F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02008482F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02008483F: arch/*/kernel/perf_callchain.c
8484F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10008485
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008486PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008487M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008488L: linux-abi-devel@lists.sourceforge.net
8489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008490F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008491F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01008492
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008493PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00008494M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008495S: Supported
8496F: Documentation/networking/phonet.txt
8497F: include/linux/phonet.h
8498F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008499F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00008500F: net/phonet/
8501
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008503M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008504L: linux-mtd@lists.infradead.org
8505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008506F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507
Bruno Prémontefdbb102012-07-30 21:39:03 +02008508PICOLCD HID DRIVER
8509M: Bruno Prémont <bonbons@linux-vserver.org>
8510L: linux-input@vger.kernel.org
8511S: Maintained
8512F: drivers/hid/hid-picolcd*
8513
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008514PICOXCELL SUPPORT
8515M: Jamie Iles <jamie@jamieiles.com>
8516L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8517T: git git://github.com/jamieiles/linux-2.6-ji.git
8518S: Supported
Joe Perchesb8733982014-08-08 14:25:12 -07008519F: arch/arm/boot/dts/picoxcell*
Joe Perches14430812013-09-11 14:23:50 -07008520F: arch/arm/mach-picoxcell/
Joe Perchesb8733982014-08-08 14:25:12 -07008521F: drivers/crypto/picoxcell*
Jamie Ilesa53bfa02011-12-12 20:28:42 +00008522
Linus Walleij2744e8a2011-05-02 20:50:54 +02008523PIN CONTROL SUBSYSTEM
8524M: Linus Walleij <linus.walleij@linaro.org>
David Cohenc11f0422014-10-16 19:06:59 -07008525L: linux-gpio@vger.kernel.org
Linus Walleijdbe752a2015-01-19 11:27:19 +01008526T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
Linus Walleij2744e8a2011-05-02 20:50:54 +02008527S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07008528F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008529F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02008530
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008531PIN CONTROLLER - ATMEL AT91
8532M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8533L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8534S: Maintained
Alexandre Bellonic654b6b2014-10-17 11:49:40 +02008535F: drivers/pinctrl/pinctrl-at91.*
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02008536
Ludovic Desroches33d36902015-09-16 17:36:59 +02008537PIN CONTROLLER - ATMEL AT91 PIO4
8538M: Ludovic Desroches <ludovic.desroches@atmel.com>
8539L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8540L: linux-gpio@vger.kernel.org
8541S: Supported
8542F: drivers/pinctrl/pinctrl-at91-pio4.*
8543
Mika Westerbergcbd1b652014-10-24 15:16:53 +03008544PIN CONTROLLER - INTEL
8545M: Mika Westerberg <mika.westerberg@linux.intel.com>
8546M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8547S: Maintained
8548F: drivers/pinctrl/intel/
Viresh Kumardeda8282012-03-28 22:27:07 +05308549
Laurent Pinchart9963b532014-07-02 16:33:31 +02008550PIN CONTROLLER - RENESAS
8551M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Geert Uytterhoeven1a4ca6d2015-12-16 08:47:11 +01008552M: Geert Uytterhoeven <geert+renesas@glider.be>
Simon Horman4a121092016-01-18 10:04:33 +09008553L: linux-renesas-soc@vger.kernel.org
Laurent Pinchart9963b532014-07-02 16:33:31 +02008554S: Maintained
8555F: drivers/pinctrl/sh-pfc/
8556
Doug Andersonb75e60d2013-06-16 15:17:46 -07008557PIN CONTROLLER - SAMSUNG
Tomasz Figafea685e2014-08-26 16:30:53 +02008558M: Tomasz Figa <tomasz.figa@gmail.com>
Doug Andersonb75e60d2013-06-16 15:17:46 -07008559L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8560L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8561S: Maintained
Sachin Kamat9b5b33f2014-07-11 14:29:50 +05308562F: drivers/pinctrl/samsung/
Doug Andersonb75e60d2013-06-16 15:17:46 -07008563
Tony Lindgren13cbd902015-12-10 14:27:32 -08008564PIN CONTROLLER - SINGLE
8565M: Tony Lindgren <tony@atomide.com>
8566M: Haojian Zhuang <haojian.zhuang@linaro.org>
8567L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8568L: linux-omap@vger.kernel.org
8569S: Maintained
8570F: drivers/pinctrl/pinctrl-single.c
8571
Viresh Kumardeda8282012-03-28 22:27:07 +05308572PIN CONTROLLER - ST SPEAR
Viresh Kumarda899472015-07-17 16:23:50 -07008573M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumardeda8282012-03-28 22:27:07 +05308574L: spear-devel@list.st.com
8575L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8576W: http://www.st.com/spear
8577S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02008578F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05308579
Peter Osterlund249a6772005-09-27 21:45:30 -07008580PKTCDVD DRIVER
Jiri Kosinae5f64502015-08-09 09:11:34 +02008581M: Jiri Kosina <jikos@kernel.org>
Peter Osterlund249a6772005-09-27 21:45:30 -07008582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008583F: drivers/block/pktcdvd.c
8584F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008585F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07008586
GuanXuetaob31d8272011-01-16 00:35:49 +08008587PKUNITY SOC DRIVERS
8588M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8589W: http://mprc.pku.edu.cn/~guanxuetao/linux
8590S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +08008591T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +08008592F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08008593F: drivers/i2c/busses/i2c-puv3.c
Jingoo Han8a61f012014-07-01 15:36:01 +09008594F: drivers/video/fbdev/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08008595F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08008596
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008597PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07008598M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07008599L: lm-sensors@lm-sensors.org
8600W: http://www.lm-sensors.org/
8601W: http://www.roeck-us.net/linux/drivers/
8602T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8603S: Maintained
8604F: Documentation/hwmon/pmbus
8605F: drivers/hwmon/pmbus/
8606F: include/linux/i2c/pmbus.h
8607
Anil Ravindranath89a36812009-08-25 17:35:18 -07008608PMC SIERRA MaxRAID DRIVER
Anil Ravindranath89a36812009-08-25 17:35:18 -07008609L: linux-scsi@vger.kernel.org
8610W: http://www.pmc-sierra.com/
Joe Perches3cdea4d712015-09-09 15:36:14 -07008611S: Orphan
Anil Ravindranath89a36812009-08-25 17:35:18 -07008612F: drivers/scsi/pmcraid.*
8613
jack wangdbf9bfe2009-10-14 16:19:21 +08008614PMC SIERRA PM8001 DRIVER
Jack Wangd32477e2015-07-29 12:02:50 +02008615M: Jack Wang <jinpu.wang@profitbricks.com>
jack wangdbf9bfe2009-10-14 16:19:21 +08008616M: lindar_liu@usish.com
Suresh Thiagarajanf5a7b522014-07-30 17:37:43 +05308617L: pmchba@pmcs.com
jack wangdbf9bfe2009-10-14 16:19:21 +08008618L: linux-scsi@vger.kernel.org
8619S: Supported
8620F: drivers/scsi/pm8001/
8621
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07008623M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01008624L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008625T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008627F: fs/timerfd.c
8628F: include/linux/timer*
Thomas Gleixner5cee9642014-06-22 12:06:40 +02008629F: kernel/time/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008630
Rafael J. Wysocki7b06a6d2015-12-05 01:54:47 +01008631POWER MANAGEMENT CORE
8632M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8633L: linux-pm@vger.kernel.org
8634T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8635S: Supported
8636F: drivers/base/power/
8637F: include/linux/pm.h
8638F: include/linux/pm_*
8639F: include/linux/powercap.h
8640F: drivers/powercap/
8641
Anton Vorontsov3be86142007-07-15 04:43:36 +04008642POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008643M: Sebastian Reichel <sre@kernel.org>
Dmitry Eremin-Solenikov57318932014-01-21 03:33:09 +04008644M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008645M: David Woodhouse <dwmw2@infradead.org>
Sebastian Reichelad8464a2014-07-16 20:14:30 +02008646L: linux-pm@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008647T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04008648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008649F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07008650F: drivers/power/
Sebastian Reichel26305022015-07-24 23:11:28 +02008651X: drivers/power/avs/
Anton Vorontsov3be86142007-07-15 04:43:36 +04008652
Mark Rutland514f1612015-07-31 15:46:20 +01008653POWER STATE COORDINATION INTERFACE (PSCI)
8654M: Mark Rutland <mark.rutland@arm.com>
8655M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8656L: linux-arm-kernel@lists.infradead.org
8657S: Maintained
8658F: drivers/firmware/psci.c
8659F: include/linux/psci.h
8660F: include/uapi/linux/psci.h
8661
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662PNP SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -07008663M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008665F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666
8667PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07008668M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008669L: linux-ppp@vger.kernel.org
8670S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008671F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672
8673PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07008674M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008676F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008677F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008678
8679PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07008680M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008681S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008682F: drivers/net/ppp/pppoe.c
8683F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684
James Chapmana6d23702007-06-27 15:53:17 -07008685PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07008686M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07008687S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07008688F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07008689F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008690F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07008691
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008692PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008693M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008694W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8695L: linuxpps@ml.enneenne.com (subscribers-only)
8696S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07008697F: Documentation/pps/
8698F: drivers/pps/
8699F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07008700
Harry Wei71a6d0a2011-05-11 15:13:33 -07008701PPTP DRIVER
8702M: Dmitry Kozlov <xeb@mail.ru>
8703L: netdev@vger.kernel.org
8704S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07008705F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07008706W: http://sourceforge.net/projects/accel-pptp
8707
Linus Torvalds1da177e2005-04-16 15:20:36 -07008708PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07008709M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008710L: kpreempt-tech@lists.sourceforge.net
8711W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8712S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008713F: Documentation/preempt-locking.txt
8714F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008715
8716PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008717M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07008718L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04008719W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04008720S: Obsolete
Kalle Valoc12edfe2015-11-18 09:56:45 +02008721F: drivers/net/wireless/intersil/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008722
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008723PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008724M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008725L: netdev@vger.kernel.org
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008726L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008727S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07008728F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09008729
Geoff Levandf58a9d12006-11-23 00:46:51 +01008730PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00008731M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10008732L: linuxppc-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00008733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008734F: arch/powerpc/boot/ps3*
8735F: arch/powerpc/include/asm/lv1call.h
8736F: arch/powerpc/include/asm/ps3*.h
8737F: arch/powerpc/platforms/ps3/
8738F: drivers/*/ps3*
8739F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00008740F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07008741F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00008742F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01008743
Jim Pariscffb4add2009-01-06 11:32:10 +00008744PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008745M: Jim Paris <jim@jtan.com>
Geoff Levand3715a5d2015-06-10 18:00:18 +00008746M: Geoff Levand <geoff@infradead.org>
Michael Ellermana14ab6b2015-05-01 13:20:25 +10008747L: linuxppc-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00008748S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07008749F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00008750
Anton Vorontsov8defe592012-08-03 18:07:20 -07008751PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07008752M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07008753M: Colin Cross <ccross@android.com>
8754M: Kees Cook <keescook@chromium.org>
8755M: Tony Luck <tony.luck@intel.com>
8756S: Maintained
Fengguang Wu9f273c22016-01-20 15:03:25 -08008757T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Anton Vorontsov8defe592012-08-03 18:07:20 -07008758F: fs/pstore/
8759F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00008760F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07008761F: drivers/acpi/apei/erst.c
8762
Richard Cochran7fbc4152012-03-10 01:55:53 +00008763PTP HARDWARE CLOCK SUPPORT
8764M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00008765L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00008766S: Maintained
8767W: http://linuxptp.sourceforge.net/
8768F: Documentation/ABI/testing/sysfs-ptp
8769F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07008770F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00008771F: drivers/net/phy/dp83640*
8772F: drivers/ptp/*
8773F: include/linux/ptp_cl*
8774
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008775PTRACE SUPPORT
Richard Weinbergere846ee52014-08-08 14:23:46 -07008776M: Roland McGrath <roland@hack.frob.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008777M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008778S: Maintained
8779F: include/asm-generic/syscall.h
8780F: include/linux/ptrace.h
8781F: include/linux/regset.h
8782F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008783F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07008784F: kernel/ptrace.c
8785
Michael Krufky83202042006-07-03 00:24:18 -07008786PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008787M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03008788L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008789L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07008790W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008791T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07008792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008793F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008794F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07008795
Hans de Goede39532e62012-11-04 17:05:59 -03008796PWC WEBCAM DRIVER
8797M: Hans de Goede <hdegoede@redhat.com>
8798L: linux-media@vger.kernel.org
8799T: git git://linuxtv.org/media_tree.git
8800S: Maintained
8801F: drivers/media/usb/pwc/*
8802
Kamil Debski93c090b2014-08-20 11:29:23 +02008803PWM FAN DRIVER
8804M: Kamil Debski <k.debski@samsung.com>
8805L: lm-sensors@lm-sensors.org
8806S: Supported
8807F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8808F: Documentation/hwmon/pwm-fan
8809F: drivers/hwmon/pwm-fan.c
8810
Thierry Reding200efed2012-03-27 13:16:18 +02008811PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02008812M: Thierry Reding <thierry.reding@gmail.com>
8813L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008814S: Maintained
Thierry Reding006e8542013-11-01 11:15:05 +01008815T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
Thierry Reding200efed2012-03-27 13:16:18 +02008816F: Documentation/pwm.txt
8817F: Documentation/devicetree/bindings/pwm/
8818F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008819F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07008820F: drivers/video/backlight/pwm_bl.c
8821F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01008822
Eric Miao30ec2612008-06-12 15:21:41 -07008823PXA2xx/PXA3xx SUPPORT
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008824M: Daniel Mack <daniel@zonque.org>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008825M: Haojian Zhuang <haojian.zhuang@gmail.com>
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008826M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07008827L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008828T: git git://github.com/hzhuang1/linux.git
Robert Jarzmik8da5e302014-09-24 23:08:00 +02008829T: git git://github.com/rjarzmik/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008831F: arch/arm/mach-pxa/
Robert Jarzmik820439f2015-05-25 23:29:19 +02008832F: drivers/dma/pxa*
Joe Perches679655d2009-04-07 20:44:32 -07008833F: drivers/pcmcia/pxa2xx*
Robert Jarzmik1403ead2015-11-21 19:04:48 +01008834F: drivers/pinctrl/pxa/
Joe Perches9df92e62012-01-10 15:09:06 -08008835F: drivers/spi/spi-pxa2xx*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -07008836F: drivers/usb/gadget/udc/pxa2*
Joe Perches679655d2009-04-07 20:44:32 -07008837F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01008838F: sound/arm/pxa*
Joe Perches14430812013-09-11 14:23:50 -07008839F: sound/soc/pxa/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008840
Robert Jarzmikf3154a42015-12-18 22:41:34 +01008841PXA GPIO DRIVER
8842M: Robert Jarzmik <robert.jarzmik@free.fr>
8843L: linux-gpio@vger.kernel.org
8844S: Maintained
8845F: drivers/gpio/gpio-pxa.c
8846
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008847PXA3xx NAND FLASH DRIVER
8848M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8849L: linux-mtd@lists.infradead.org
8850S: Maintained
Joe Perches9a67f092014-08-08 14:25:10 -07008851F: drivers/mtd/nand/pxa3xx_nand.c
Ezequiel Garciaec64d3b2013-12-04 15:28:46 -08008852
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008853MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07008854M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08008855M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008856L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008857T: git git://github.com/hzhuang1/linux.git
8858T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008859S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08008860F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08008861
Pierre Ossman272f1332007-05-14 21:25:26 +02008862PXA MMCI DRIVER
8863S: Orphan
8864
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008865PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008866M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08008867L: rtc-linux@googlegroups.com
8868S: Maintained
8869
Tadeusz Strukcea40012014-06-05 13:44:39 -07008870QAT DRIVER
Joe Perches49e7d9d2015-04-15 16:17:31 -07008871M: Tadeusz Struk <tadeusz.struk@intel.com>
8872L: qat-linux@intel.com
8873S: Supported
8874F: drivers/crypto/qat/
Tadeusz Strukcea40012014-06-05 13:44:39 -07008875
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008876QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04008877M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07008878L: linux-rdma@vger.kernel.org
8879S: Supported
8880F: drivers/infiniband/hw/qib/
8881
Jes Sorensen5e9772b2010-06-30 15:37:38 +02008882QLOGIC QLA1280 SCSI DRIVER
8883M: Michael Reed <mdr@sgi.com>
8884L: linux-scsi@vger.kernel.org
8885S: Maintained
8886F: drivers/scsi/qla1280.[ch]
8887
Linus Torvalds1da177e2005-04-16 15:20:36 -07008888QLOGIC QLA2XXX FC-SCSI DRIVER
Saurav Kashyap2c804eb2013-10-30 03:38:28 -04008889M: qla2xxx-upstream@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890L: linux-scsi@vger.kernel.org
8891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008892F: Documentation/scsi/LICENSE.qla2xxx
8893F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008894
Ravi Anand883c98f2010-04-28 11:45:49 +05308895QLOGIC QLA4XXX iSCSI DRIVER
Nilesh Javali1018b8b2015-01-07 00:49:23 -05008896M: QLogic-Storage-Upstream@qlogic.com
Ravi Anand883c98f2010-04-28 11:45:49 +05308897L: linux-scsi@vger.kernel.org
8898S: Supported
Vikas Chaudharybacfb812013-07-11 02:09:43 -04008899F: Documentation/scsi/LICENSE.qla4xxx
Ravi Anand883c98f2010-04-28 11:45:49 +05308900F: drivers/scsi/qla4xxx/
8901
Ron Mercer5a4faa872006-07-25 00:40:21 -07008902QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00008903M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008904M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07008905M: linux-driver@qlogic.com
8906L: netdev@vger.kernel.org
8907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008908F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008909F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07008910
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008911QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Shahed Shaikh9f35a3c2014-08-27 12:43:21 -04008912M: Dept-GELinuxNICDev@qlogic.com
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008913L: netdev@vger.kernel.org
8914S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008915F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00008916
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008917QLOGIC QLGE 10Gb ETHERNET DRIVER
Harish Patilc9b1a5b2014-09-18 17:27:25 -04008918M: Harish Patil <harish.patil@qlogic.com>
8919M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8920M: Dept-GELinuxNICDev@qlogic.com
Joe Perches4cbfbe22009-07-29 15:04:21 -07008921M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008922L: netdev@vger.kernel.org
8923S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07008924F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04008925
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02008926QLOGIC QL4xxx ETHERNET DRIVER
8927M: Yuval Mintz <Yuval.Mintz@qlogic.com>
8928M: Ariel Elior <Ariel.Elior@qlogic.com>
8929M: everest-linux-l2@qlogic.com
8930L: netdev@vger.kernel.org
8931S: Supported
8932F: drivers/net/ethernet/qlogic/qed/
8933F: include/linux/qed/
8934F: drivers/net/ethernet/qlogic/qede/
8935
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008937M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008938W: http://www.alarsen.net/linux/qnx4fs/
8939S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008940F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008941F: include/uapi/linux/qnx4_fs.h
8942F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008943
Antti Palosaari91952bc2012-10-01 12:28:46 -03008944QT1010 MEDIA DRIVER
8945M: Antti Palosaari <crope@iki.fi>
8946L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02008947W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03008948W: http://palosaari.fi/linux/
8949Q: http://patchwork.linuxtv.org/project/linux-media/list/
8950T: git git://linuxtv.org/anttip/media_tree.git
8951S: Maintained
8952F: drivers/media/tuners/qt1010*
8953
Sujith Manoharan966fb5e2013-11-06 10:43:27 +05308954QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8955M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8956L: linux-wireless@vger.kernel.org
8957L: ath9k-devel@lists.ath9k.org
8958W: http://wireless.kernel.org/en/users/Drivers/ath9k
8959S: Supported
8960F: drivers/net/wireless/ath/ath9k/
8961
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008962QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8963M: Kalle Valo <kvalo@qca.qualcomm.com>
8964L: ath10k@lists.infradead.org
8965W: http://wireless.kernel.org/en/users/Drivers/ath10k
Fengguang Wu9f273c22016-01-20 15:03:25 -08008966T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03008967S: Supported
8968F: drivers/net/wireless/ath/ath10k/
8969
Richard Kuo4f4567c2011-10-31 18:56:38 -05008970QUALCOMM HEXAGON ARCHITECTURE
8971M: Richard Kuo <rkuo@codeaurora.org>
8972L: linux-hexagon@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -08008973T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
Richard Kuo4f4567c2011-10-31 18:56:38 -05008974S: Supported
8975F: arch/hexagon/
8976
Eugene Krasnikov8e84c252013-10-08 21:25:58 +01008977QUALCOMM WCN36XX WIRELESS DRIVER
8978M: Eugene Krasnikov <k.eugene.e@gmail.com>
8979L: wcn36xx@lists.infradead.org
8980W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8981T: git git://github.com/KrasnikovEugene/wcn36xx.git
8982S: Supported
8983F: drivers/net/wireless/ath/wcn36xx/
8984
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008985RADOS BLOCK DEVICE (RBD)
Sage Weil0f5417c2015-02-19 10:10:40 -08008986M: Ilya Dryomov <idryomov@gmail.com>
8987M: Sage Weil <sage@redhat.com>
Alex Elder527a88b2013-12-26 08:37:43 -06008988M: Alex Elder <elder@kernel.org>
Sage Weil398ecff52015-07-09 11:46:14 -04008989L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07008990W: http://ceph.com/
8991T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil6e67b7a2015-07-09 11:47:37 -04008992T: git git://github.com/ceph/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008993S: Supported
Sage Weil398ecff52015-07-09 11:46:14 -04008994F: Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -07008995F: drivers/block/rbd.c
8996F: drivers/block/rbd_types.h
8997
Linus Torvalds1da177e2005-04-16 15:20:36 -07008998RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008999M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009000L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009001S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009002F: drivers/video/fbdev/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009003F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009004
Hans de Goedec6c9b342012-11-04 17:03:58 -03009005RADIOSHARK RADIO DRIVER
9006M: Hans de Goede <hdegoede@redhat.com>
9007L: linux-media@vger.kernel.org
9008T: git git://linuxtv.org/media_tree.git
9009S: Maintained
9010F: drivers/media/radio/radio-shark.c
9011
9012RADIOSHARK2 RADIO DRIVER
9013M: Hans de Goede <hdegoede@redhat.com>
9014L: linux-media@vger.kernel.org
9015T: git git://linuxtv.org/media_tree.git
9016S: Maintained
9017F: drivers/media/radio/radio-shark2.c
9018F: drivers/media/radio/radio-tea5777.c
9019
Linus Torvalds1da177e2005-04-16 15:20:36 -07009020RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009021M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009022L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009023S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009024F: drivers/video/fbdev/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009025
John Crispina0fd81a2016-01-04 20:28:13 +01009026RALINK MIPS ARCHITECTURE
9027M: John Crispin <blogic@openwrt.org>
9028L: linux-mips@linux-mips.org
9029S: Maintained
9030F: arch/mips/ralink
9031
Randy Dunlape7839f22008-10-12 16:11:45 -07009032RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009033P: rt2x00 project
Stanislaw Gruszkab1824272014-09-28 14:03:06 +02009034M: Stanislaw Gruszka <sgruszka@redhat.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01009035M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009036L: linux-wireless@vger.kernel.org
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009037S: Maintained
Kalle Valo33aca942015-11-18 10:18:44 +02009038F: drivers/net/wireless/ralink/rt2x00/
Ivo van Doorn95ea3622007-09-25 17:57:13 -07009039
Nick Piggin9db55792008-02-08 04:19:49 -08009040RAMDISK RAM BLOCK DEVICE DRIVER
Ross Zwislerea7618e2015-03-17 12:56:30 -06009041M: Jens Axboe <axboe@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08009042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009043F: Documentation/blockdev/ramdisk.txt
9044F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08009045
Matt Mackall9e95ce22005-04-16 15:25:56 -07009046RANDOM NUMBER DRIVER
Christoph Hellwig0624bca2014-04-25 01:12:01 -07009047M: "Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07009048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009049F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07009050
Matt Porter394b7012005-11-07 01:00:15 -08009051RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009052M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08009053M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08009054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009055F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08009056
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009057RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009058L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04009059S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009060F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009061
9062RCUTORTURE MODULE
Josh Triplette0198b22014-07-30 16:08:42 -07009063M: Josh Triplett <josh@joshtriplett.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009064M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009065L: linux-kernel@vger.kernel.org
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009066S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009067T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07009068F: Documentation/RCU/torture.txt
Joe Perches34e2d562014-07-03 15:08:00 -07009069F: kernel/rcu/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009070
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009071RCUTORTURE TEST FRAMEWORK
9072M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009073M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009074R: Steven Rostedt <rostedt@goodmis.org>
9075R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009076R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009077L: linux-kernel@vger.kernel.org
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07009078S: Supported
9079T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9080F: tools/testing/selftests/rcutorture
9081
Florian Fainellic1f766b2008-02-06 22:39:44 +01009082RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07009083M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01009084S: Maintained
9085
Florian Fainellidb17f392007-12-19 11:30:30 +01009086RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009087M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01009088L: netdev@vger.kernel.org
9089S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07009090F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01009091
Andy Grovera09ed662009-02-24 15:30:41 +00009092RDS - RELIABLE DATAGRAM SOCKETS
Venkat Venkatsubra8a85ac42014-01-30 13:28:47 -08009093M: Chien Yen <chien.yen@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00009094L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00009095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009096F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00009097
Josh Triplett595182b2006-10-04 02:17:21 -07009098READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07009099M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -07009100M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -07009101R: Steven Rostedt <rostedt@goodmis.org>
9102R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Lai Jiangshan96a39bc2015-07-01 15:26:27 +08009103R: Lai Jiangshan <jiangshanlai@gmail.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009104L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009105W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07009106S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07009107T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009108F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07009109X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08009110F: include/linux/rcu*
Paul E. McKenney4102ada2013-10-08 20:23:47 -07009111X: include/linux/srcu.h
9112F: kernel/rcu/
Joe Perches34e2d562014-07-03 15:08:00 -07009113X: kernel/torture.c
Josh Triplett595182b2006-10-04 02:17:21 -07009114
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009115REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07009116M: Alessandro Zummo <a.zummo@towertech.it>
Alexandre Belloni7c6f84f2015-04-16 12:45:43 -07009117M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Alessandro Zummo76465492006-12-10 02:19:06 -08009118L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08009119Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alexandre Belloni4733f392015-05-26 11:13:04 +02009120T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009122F: Documentation/rtc.txt
9123F: drivers/rtc/
9124F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009125F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08009126
Mark Brown0e400c52014-07-31 12:38:31 +01009127REALTEK AUDIO CODECS
9128M: Bard Liao <bardliao@realtek.com>
9129M: Oder Chiou <oder_chiou@realtek.com>
9130S: Maintained
9131F: sound/soc/codecs/rt*
9132F: include/sound/rt*.h
9133
Linus Torvalds1da177e2005-04-16 15:20:36 -07009134REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07009135L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009137F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009138
Mark Brownb83a3132011-05-11 19:59:58 +02009139REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01009140M: Mark Brown <broonie@kernel.org>
Mark Browndd060bc2014-08-16 12:30:58 +01009141L: linux-kernel@vger.kernel.org
Mark Brownb83a3132011-05-11 19:59:58 +02009142T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9143S: Supported
9144F: drivers/base/regmap/
9145F: include/linux/regmap.h
9146
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009147REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9148M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03009149T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009150S: Maintained
9151F: drivers/remoteproc/
9152F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07009153F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02009154
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03009155REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9156M: Ohad Ben-Cohen <ohad@wizery.com>
9157T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9158S: Maintained
9159F: drivers/rpmsg/
9160F: Documentation/rpmsg.txt
9161F: include/linux/rpmsg.h
9162
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009163RENESAS ETHERNET DRIVERS
9164R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9165L: netdev@vger.kernel.org
Simon Horman4a121092016-01-18 10:04:33 +09009166L: linux-renesas-soc@vger.kernel.org
Sergei Shtylyov8e6569a2015-12-05 04:50:48 +03009167F: drivers/net/ethernet/renesas/
9168F: include/linux/sh_eth.h
9169
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009170RENESAS USB2 PHY DRIVER
9171M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Simon Horman4a121092016-01-18 10:04:33 +09009172L: linux-renesas-soc@vger.kernel.org
Yoshihiro Shimoda3e46c392015-11-30 10:44:33 +09009173S: Maintained
9174F: drivers/phy/phy-rcar-gen3-usb2.c
9175
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009176RESET CONTROLLER FRAMEWORK
9177M: Philipp Zabel <p.zabel@pengutronix.de>
Fengguang Wu9f273c22016-01-20 15:03:25 -08009178T: git git://git.pengutronix.de/git/pza/linux
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009179S: Maintained
9180F: drivers/reset/
9181F: Documentation/devicetree/bindings/reset/
Philipp Zabelb2f6dd72015-02-13 12:14:40 +01009182F: include/dt-bindings/reset/
Philipp Zabel1b0fe6b2014-05-27 15:58:09 +02009183F: include/linux/reset.h
9184F: include/linux/reset-controller.h
9185
Ivo van Doorne08976452008-04-12 19:23:55 +02009186RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07009187M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02009188L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02009189W: http://wireless.kernel.org/
9190T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9191T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02009192S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08009193F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07009194F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02009195
Thomas Graf933685c2015-01-13 01:01:24 +01009196RHASHTABLE
9197M: Thomas Graf <tgraf@suug.ch>
9198L: netdev@vger.kernel.org
9199S: Maintained
9200F: lib/rhashtable.c
9201F: include/linux/rhashtable.h
9202
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009203RICOH SMARTMEDIA/XD DRIVER
9204M: Maxim Levitsky <maximlevitsky@gmail.com>
9205S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07009206F: drivers/mtd/nand/r852.c
9207F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02009208
Maxim Levitsky92634122011-03-25 01:56:59 -07009209RICOH R5C592 MEMORYSTICK DRIVER
9210M: Maxim Levitsky <maximlevitsky@gmail.com>
9211S: Maintained
9212F: drivers/memstick/host/r592.*
9213
Stefan Achatz27f1d2f2013-09-05 06:36:01 +02009214ROCCAT DRIVERS
9215M: Stefan Achatz <erazor_de@users.sourceforge.net>
9216W: http://sourceforge.net/projects/roccat/
9217S: Maintained
9218F: drivers/hid/hid-roccat*
9219F: include/linux/hid-roccat*
9220F: Documentation/ABI/*/sysfs-driver-hid-roccat*
9221
Jiri Pirko4b8ac962014-11-28 14:34:26 +01009222ROCKER DRIVER
9223M: Jiri Pirko <jiri@resnulli.us>
9224M: Scott Feldman <sfeldma@gmail.com>
9225L: netdev@vger.kernel.org
9226S: Supported
9227F: drivers/net/ethernet/rocker/
9228
Linus Torvalds1da177e2005-04-16 15:20:36 -07009229ROCKETPORT DRIVER
9230P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009231W: http://www.comtrol.com
9232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009233F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07009234F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009235
Kevin Cernekee7645c2f2014-10-21 15:23:06 -07009236ROCKETPORT EXPRESS/INFINITY DRIVER
9237M: Kevin Cernekee <cernekee@gmail.com>
9238L: linux-serial@vger.kernel.org
9239S: Odd Fixes
9240F: drivers/tty/serial/rp2.*
9241
Linus Torvalds1da177e2005-04-16 15:20:36 -07009242ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07009243M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009244L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02009245W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009247F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009248F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07009249F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009250
Antti Palosaari91952bc2012-10-01 12:28:46 -03009251RTL2830 MEDIA DRIVER
9252M: Antti Palosaari <crope@iki.fi>
9253L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009254W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -03009255W: http://palosaari.fi/linux/
9256Q: http://patchwork.linuxtv.org/project/linux-media/list/
9257T: git git://linuxtv.org/anttip/media_tree.git
9258S: Maintained
9259F: drivers/media/dvb-frontends/rtl2830*
9260
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009261RTL2832 MEDIA DRIVER
9262M: Antti Palosaari <crope@iki.fi>
9263L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009264W: https://linuxtv.org
Antti Palosaari27a0aac2013-04-09 20:30:43 -03009265W: http://palosaari.fi/linux/
9266Q: http://patchwork.linuxtv.org/project/linux-media/list/
9267T: git git://linuxtv.org/anttip/media_tree.git
9268S: Maintained
9269F: drivers/media/dvb-frontends/rtl2832*
9270
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009271RTL2832_SDR MEDIA DRIVER
9272M: Antti Palosaari <crope@iki.fi>
9273L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009274W: https://linuxtv.org
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009275W: http://palosaari.fi/linux/
9276Q: http://patchwork.linuxtv.org/project/linux-media/list/
9277T: git git://linuxtv.org/anttip/media_tree.git
9278S: Maintained
Antti Palosaarib4bb1c22014-07-14 21:19:29 -03009279F: drivers/media/dvb-frontends/rtl2832_sdr*
Antti Palosaariba6e6f62014-02-03 00:00:32 -03009280
Larry Finger59840482008-11-12 17:13:09 -06009281RTL8180 WIRELESS DRIVER
Michael Wu605bebe2007-05-14 01:41:02 -04009282L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009283W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009284T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
John W. Linville7be6ff62014-12-04 16:52:41 -05009285S: Orphan
Kalle Valo62141722015-11-18 10:09:24 +02009286F: drivers/net/wireless/realtek/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04009287
Larry Finger59840482008-11-12 17:13:09 -06009288RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03009289M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009290M: Hin-Tak Leung <htl10@users.sourceforge.net>
9291M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009292L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009293W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07009294T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07009295S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009296F: drivers/net/wireless/realtek/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06009297
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009298RTL8192CE WIRELESS DRIVER
9299M: Larry Finger <Larry.Finger@lwfinger.net>
9300M: Chaoming Li <chaoming_li@realsil.com.cn>
9301L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02009302W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06009303T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9304S: Maintained
Kalle Valo62141722015-11-18 10:09:24 +02009305F: drivers/net/wireless/realtek/rtlwifi/
9306F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02009307
Jes Sorensen26f1fad2015-10-14 20:44:51 -04009308RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9309M: Jes Sorensen <Jes.Sorensen@redhat.com>
9310L: linux-wireless@vger.kernel.org
9311T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9312S: Maintained
9313F: drivers/net/wireless/realtek/rtl8xxxu/
9314
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009315S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009316M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01009317L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009318S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009319F: drivers/video/fbdev/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08009320
Linus Torvalds1da177e2005-04-16 15:20:36 -07009321S390
Joe Perches8b58be82009-07-29 15:04:30 -07009322M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9323M: Heiko Carstens <heiko.carstens@de.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009324L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009325W: http://www.ibm.com/developerworks/linux/linux390/
Fengguang Wu9f273c22016-01-20 15:03:25 -08009326T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
Heiko Carstens5238da42006-02-11 17:56:01 -08009327S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009328F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01009329F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02009330F: Documentation/s390/
9331F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08009332
Sebastian Ott322986c2014-02-17 15:16:30 +01009333S390 COMMON I/O LAYER
9334M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9335M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9336L: linux-s390@vger.kernel.org
9337W: http://www.ibm.com/developerworks/linux/linux390/
9338S: Supported
9339F: drivers/s390/cio/
9340
9341S390 DASD DRIVER
9342M: Stefan Weinhuber <wein@de.ibm.com>
9343M: Stefan Haberland <stefan.haberland@de.ibm.com>
9344L: linux-s390@vger.kernel.org
9345W: http://www.ibm.com/developerworks/linux/linux390/
9346S: Supported
9347F: drivers/s390/block/dasd*
9348F: block/partitions/ibm.c
9349
Heiko Carstens5238da42006-02-11 17:56:01 -08009350S390 NETWORK DRIVERS
Ursula Braunf0c59af2015-12-11 12:27:52 +01009351M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009352L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009353W: http://www.ibm.com/developerworks/linux/linux390/
9354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009355F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08009356
Sebastian Ott322986c2014-02-17 15:16:30 +01009357S390 PCI SUBSYSTEM
9358M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9359M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9360L: linux-s390@vger.kernel.org
9361W: http://www.ibm.com/developerworks/linux/linux390/
9362S: Supported
9363F: arch/s390/pci/
9364F: drivers/pci/hotplug/s390_pci_hpc.c
9365
Felix Beckfeed9b62009-03-26 15:24:23 +01009366S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01009367M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01009368L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01009369W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01009370S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07009371F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01009372
Heiko Carstens5238da42006-02-11 17:56:01 -08009373S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01009374M: Steffen Maier <maier@linux.vnet.ibm.com>
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01009375L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08009376W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009378F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009379
Ursula Braundd96df22007-09-19 13:09:02 +02009380S390 IUCV NETWORK LAYER
Ursula Braunf0c59af2015-12-11 12:27:52 +01009381M: Ursula Braun <ubraun@linux.vnet.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02009382L: linux-s390@vger.kernel.org
9383W: http://www.ibm.com/developerworks/linux/linux390/
9384S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009385F: drivers/s390/net/*iucv*
9386F: include/net/iucv/
9387F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02009388
Gerald Schaefer8128f23c2015-08-27 15:33:03 +02009389S390 IOMMU (PCI)
9390M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9391L: linux-s390@vger.kernel.org
9392W: http://www.ibm.com/developerworks/linux/linux390/
9393S: Supported
9394F: drivers/iommu/s390-iommu.c
9395
Ben Dooks4dde7f72008-06-30 22:40:38 +01009396S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07009397M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07009398L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01009399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009400F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01009401
Hans Verkuil1f15a222012-11-23 07:45:29 -03009402SAA6588 RDS RECEIVER DRIVER
9403M: Hans Verkuil <hverkuil@xs4all.nl>
9404L: linux-media@vger.kernel.org
9405T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009406W: https://linuxtv.org
Hans Verkuil1f15a222012-11-23 07:45:29 -03009407S: Odd Fixes
9408F: drivers/media/i2c/saa6588*
9409
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009410SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009411M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009412L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009413W: https://linuxtv.org
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009414T: git git://linuxtv.org/media_tree.git
9415S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03009416F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02009417F: drivers/media/pci/saa7134/
9418
Linus Torvalds1da177e2005-04-16 15:20:36 -07009419SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03009420M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03009421L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02009422T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009423S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009424F: drivers/media/common/saa7146/
9425F: drivers/media/pci/saa7146/
9426F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009427
Corentin Chary92304a42011-12-05 12:38:35 -05009428SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08009429M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05009430L: platform-driver-x86@vger.kernel.org
9431S: Maintained
9432F: drivers/platform/x86/samsung-laptop.c
9433
Mark Brown4a109cc2010-09-24 10:50:46 +01009434SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09009435M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01009436L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9437S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009438F: sound/soc/samsung/
Mark Brown4a109cc2010-09-24 10:50:46 +01009439
Jingoo Han0d89a282011-12-19 11:09:35 +09009440SAMSUNG FRAMEBUFFER DRIVER
Jingoo Hanb7701752015-05-14 15:17:07 -07009441M: Jingoo Han <jingoohan1@gmail.com>
Jingoo Han0d89a282011-12-19 11:09:35 +09009442L: linux-fbdev@vger.kernel.org
9443S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +09009444F: drivers/video/fbdev/s3c-fb.c
Jingoo Han0d89a282011-12-19 11:09:35 +09009445
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009446SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009447M: Sangbeom Kim <sbkim73@samsung.com>
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009448M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009449L: linux-kernel@vger.kernel.org
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009450L: linux-samsung-soc@vger.kernel.org
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009451S: Supported
9452F: drivers/mfd/sec*.c
9453F: drivers/regulator/s2m*.c
9454F: drivers/regulator/s5m*.c
Krzysztof Kozlowskib40f0632015-05-06 14:19:36 +09009455F: drivers/clk/clk-s2mps11.c
9456F: drivers/rtc/rtc-s5m.c
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009457F: include/linux/mfd/samsung/
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009458F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9459F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
Krzysztof Kozlowski27383ca2015-12-04 10:10:04 +09009460F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
Krzysztof Kozlowskia13c7c52015-12-04 10:10:03 +09009461F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09009462
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009463SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9464M: Kyungmin Park <kyungmin.park@samsung.com>
9465M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9466L: linux-media@vger.kernel.org
9467Q: https://patchwork.linuxtv.org/project/linux-media/list/
9468S: Supported
9469F: drivers/media/platform/exynos4-is/
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03009470
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009471SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9472M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9473L: linux-media@vger.kernel.org
9474L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9475S: Maintained
9476F: drivers/media/platform/s3c-camif/
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009477F: include/media/drv-intf/s3c_camif.h
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03009478
Andrzej Hajdab84ef242013-01-31 07:03:05 -03009479SAMSUNG S5C73M3 CAMERA DRIVER
9480M: Kyungmin Park <kyungmin.park@samsung.com>
9481M: Andrzej Hajda <a.hajda@samsung.com>
9482L: linux-media@vger.kernel.org
9483S: Supported
9484F: drivers/media/i2c/s5c73m3/*
9485
Andrzej Hajda7d4599372013-12-05 08:38:39 -03009486SAMSUNG S5K5BAF CAMERA DRIVER
9487M: Kyungmin Park <kyungmin.park@samsung.com>
9488M: Andrzej Hajda <a.hajda@samsung.com>
9489L: linux-media@vger.kernel.org
9490S: Supported
9491F: drivers/media/i2c/s5k5baf.c
9492
Robert Baldygac04c6742015-08-20 17:26:02 +02009493SAMSUNG S3FWRN5 NFC DRIVER
9494M: Robert Baldyga <r.baldyga@samsung.com>
9495L: linux-nfc@lists.01.org (moderated for non-subscribers)
9496S: Supported
9497F: drivers/nfc/s3fwrn5
9498
Tomasz Figa310e39c2013-11-09 03:17:34 +01009499SAMSUNG SOC CLOCK DRIVERS
Tomasz Figafea685e2014-08-26 16:30:53 +02009500M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9501M: Tomasz Figa <tomasz.figa@gmail.com>
Tomasz Figa310e39c2013-11-09 03:17:34 +01009502S: Supported
9503L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9504F: drivers/clk/samsung/
9505
Byungho An66890ed2014-03-25 12:11:07 -07009506SAMSUNG SXGBE DRIVERS
9507M: Byungho An <bh74.an@samsung.com>
9508M: Girish K S <ks.giri@samsung.com>
Byungho An66890ed2014-03-25 12:11:07 -07009509M: Vipul Pandya <vipul.pandya@samsung.com>
9510S: Supported
9511L: netdev@vger.kernel.org
9512F: drivers/net/ethernet/samsung/sxgbe/
9513
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009514SAMSUNG THERMAL DRIVER
9515M: Lukasz Majewski <l.majewski@samsung.com>
9516L: linux-pm@vger.kernel.org
9517L: linux-samsung-soc@vger.kernel.org
9518S: Supported
Fengguang Wu9f273c22016-01-20 15:03:25 -08009519T: git https://github.com/lmajewski/linux-samsung-thermal.git
Lukasz Majewski93c537a2015-02-24 16:31:28 +01009520F: drivers/thermal/samsung/
9521
Kamil Debskie296cd32014-08-21 11:33:37 +02009522SAMSUNG USB2 PHY DRIVER
9523M: Kamil Debski <k.debski@samsung.com>
9524L: linux-kernel@vger.kernel.org
9525S: Supported
9526F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9527F: Documentation/phy/samsung-usb2.txt
9528F: drivers/phy/phy-exynos4210-usb2.c
9529F: drivers/phy/phy-exynos4x12-usb2.c
9530F: drivers/phy/phy-exynos5250-usb2.c
9531F: drivers/phy/phy-s5pv210-usb2.c
9532F: drivers/phy/phy-samsung-usb2.c
9533F: drivers/phy/phy-samsung-usb2.h
9534
Alan Coxca749e22011-03-18 13:56:14 +00009535SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009536M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00009537L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08009538S: Maintained
Joe Perches14430812013-09-11 14:23:50 -07009539F: drivers/tty/serial/
Alan Coxca749e22011-03-18 13:56:14 +00009540
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309541SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009542M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar337ae472013-07-19 09:13:58 +05309543M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309544S: Maintained
Andy Shevchenko1fb200d2015-01-19 18:23:06 +02009545F: include/linux/dma/dw.h
Andy Shevchenko3d598f42014-08-19 20:29:12 +03009546F: include/linux/platform_data/dma-dw.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03009547F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05309548
Lars Persson058999c2015-07-28 12:01:50 +02009549SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9550M: Lars Persson <lars.persson@axis.com>
9551L: netdev@vger.kernel.org
9552S: Supported
9553F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9554F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9555
Wolfram Sangfc531d92015-10-15 15:50:15 +02009556SYNOPSYS DESIGNWARE I2C DRIVER
9557M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9558M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9559M: Mika Westerberg <mika.westerberg@linux.intel.com>
9560L: linux-i2c@vger.kernel.org
9561S: Maintained
9562F: drivers/i2c/busses/i2c-designware-*
9563F: include/linux/platform_data/i2c-designware.h
9564
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009565SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
Seungwon Jeonf9e37132013-01-17 21:33:23 +09009566M: Jaehoon Chung <jh80.chung@samsung.com>
9567L: linux-mmc@vger.kernel.org
9568S: Maintained
9569F: include/linux/mmc/dw_mmc.h
9570F: drivers/mmc/host/dw_mmc*
9571
Alexander Shishkina961e692015-09-22 15:47:11 +03009572SYSTEM TRACE MODULE CLASS
9573M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9574S: Maintained
9575F: Documentation/trace/stm.txt
9576F: drivers/hwtracing/stm/
9577F: include/linux/stm.h
9578F: include/uapi/linux/stm.h
9579
Andreas Noever1db121d2014-07-10 18:58:04 +02009580THUNDERBOLT DRIVER
9581M: Andreas Noever <andreas.noever@gmail.com>
9582S: Maintained
9583F: drivers/thunderbolt/
9584
John Stultz34db37c2015-11-13 13:07:31 -08009585TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
John Stultz50363732012-12-13 13:08:47 -05009586M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01009587M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009588L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009589T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01009590S: Supported
9591F: include/linux/clocksource.h
9592F: include/linux/time.h
9593F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009594F: include/uapi/linux/time.h
9595F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01009596F: kernel/time/clocksource.c
9597F: kernel/time/time*.c
John Stultz34db37c2015-11-13 13:07:31 -08009598F: kernel/time/alarmtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01009599F: kernel/time/ntp.c
John Stultz7fe5f1c2015-03-11 17:40:15 -07009600F: tools/testing/selftests/timers/
Thomas Gleixner88606e82010-12-14 21:37:13 +01009601
Linus Torvalds1da177e2005-04-16 15:20:36 -07009602SC1200 WDT DRIVER
Jean Delvareb3006452013-11-12 15:08:56 -08009603M: Zwane Mwaikambo <zwanem@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009605F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009606
9607SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01009608M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07009609M: Peter Zijlstra <peterz@infradead.org>
Ingo Molnar981c3a42014-01-21 10:59:20 +01009610L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009611T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07009612S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09009613F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07009614F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009615F: include/uapi/linux/sched.h
Peter Zijlstrac2eb5052013-10-02 11:49:47 +02009616F: include/linux/wait.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009617
Chen Liqin6bcf6732009-06-13 15:24:33 +08009618SCORE ARCHITECTURE
Lennox Wued386652013-09-26 01:41:22 +08009619M: Chen Liqin <liqin.linux@gmail.com>
Joe Perchesa2681a72009-10-26 16:49:43 -07009620M: Lennox Wu <lennox.wu@gmail.com>
Lennox Wued386652013-09-26 01:41:22 +08009621W: http://www.sunplus.com
Chen Liqin6bcf6732009-06-13 15:24:33 +08009622S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07009623F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08009624
Sudeep Holla80f390e2015-05-14 11:26:11 +01009625SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9626M: Sudeep Holla <sudeep.holla@arm.com>
9627L: linux-arm-kernel@lists.infradead.org
9628S: Maintained
9629F: Documentation/devicetree/bindings/arm/arm,scpi.txt
Sudeep Hollacd52c2a2015-03-30 10:59:52 +01009630F: drivers/clk/clk-scpi.c
Sudeep Holla8def3102015-03-30 10:59:52 +01009631F: drivers/cpufreq/scpi-cpufreq.c
Sudeep Holla8cb7cf52015-03-30 10:59:52 +01009632F: drivers/firmware/arm_scpi.c
9633F: include/linux/scpi_protocol.h
Sudeep Holla80f390e2015-05-14 11:26:11 +01009634
Linus Torvalds1da177e2005-04-16 15:20:36 -07009635SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009636M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009637L: linux-scsi@vger.kernel.org
9638W: http://www.kernel.dk
9639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009640F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009641
Roland Dreierfb50a832010-10-07 09:54:53 -07009642SCSI RDMA PROTOCOL (SRP) INITIATOR
Bart Van Assche3453bddb2015-02-06 15:27:56 +01009643M: Bart Van Assche <bart.vanassche@sandisk.com>
Roland Dreierfb50a832010-10-07 09:54:53 -07009644L: linux-rdma@vger.kernel.org
9645S: Supported
9646W: http://www.openfabrics.org
9647Q: http://patchwork.kernel.org/project/linux-rdma/list/
9648T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9649F: drivers/infiniband/ulp/srp/
9650F: include/scsi/srp.h
9651
Linus Torvalds1da177e2005-04-16 15:20:36 -07009652SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009653M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009654L: linux-scsi@vger.kernel.org
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009655W: http://sg.danny.cz/sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07009656S: Maintained
Douglas Gilbert59ab3c92013-10-31 09:10:46 -04009657F: Documentation/scsi/scsi-generic.txt
Joe Perches679655d2009-04-07 20:44:32 -07009658F: drivers/scsi/sg.c
9659F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009660
9661SCSI SUBSYSTEM
James Bottomley0351b8f2015-04-01 09:09:36 +00009662M: "James E.J. Bottomley" <JBottomley@odin.com>
James Bottomley0351b8f2015-04-01 09:09:36 +00009663T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
Martin K. Petersenf4ab4212015-11-13 16:46:49 -05009664M: "Martin K. Petersen" <martin.petersen@oracle.com>
9665T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9666L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009668F: drivers/scsi/
9669F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009670
9671SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009672M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009673L: linux-scsi@vger.kernel.org
9674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009675F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07009676F: drivers/scsi/st.*
9677F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009678
9679SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009680M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00009681M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07009682L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07009683W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00009684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009685F: Documentation/networking/sctp.txt
9686F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02009687F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07009688F: include/net/sctp/
9689F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009690
9691SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07009692M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009693S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009694F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07009695F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07009696F: drivers/watchdog/scx200_wdt.c
9697F: drivers/i2c/busses/scx200*
9698F: drivers/mtd/maps/scx200_docflash.c
9699F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07009700
9701SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009702M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009704F: drivers/char/scx200_gpio.c
9705F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07009706
9707SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009708M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07009709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009710F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009711
Sascha Sommer6a369132008-07-15 14:21:29 +02009712SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009713M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02009714L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009716F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02009717
Randy Dunlape7839f22008-10-12 16:11:45 -07009718SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07009719L: linux-mmc@vger.kernel.org
Ulf Hanssona1cb1d12015-03-13 13:39:03 +01009720S: Orphan
Joe Perches7a241d62009-10-26 16:49:42 -07009721F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08009722F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009723
Kees Cookc04f9d62014-07-18 11:28:33 -07009724SECURE COMPUTING
9725M: Kees Cook <keescook@chromium.org>
Kees Cooka0cfd752014-08-12 15:41:17 -07009726R: Andy Lutomirski <luto@amacapital.net>
9727R: Will Drewry <wad@chromium.org>
Kees Cookc04f9d62014-07-18 11:28:33 -07009728T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9729S: Supported
9730F: kernel/seccomp.c
9731F: include/uapi/linux/seccomp.h
9732F: include/linux/seccomp.h
Kees Cookc99ee512015-06-16 10:54:14 -07009733F: tools/testing/selftests/seccomp/*
Kees Cookc04f9d62014-07-18 11:28:33 -07009734K: \bsecure_computing
9735K: \bTIF_SECCOMP\b
9736
Ben Dooks0d1bb412009-06-14 13:52:37 +01009737SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009738M: Ben Dooks <ben-linux@fluff.org>
Ulf Hanssondc524882015-03-20 10:15:29 +01009739M: Jaehoon Chung <jh80.chung@samsung.com>
Joe Perches7a241d62009-10-26 16:49:42 -07009740L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01009741S: Maintained
Ulf Hanssondc524882015-03-20 10:15:29 +01009742F: drivers/mmc/host/sdhci-s3c*
Ben Dooks0d1bb412009-06-14 13:52:37 +01009743
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009744SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumarda899472015-07-17 16:23:50 -07009745M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07009746L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07009747L: linux-mmc@vger.kernel.org
9748S: Maintained
9749F: drivers/mmc/host/sdhci-spear.c
9750
James Morris8711cca2008-12-04 03:19:45 +11009751SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11009752M: James Morris <james.l.morris@oracle.com>
Joe Perches9c3646d2015-06-25 15:02:00 -07009753M: "Serge E. Hallyn" <serge@hallyn.com>
James Morris8711cca2008-12-04 03:19:45 +11009754L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11009755T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10009756W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11009757S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07009758F: security/
James Morris8711cca2008-12-04 03:19:45 +11009759
Linus Torvalds1da177e2005-04-16 15:20:36 -07009760SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07009761M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009762S: Supported
9763
9764SELINUX SECURITY MODULE
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009765M: Paul Moore <paul@paul-moore.com>
Paul Mooree0238b42014-02-06 07:51:54 -05009766M: Stephen Smalley <sds@tycho.nsa.gov>
9767M: Eric Paris <eparis@parisplace.org>
9768L: selinux@tycho.nsa.gov (moderated for non-subscribers)
Stephen Smalleyf0589252008-09-11 09:20:26 -04009769W: http://selinuxproject.org
Paul Moore5a5f2ac2013-09-18 13:14:04 -04009770T: git git://git.infradead.org/users/pcmoore/selinux
Linus Torvalds1da177e2005-04-16 15:20:36 -07009771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009772F: include/linux/selinux*
9773F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04009774F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009775
John Johansenc1c124e2010-07-29 14:48:09 -07009776APPARMOR SECURITY MODULE
9777M: John Johansen <john.johansen@canonical.com>
9778L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9779W: apparmor.wiki.kernel.org
9780T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9781S: Supported
9782F: security/apparmor/
9783
Kees Cook730daa12015-07-23 18:02:48 -07009784YAMA SECURITY MODULE
9785M: Kees Cook <keescook@chromium.org>
9786T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9787S: Supported
9788F: security/yama/
9789
Jiri Slabycef2cf02007-05-08 00:31:45 -07009790SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07009791M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07009792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009793F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009794F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07009795
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309796SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Minh Tran4627de92015-05-14 23:16:17 -07009797M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
Ketan Mukadam9d27e212015-07-04 04:12:23 +05309798M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9799M: John Soni Jose <sony.john@avagotech.com>
Joe Perches3387f652009-11-11 14:26:11 -08009800L: linux-scsi@vger.kernel.org
Minh Tran4627de92015-05-14 23:16:17 -07009801W: http://www.avagotech.com
Joe Perches3387f652009-11-11 14:26:11 -08009802S: Supported
9803F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05309804
Sathya Perla6938f852015-05-12 02:13:50 -04009805Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9806M: Sathya Perla <sathya.perla@avagotech.com>
9807M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9808M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9809M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07009810L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08009811W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07009812S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07009813F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07009814
Selvin Xavierd2928a82015-03-15 00:09:41 +05309815EMULEX ONECONNECT ROCE DRIVER
Laurent Navet2b8e7332015-06-30 14:59:33 -07009816M: Selvin Xavier <selvin.xavier@avagotech.com>
9817M: Devesh Sharma <devesh.sharma@avagotech.com>
9818M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
Selvin Xavierd2928a82015-03-15 00:09:41 +05309819L: linux-rdma@vger.kernel.org
9820W: http://www.emulex.com
9821S: Supported
9822F: drivers/infiniband/hw/ocrdma/
9823
Ben Hutchings8ceee662008-04-27 12:55:59 +01009824SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00009825M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Shradha Shah8533ccf2014-01-23 13:19:55 +00009826M: Shradha Shah <sshah@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00009827L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01009828S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07009829F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01009830
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009831SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07009832M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009834F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009835
9836SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009837M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009838L: linux-ia64@vger.kernel.org
9839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009840F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009841F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07009842F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009843
Jack Steiner75312612008-08-15 00:40:42 -07009844SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05009845M: Cliff Whickman <cpw@sgi.com>
9846M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07009847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009848F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07009849
Antti Palosaari46eacf32014-04-15 06:21:03 -03009850SI2157 MEDIA DRIVER
9851M: Antti Palosaari <crope@iki.fi>
9852L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009853W: https://linuxtv.org
Antti Palosaari46eacf32014-04-15 06:21:03 -03009854W: http://palosaari.fi/linux/
9855Q: http://patchwork.linuxtv.org/project/linux-media/list/
9856T: git git://linuxtv.org/anttip/media_tree.git
9857S: Maintained
9858F: drivers/media/tuners/si2157*
9859
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009860SI2168 MEDIA DRIVER
9861M: Antti Palosaari <crope@iki.fi>
9862L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009863W: https://linuxtv.org
Antti Palosaari75e2d5b2014-04-15 06:17:53 -03009864W: http://palosaari.fi/linux/
9865Q: http://patchwork.linuxtv.org/project/linux-media/list/
9866T: git git://linuxtv.org/anttip/media_tree.git
9867S: Maintained
9868F: drivers/media/dvb-frontends/si2168*
9869
Hans Verkuil49cc6292012-11-30 07:13:29 -03009870SI470X FM RADIO RECEIVER I2C DRIVER
9871M: Hans Verkuil <hverkuil@xs4all.nl>
9872L: linux-media@vger.kernel.org
9873T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009874W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -03009875S: Odd Fixes
9876F: drivers/media/radio/si470x/radio-si470x-i2c.c
9877
9878SI470X FM RADIO RECEIVER USB DRIVER
9879M: Hans Verkuil <hverkuil@xs4all.nl>
9880L: linux-media@vger.kernel.org
9881T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009882W: https://linuxtv.org
Hans Verkuil49cc6292012-11-30 07:13:29 -03009883S: Maintained
9884F: drivers/media/radio/si470x/radio-si470x-common.c
9885F: drivers/media/radio/si470x/radio-si470x.h
9886F: drivers/media/radio/si470x/radio-si470x-usb.c
9887
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009888SI4713 FM RADIO TRANSMITTER I2C DRIVER
9889M: Eduardo Valentin <edubezval@gmail.com>
9890L: linux-media@vger.kernel.org
9891T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009892W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009893S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009894F: drivers/media/radio/si4713/si4713.?
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009895
9896SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9897M: Eduardo Valentin <edubezval@gmail.com>
9898L: linux-media@vger.kernel.org
9899T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009900W: https://linuxtv.org
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009901S: Odd Fixes
Dinesh Ram99995de2013-10-15 12:24:43 -03009902F: drivers/media/radio/si4713/radio-platform-si4713.c
9903
9904SI4713 FM RADIO TRANSMITTER USB DRIVER
9905M: Hans Verkuil <hverkuil@xs4all.nl>
9906L: linux-media@vger.kernel.org
9907T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009908W: https://linuxtv.org
Dinesh Ram99995de2013-10-15 12:24:43 -03009909S: Maintained
9910F: drivers/media/radio/si4713/radio-usb-si4713.c
Eduardo Valentinc937ca02013-02-27 10:37:39 -03009911
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009912SIANO DVB DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -02009913M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009914L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009915W: https://linuxtv.org
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009916T: git git://linuxtv.org/media_tree.git
9917S: Odd fixes
9918F: drivers/media/common/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009919F: drivers/media/usb/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009920F: drivers/media/usb/siano/
Joe Perches14430812013-09-11 14:23:50 -07009921F: drivers/media/mmc/siano/
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03009922
Hans de Goede6f15b602014-11-14 13:26:46 +01009923SIMPLEFB FB DRIVER
9924M: Hans de Goede <hdegoede@redhat.com>
9925L: linux-fbdev@vger.kernel.org
9926S: Maintained
Rob Herring2d799dd2015-11-05 13:40:40 -06009927F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
Hans de Goede6f15b602014-11-14 13:26:46 +01009928F: drivers/video/fbdev/simplefb.c
9929F: include/linux/platform_data/simplefb.h
9930
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009931SH_VEU V4L2 MEM2MEM DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009932L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009933S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009934F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009935
9936SH_VOU V4L2 OUTPUT DRIVER
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009937L: linux-media@vger.kernel.org
Guennadi Liakhovetskibb60fcb2013-11-24 17:44:08 -03009938S: Orphan
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009939F: drivers/media/platform/sh_vou.c
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -02009940F: include/media/drv-intf/sh_vou.h
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03009941
Len Brown6349d992009-08-14 15:07:14 -04009942SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07009943M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04009944L: sfi-devel@simplefirmware.org
9945W: http://simplefirmware.org/
9946T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009947S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07009948F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04009949F: drivers/sfi/
9950F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009951
Linus Torvalds1da177e2005-04-16 15:20:36 -07009952SIMTEC EB110ATX (Chalice CATS)
9953P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009954P: Vincent Sanders <vince@simtec.co.uk>
9955M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009956W: http://www.simtec.co.uk/products/EB110ATX/
9957S: Supported
9958
9959SIMTEC EB2410ITX (BAST)
9960P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08009961P: Vincent Sanders <vince@simtec.co.uk>
9962M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009963W: http://www.simtec.co.uk/products/EB2410ITX/
9964S: Supported
Joe Perches15dba382013-09-11 14:23:36 -07009965F: arch/arm/mach-s3c24xx/mach-bast.c
9966F: arch/arm/mach-s3c24xx/bast-ide.c
9967F: arch/arm/mach-s3c24xx/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009968
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009969TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08009970M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08009971M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Noric9f46a82012-01-27 21:12:20 +05309972T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08009973Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009974S: Supported
Joe Perches14430812013-09-11 14:23:50 -07009975F: arch/arm/mach-davinci/
Jean Delvare046d0a32012-01-12 20:32:05 +01009976F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07009977
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009978TI DAVINCI SERIES MEDIA DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009979M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009980L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009981W: https://linuxtv.org
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009982Q: http://patchwork.linuxtv.org/project/linux-media/list/
9983T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03009984S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03009985F: drivers/media/platform/davinci/
9986F: include/media/davinci/
9987
Benoit Parrot417d2e52014-12-09 16:43:44 -03009988TI AM437X VPFE DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009989M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrot417d2e52014-12-09 16:43:44 -03009990L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -02009991W: https://linuxtv.org
Benoit Parrot417d2e52014-12-09 16:43:44 -03009992Q: http://patchwork.linuxtv.org/project/linux-media/list/
9993T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9994S: Maintained
9995F: drivers/media/platform/am437x/
9996
Benoit Parrotc4c02832015-03-20 18:03:52 -03009997OV2659 OMNIVISION SENSOR DRIVER
Joe Perchese43cdb52015-06-25 15:02:03 -07009998M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
Benoit Parrotc4c02832015-03-20 18:03:52 -03009999L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010000W: https://linuxtv.org
Benoit Parrotc4c02832015-03-20 18:03:52 -030010001Q: http://patchwork.linuxtv.org/project/linux-media/list/
10002T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10003S: Maintained
10004F: drivers/media/i2c/ov2659.c
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010005F: include/media/i2c/ov2659.h
Benoit Parrotc4c02832015-03-20 18:03:52 -030010006
Sudip Mukherjee3a6779f2015-08-07 18:31:15 +053010007SILICON MOTION SM712 FRAME BUFFER DRIVER
10008M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10009M: Teddy Wang <teddy.wang@siliconmotion.com>
10010M: Sudip Mukherjee <sudip@vectorindia.org>
10011L: linux-fbdev@vger.kernel.org
10012S: Maintained
10013F: drivers/video/fbdev/sm712*
10014F: Documentation/fb/sm712fb.txt
10015
Francois Romieu92aab3c2005-07-30 13:11:18 +020010016SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010017M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +020010018L: netdev@vger.kernel.org
10019S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010020F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +020010021
Linus Torvalds1da177e2005-04-16 15:20:36 -070010022SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010023M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010024W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -070010025L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010026S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -070010027F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010028
10029SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010030M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010031W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -030010032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010033F: Documentation/fb/sisfb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090010034F: drivers/video/fbdev/sis/
Joe Perches679655d2009-04-07 20:44:32 -070010035F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010036
10037SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010038M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010039W: http://www.winischhofer.at/linuxsisusbvga.shtml
10040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010041F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042
Christoph Lameter415ad262007-07-26 10:40:56 -070010043SLAB ALLOCATOR
Christoph Lameter16e943b2014-06-23 13:22:03 -070010044M: Christoph Lameter <cl@linux.com>
Pekka Enberg2ed1c522011-01-15 13:30:04 +020010045M: Pekka Enberg <penberg@kernel.org>
Christoph Lameter16e943b2014-06-23 13:22:03 -070010046M: David Rientjes <rientjes@google.com>
10047M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
10048M: Andrew Morton <akpm@linux-foundation.org>
Christoph Lameter415ad262007-07-26 10:40:56 -070010049L: linux-mm@kvack.org
10050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010051F: include/linux/sl?b*.h
Christoph Lameter16e943b2014-06-23 13:22:03 -070010052F: mm/sl?b*
Christoph Lameter415ad262007-07-26 10:40:56 -070010053
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010054SLEEPABLE READ-COPY UPDATE (SRCU)
Lai Jiangshan96a39bc2015-07-01 15:26:27 +080010055M: Lai Jiangshan <jiangshanlai@gmail.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010056M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyab0afd62014-06-03 08:17:06 -070010057M: Josh Triplett <josh@joshtriplett.org>
Paul E. McKenney4632a192014-05-30 15:37:24 -070010058R: Steven Rostedt <rostedt@goodmis.org>
10059R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Ingo Molnar981c3a42014-01-21 10:59:20 +010010060L: linux-kernel@vger.kernel.org
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010061W: http://www.rdrop.com/users/paulmck/RCU/
10062S: Supported
10063T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenney4102ada2013-10-08 20:23:47 -070010064F: include/linux/srcu.h
10065F: kernel/rcu/srcu.c
Paul E. McKenney9fab97872012-05-07 09:36:34 -070010066
Casey Schaufler66372842012-05-23 18:34:52 -070010067SMACK SECURITY MODULE
10068M: Casey Schaufler <casey@schaufler-ca.com>
10069L: linux-security-module@vger.kernel.org
10070W: http://schaufler-ca.com
10071T: git git://git.gitorious.org/smack-next/kernel.git
10072S: Maintained
10073F: Documentation/security/Smack.txt
10074F: security/smack/
10075
Kevin Hilman20651e02014-09-24 16:30:00 -070010076DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010077M: Kevin Hilman <khilman@kernel.org>
10078M: Nishanth Menon <nm@ti.com>
10079S: Maintained
Kevin Hilman20651e02014-09-24 16:30:00 -070010080F: drivers/power/avs/
Kevin Hilman68ace3e2013-08-06 16:57:14 -070010081F: include/linux/power/smartreflex.h
10082L: linux-pm@vger.kernel.org
10083
Linus Torvalds1da177e2005-04-16 15:20:36 -070010084SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -040010085M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -040010086S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -070010087F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010088
Sakari Ailuse8e31622012-11-12 18:14:39 -030010089SMIA AND SMIA++ IMAGE SENSOR DRIVER
10090M: Sakari Ailus <sakari.ailus@iki.fi>
10091L: linux-media@vger.kernel.org
10092S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070010093F: drivers/media/i2c/smiapp/
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020010094F: include/media/i2c/smiapp.h
Sakari Ailuse8e31622012-11-12 18:14:39 -030010095F: drivers/media/i2c/smiapp-pll.c
10096F: drivers/media/i2c/smiapp-pll.h
Sakari Ailusfd2bfdc2014-11-16 12:08:44 -030010097F: include/uapi/linux/smiapp.h
Sakari Ailusa2cec3c2014-11-06 18:16:13 -030010098F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
Sakari Ailuse8e31622012-11-12 18:14:39 -030010099
Guenter Roeck920fa1f2010-08-09 17:21:06 -070010100SMM665 HARDWARE MONITOR DRIVER
10101M: Guenter Roeck <linux@roeck-us.net>
10102L: lm-sensors@lm-sensors.org
10103S: Maintained
10104F: Documentation/hwmon/smm665
10105F: drivers/hwmon/smm665.c
10106
Steve Glendinning9df73052010-08-14 21:08:54 +020010107SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010108M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +020010109L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010110S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +020010111F: Documentation/hwmon/emc2103
10112F: drivers/hwmon/emc2103.c
10113
Hans de Goedea98d5062011-03-21 17:59:36 +010010114SMSC SCH5627 HARDWARE MONITOR DRIVER
10115M: Hans de Goede <hdegoede@redhat.com>
10116L: lm-sensors@lm-sensors.org
10117S: Supported
10118F: Documentation/hwmon/sch5627
10119F: drivers/hwmon/sch5627.c
10120
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010121SMSC47B397 HARDWARE MONITOR DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070010122M: Jean Delvare <jdelvare@suse.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010123L: lm-sensors@lm-sensors.org
10124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010125F: Documentation/hwmon/smsc47b397
10126F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -040010127
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010128SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010129M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010130L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010132F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -070010133F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +000010134
Steve Glendinning2cb37722008-12-11 20:54:30 -080010135SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010136M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -080010137L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010138S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -070010139F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -080010140
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010141SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010142M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010143L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010010144S: Maintained
Jingoo Han8a61f012014-07-01 15:36:01 +090010145F: drivers/video/fbdev/smscufx.c
Steve Glendinning3c8a63e2011-08-18 15:20:07 +010010146
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010147SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010148M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030010149L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020010150T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +020010151S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030010152F: include/media/soc*
10153F: drivers/media/i2c/soc_camera/
10154F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -030010155
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010156SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010157M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010159F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010160
Joe Perchese3994db2014-07-30 00:38:42 -030010161SOFTLOGIC 6x10 MPEG CODEC
Andrey Utkin9661975d2014-11-17 13:59:23 -030010162M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10163M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10164M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Ismael Luceno1f141f62015-01-20 11:43:50 -030010165M: Ismael Luceno <ismael@iodev.co.uk>
Joe Perchese3994db2014-07-30 00:38:42 -030010166L: linux-media@vger.kernel.org
10167S: Supported
10168F: drivers/media/pci/solo6x10/
10169
Linus Torvalds1da177e2005-04-16 15:20:36 -070010170SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070010171L: linux-raid@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010172T: git git://neil.brown.name/md
NeilBrown524418b2007-01-26 00:57:01 -080010173S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010174F: drivers/md/
10175F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010176F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010177
Linus Torvalds1da177e2005-04-16 15:20:36 -070010178SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010179M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -070010180L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070010181S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -070010182F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010183
Michael Buesch61e115a2007-09-18 15:12:50 -040010184SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +020010185M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -040010186L: netdev@vger.kernel.org
10187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010188F: drivers/ssb/
10189F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -040010190
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010192M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -050010193L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +010010194W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070010195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010196F: Documentation/laptops/sony-laptop.txt
10197F: drivers/char/sonypi.c
10198F: drivers/platform/x86/sony-laptop.c
10199F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010200
Alex Dubovbaf85322008-02-09 10:20:54 -080010201SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -070010202M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -080010203W: http://tifmxx.berlios.de/
10204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010205F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -080010206
Maxim Levitsky0ab30492013-09-11 14:26:02 -070010207SONY MEMORYSTICK STANDARD SUPPORT
10208M: Maxim Levitsky <maximlevitsky@gmail.com>
10209S: Maintained
10210F: drivers/memstick/core/ms_block.*
10211
Linus Torvalds1da177e2005-04-16 15:20:36 -070010212SOUND
Joe Perches8b58be82009-07-29 15:04:30 -070010213M: Jaroslav Kysela <perex@perex.cz>
Jiri Slabyd8130622015-07-17 16:23:20 -070010214M: Takashi Iwai <tiwai@suse.com>
Joe Perches93711662009-06-16 15:34:07 -070010215L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -070010216W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +020010217T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -070010218T: git git://git.alsa-project.org/alsa-kernel.git
Takashi Iwaiff4a8f32014-05-13 14:55:51 +020010219Q: http://patchwork.kernel.org/project/alsa-devel/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010220S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -070010221F: Documentation/sound/
10222F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010223F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -070010224F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010225
Mark Brown33bbe142013-08-09 18:10:50 +010010226SOUND - COMPRESSED AUDIO
10227M: Vinod Koul <vinod.koul@intel.com>
10228L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10229T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10230S: Supported
Vinod Koulf672f312013-08-12 11:15:27 +053010231F: Documentation/sound/alsa/compress_offload.txt
Mark Brown33bbe142013-08-09 18:10:50 +010010232F: include/sound/compress_driver.h
Vinod Koulf672f312013-08-12 11:15:27 +053010233F: include/uapi/sound/compress_*
Mark Brown33bbe142013-08-09 18:10:50 +010010234F: sound/core/compress_offload.c
10235F: sound/soc/soc-compress.c
10236
Mark Brownbd903bd2008-11-19 19:16:05 +000010237SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +000010238M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010010239M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +000010240T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -070010241L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +010010242W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010243S: Supported
Mark Brown2820f612013-08-11 19:35:11 +010010244F: Documentation/sound/alsa/soc/
Joe Perches679655d2009-04-07 20:44:32 -070010245F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +010010246F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +020010247
Mark Brownd7f87612013-10-19 14:33:54 +010010248SOUND - DMAENGINE HELPERS
10249M: Lars-Peter Clausen <lars@metafoo.de>
10250S: Supported
10251F: include/sound/dmaengine_pcm.h
10252F: sound/core/pcm_dmaengine.c
10253F: sound/soc/soc-generic-dmaengine-pcm.c
10254
Olli Salonen990a6a92014-08-22 13:50:42 -030010255SP2 MEDIA DRIVER
10256M: Olli Salonen <olli.salonen@iki.fi>
10257L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010258W: https://linuxtv.org
Olli Salonen990a6a92014-08-22 13:50:42 -030010259Q: http://patchwork.linuxtv.org/project/linux-media/list/
10260S: Maintained
10261F: drivers/media/dvb-frontends/sp2*
10262
Sam Ravnborg473321f2009-01-04 15:47:49 -080010263SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -070010264M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010265L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010266Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -070010267T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10268T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070010269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010270F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -070010271F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010272
David S. Miller6404fcc2010-03-16 01:00:17 -070010273SPARC SERIAL DRIVERS
10274M: "David S. Miller" <davem@davemloft.net>
10275L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -070010276T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10277T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -070010278S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -050010279F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010280F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080010281F: drivers/tty/serial/sunhv.c
10282F: drivers/tty/serial/sunsab.c
10283F: drivers/tty/serial/sunsab.h
10284F: drivers/tty/serial/sunsu.c
10285F: drivers/tty/serial/sunzilog.c
10286F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -070010287
Christopher Li389325b2012-04-05 14:25:14 -070010288SPARSE CHECKER
10289M: "Christopher Li" <sparse@chrisli.org>
10290L: linux-sparse@vger.kernel.org
10291W: https://sparse.wiki.kernel.org/
10292T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10293T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10294S: Maintained
10295F: include/linux/compiler.h
10296
viresh kumarfc0c1952010-04-01 12:31:21 +010010297SPEAR PLATFORM SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010298M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumar9cc23682014-04-18 15:07:16 -070010299M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010300L: spear-devel@list.st.com
10301L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010302W: http://www.st.com/spear
10303S: Maintained
Joe Perches281e1922013-09-11 14:23:37 -070010304F: arch/arm/mach-spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010305
10306SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumarda899472015-07-17 16:23:50 -070010307M: Viresh Kumar <vireshk@kernel.org>
Viresh Kumarfbfa0742012-03-15 15:17:09 -070010308L: spear-devel@list.st.com
10309L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +010010310W: http://www.st.com/spear
10311S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +053010312F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +010010313
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010314SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +010010315M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +010010316L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +010010317T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -080010318Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010320F: Documentation/spi/
10321F: drivers/spi/
10322F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010323F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010324
Jim Lewis2752e4012006-09-29 02:01:19 -070010325SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -070010326M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
Jim Lewis2752e4012006-09-29 02:01:19 -070010327L: netdev@vger.kernel.org
10328S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010329F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -070010330F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -070010331
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010332SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010333M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +100010334L: linuxppc-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010335W: http://www.ibm.com/developerworks/power/cell/
10336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010337F: Documentation/filesystems/spufs.txt
10338F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010339
Phillip Lougherfc555842009-01-05 08:46:29 +000010340SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +010010341M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +000010342L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10343W: http://squashfs.org.uk
Fengguang Wu9f273c22016-01-20 15:03:25 -080010344T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
Phillip Lougherfc555842009-01-05 08:46:29 +000010345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010346F: Documentation/filesystems/squashfs.txt
10347F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +000010348
Linus Torvalds1da177e2005-04-16 15:20:36 -070010349SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -070010350M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010352F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010353
Linus Torvalds26e9a392008-10-17 09:50:12 -070010354STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -080010355M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -080010356L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -080010357S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -070010358F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010359
Linus Torvalds26e9a392008-10-17 09:50:12 -070010360STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080010361M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -070010362T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -070010363L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -080010364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010365F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -070010366
Joe Perchesebd3d012011-07-05 09:42:02 -070010367STAGING - COMEDI
10368M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -040010369M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -070010370S: Odd Fixes
10371F: drivers/staging/comedi/
10372
Joe Perchesa0138162011-07-05 15:21:34 -070010373STAGING - FLARION FT1000 DRIVERS
10374M: Marek Belisko <marek.belisko@gmail.com>
10375S: Odd Fixes
10376F: drivers/staging/ft1000/
10377
Joe Perches6c1bb422011-07-05 09:42:07 -070010378STAGING - INDUSTRIAL IO
Sachin Kamat030a13d2013-09-11 11:00:00 +010010379M: Jonathan Cameron <jic23@kernel.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010380L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -070010381S: Odd Fixes
10382F: drivers/staging/iio/
10383
Joe Perchesa0138162011-07-05 15:21:34 -070010384STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10385M: Jarod Wilson <jarod@wilsonet.com>
10386W: http://www.lirc.org/
10387S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -080010388F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -070010389
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010390STAGING - LUSTRE PARALLEL FILESYSTEM
10391M: Oleg Drokin <oleg.drokin@intel.com>
10392M: Andreas Dilger <andreas.dilger@intel.com>
Andreas Dilgerd98229f2015-08-24 11:11:49 -040010393L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10394W: http://wiki.lustre.org/
Oleg Drokinf5e5de12014-08-15 12:48:14 -040010395S: Maintained
10396F: drivers/staging/lustre
10397
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010398STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10399M: Marc Dietrich <marvin24@gmx.de>
10400L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -080010401L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +020010402S: Maintained
10403F: drivers/staging/nvec/
10404
Joe Perchesa0138162011-07-05 15:21:34 -070010405STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
Jens Frederich3140b452013-08-04 20:57:43 +020010406M: Jens Frederich <jfrederich@gmail.com>
10407M: Daniel Drake <dsd@laptop.org>
Joe Perchesa0138162011-07-05 15:21:34 -070010408M: Jon Nettleton <jon.nettleton@gmail.com>
10409W: http://wiki.laptop.org/go/DCON
Jens Frederich3140b452013-08-04 20:57:43 +020010410S: Maintained
Joe Perchesa0138162011-07-05 15:21:34 -070010411F: drivers/staging/olpc_dcon/
10412
10413STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -070010414M: Willy Tarreau <willy@meta-x.org>
10415S: Odd Fixes
10416F: drivers/staging/panel/
10417
Joe Perchesa0138162011-07-05 15:21:34 -070010418STAGING - REALTEK RTL8712U DRIVERS
10419M: Larry Finger <Larry.Finger@lwfinger.net>
10420M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10421S: Odd Fixes
10422F: drivers/staging/rtl8712/
10423
Jes Sorensen7591ba82014-04-26 18:54:48 +020010424STAGING - REALTEK RTL8723U WIRELESS DRIVER
10425M: Larry Finger <Larry.Finger@lwfinger.net>
10426M: Jes Sorensen <Jes.Sorensen@redhat.com>
10427L: linux-wireless@vger.kernel.org
10428S: Maintained
10429F: drivers/staging/rtl8723au/
10430
Sudip Mukherjee980ac4d2015-03-03 16:21:07 +053010431STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10432M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10433M: Teddy Wang <teddy.wang@siliconmotion.com>
10434M: Sudip Mukherjee <sudip@vectorindia.org>
10435L: linux-fbdev@vger.kernel.org
10436S: Maintained
10437F: drivers/staging/sm750fb/
10438
Joe Perches510fa4082014-02-10 16:37:56 -080010439STAGING - SLICOSS
10440M: Lior Dotan <liodot@gmail.com>
10441M: Christopher Harrer <charrer@alacritech.com>
10442S: Odd Fixes
10443F: drivers/staging/slicoss/
10444
Joe Perchesa0138162011-07-05 15:21:34 -070010445STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10446M: William Hubbs <w.d.hubbs@gmail.com>
10447M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -050010448M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -070010449M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Samuel Thibaulte6a152e2014-07-17 23:34:58 +020010450L: speakup@linux-speakup.org
Joe Perchesa0138162011-07-05 15:21:34 -070010451W: http://www.linux-speakup.org/
10452S: Odd Fixes
10453F: drivers/staging/speakup/
10454
Joe Perchesb3e871c2011-07-05 09:42:10 -070010455STAGING - VIA VT665X DRIVERS
10456M: Forest Bond <forest@alittletooquiet.net>
10457S: Odd Fixes
10458F: drivers/staging/vt665?/
10459
Johnny Kima30baec2015-05-11 14:30:57 +090010460STAGING - WILC1000 WIFI DRIVER
10461M: Johnny Kim <johnny.kim@atmel.com>
Tony Cho0c9dbce2015-10-28 17:43:27 +090010462M: Austin Shin <austin.shin@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010463M: Chris Park <chris.park@atmel.com>
Tony Cho06b54862015-09-08 17:08:01 +090010464M: Tony Cho <tony.cho@atmel.com>
10465M: Glen Lee <glen.lee@atmel.com>
10466M: Leo Kim <leo.kim@atmel.com>
Johnny Kima30baec2015-05-11 14:30:57 +090010467L: linux-wireless@vger.kernel.org
10468S: Supported
10469F: drivers/staging/wilc1000/
10470
Joe Perches709bcb02011-07-05 09:42:13 -070010471STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +020010472M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -070010473S: Odd Fixes
10474F: drivers/staging/xgifb/
10475
Mike Marciniszyn77241052015-07-30 15:17:43 -040010476HFI1 DRIVER
10477M: Mike Marciniszyn <infinipath@intel.com>
10478L: linux-rdma@vger.kernel.org
10479S: Supported
10480F: drivers/staging/rdma/hfi1
10481
Linus Torvalds1da177e2005-04-16 15:20:36 -070010482STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010483M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -070010484S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -070010485F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010486
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010487SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -070010488M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010489W: http://sammy.net/sun3/
10490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010491F: arch/m68k/kernel/*sun3*
10492F: arch/m68k/sun3*/
10493F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -070010494F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010495
Hans de Goedeaf6a5af2014-12-18 09:24:50 -080010496SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10497M: Hans de Goede <hdegoede@redhat.com>
10498L: linux-input@vger.kernel.org
10499S: Maintained
10500F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10501F: drivers/input/keyboard/sun4i-lradc-keys.c
10502
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +040010503SUNDANCE NETWORK DRIVER
10504M: Denis Kirjanov <kda@linux-powerpc.org>
10505L: netdev@vger.kernel.org
10506S: Maintained
10507F: drivers/net/ethernet/dlink/sundance.c
10508
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010509SUPERH
Rich Felker114bf372016-01-22 15:11:05 -080010510M: Yoshinori Sato <ysato@users.sourceforge.jp>
10511M: Rich Felker <dalias@libc.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +090010512L: linux-sh@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080010513Q: http://patchwork.kernel.org/project/linux-sh/list/
Rich Felker114bf372016-01-22 15:11:05 -080010514S: Maintained
Paul Mundt066069e2009-04-14 06:32:08 +090010515F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -070010516F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +090010517F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -070010518
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010519SUSPEND TO RAM
Rafael J. Wysocki7fb06082014-03-20 03:34:47 +010010520M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Joe Perches8b58be82009-07-29 15:04:30 -070010521M: Len Brown <len.brown@intel.com>
10522M: Pavel Machek <pavel@ucw.cz>
WANG Congbf1c1382011-10-08 20:57:50 +020010523L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070010524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010525F: Documentation/power/
10526F: arch/x86/kernel/acpi/
10527F: drivers/base/power/
10528F: kernel/power/
10529F: include/linux/suspend.h
10530F: include/linux/freezer.h
10531F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010532
10533SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -070010534M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010535L: linux-video@atrey.karlin.mff.cuni.cz
10536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010537F: Documentation/svga.txt
10538F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010539
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010540SWIOTLB SUBSYSTEM
10541M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10542L: linux-kernel@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010543T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -070010544S: Supported
10545F: lib/swiotlb.c
10546F: arch/*/kernel/pci-swiotlb.c
10547F: include/linux/swiotlb.h
10548
Jiri Pirko007f7902014-11-28 14:34:17 +010010549SWITCHDEV
10550M: Jiri Pirko <jiri@resnulli.us>
10551L: netdev@vger.kernel.org
10552S: Supported
10553F: net/switchdev/
10554F: include/net/switchdev.h
10555
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010556SYNOPSYS ARC ARCHITECTURE
10557M: Vineet Gupta <vgupta@synopsys.com>
Vineet Gupta30b9dbe2015-11-14 12:58:53 +053010558L: linux-snps-arc@lists.infradead.org
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010559S: Supported
10560F: arch/arc/
Vineet Gupta9b288292014-11-18 17:36:11 +053010561F: Documentation/devicetree/bindings/arc/*
Rob Herring2d799dd2015-11-05 13:40:40 -060010562F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
Joe Perchesc6a0fe42013-09-11 14:23:45 -070010563F: drivers/tty/serial/arc_uart.c
Baruch Siachb7182d12015-08-11 12:08:32 +030010564T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
Vineet Guptadb8e35d2013-01-18 15:12:25 +053010565
Alexey Brodkin556cc1c2014-01-27 14:51:34 +010010566SYNOPSYS ARC SDP platform support
10567M: Alexey Brodkin <abrodkin@synopsys.com>
10568S: Supported
10569F: arch/arc/plat-axs10x
10570F: arch/arc/boot/dts/ax*
10571F: Documentation/devicetree/bindings/arc/axs10*
10572
Lee Jones6c284c92015-05-12 14:13:58 +010010573SYSTEM CONFIGURATION (SYSCON)
10574M: Lee Jones <lee.jones@linaro.org>
10575M: Arnd Bergmann <arnd@arndb.de>
10576T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10577S: Supported
10578F: drivers/mfd/syscon.c
10579
Linus Torvalds1da177e2005-04-16 15:20:36 -070010580SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070010581M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010583F: Documentation/filesystems/sysv-fs.txt
10584F: fs/sysv/
10585F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070010586
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010587TARGET SUBSYSTEM
Joe Perches9c3646d2015-06-25 15:02:00 -070010588M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010589L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +000010590L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010591W: http://www.linux-iscsi.org
Joe Perchescf015e92014-02-25 15:01:47 -080010592W: http://groups.google.com/group/linux-iscsi-target-dev
Nicholas Bellinger452cf322013-05-11 16:27:56 -070010593T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -070010594S: Supported
10595F: drivers/target/
10596F: include/target/
10597F: Documentation/target/
10598
Alan Cox4e688522008-04-30 00:52:11 -070010599TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -070010600M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -070010601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010602F: Documentation/accounting/taskstats*
10603F: include/linux/taskstats*
10604F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -070010605
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010606TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +000010607M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010608L: netdev@vger.kernel.org
10609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010610F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010611F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -070010612F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -070010613
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010614TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010615M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10616M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010617W: http://tcp-lp-mod.sourceforge.net/
10618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010619F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -070010620
Antti Palosaari91952bc2012-10-01 12:28:46 -030010621TDA10071 MEDIA DRIVER
10622M: Antti Palosaari <crope@iki.fi>
10623L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010624W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010625W: http://palosaari.fi/linux/
10626Q: http://patchwork.linuxtv.org/project/linux-media/list/
10627T: git git://linuxtv.org/anttip/media_tree.git
10628S: Maintained
10629F: drivers/media/dvb-frontends/tda10071*
10630
10631TDA18212 MEDIA DRIVER
10632M: Antti Palosaari <crope@iki.fi>
10633L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010634W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010635W: http://palosaari.fi/linux/
10636Q: http://patchwork.linuxtv.org/project/linux-media/list/
10637T: git git://linuxtv.org/anttip/media_tree.git
10638S: Maintained
10639F: drivers/media/tuners/tda18212*
10640
10641TDA18218 MEDIA DRIVER
10642M: Antti Palosaari <crope@iki.fi>
10643L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010644W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030010645W: http://palosaari.fi/linux/
10646Q: http://patchwork.linuxtv.org/project/linux-media/list/
10647T: git git://linuxtv.org/anttip/media_tree.git
10648S: Maintained
10649F: drivers/media/tuners/tda18218*
10650
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010651TDA18271 MEDIA DRIVER
10652M: Michael Krufky <mkrufky@linuxtv.org>
10653L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010654W: https://linuxtv.org
Michael Krufky3b2f6ab2012-10-02 00:55:32 -030010655W: http://github.com/mkrufky
10656Q: http://patchwork.linuxtv.org/project/linux-media/list/
10657T: git git://linuxtv.org/mkrufky/tuners.git
10658S: Maintained
10659F: drivers/media/tuners/tda18271*
10660
Michael Krufkye48307a2012-10-02 00:56:33 -030010661TDA827x MEDIA DRIVER
10662M: Michael Krufky <mkrufky@linuxtv.org>
10663L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010664W: https://linuxtv.org
Michael Krufkye48307a2012-10-02 00:56:33 -030010665W: http://github.com/mkrufky
10666Q: http://patchwork.linuxtv.org/project/linux-media/list/
10667T: git git://linuxtv.org/mkrufky/tuners.git
10668S: Maintained
10669F: drivers/media/tuners/tda8290.*
10670
Michael Krufky66cf9212012-10-02 00:56:28 -030010671TDA8290 MEDIA DRIVER
10672M: Michael Krufky <mkrufky@linuxtv.org>
10673L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010674W: https://linuxtv.org
Michael Krufky66cf9212012-10-02 00:56:28 -030010675W: http://github.com/mkrufky
10676Q: http://patchwork.linuxtv.org/project/linux-media/list/
10677T: git git://linuxtv.org/mkrufky/tuners.git
10678S: Maintained
10679F: drivers/media/tuners/tda8290.*
10680
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010681TDA9840 MEDIA DRIVER
10682M: Hans Verkuil <hverkuil@xs4all.nl>
10683L: linux-media@vger.kernel.org
10684T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010685W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010686S: Maintained
10687F: drivers/media/i2c/tda9840*
10688
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010689TEA5761 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010690M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010691L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010692W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010693T: git git://linuxtv.org/media_tree.git
10694S: Odd fixes
10695F: drivers/media/tuners/tea5761.*
10696
10697TEA5767 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020010698M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010699L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010700W: https://linuxtv.org
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -020010701T: git git://linuxtv.org/media_tree.git
10702S: Maintained
10703F: drivers/media/tuners/tea5767.*
10704
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010705TEA6415C MEDIA DRIVER
10706M: Hans Verkuil <hverkuil@xs4all.nl>
10707L: linux-media@vger.kernel.org
10708T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010709W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010710S: Maintained
10711F: drivers/media/i2c/tea6415c*
10712
10713TEA6420 MEDIA DRIVER
10714M: Hans Verkuil <hverkuil@xs4all.nl>
10715L: linux-media@vger.kernel.org
10716T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010717W: https://linuxtv.org
Hans Verkuil4b9fba32012-11-23 10:02:05 -030010718S: Maintained
10719F: drivers/media/i2c/tea6420*
10720
Jiri Pirko3d249d42011-11-11 22:16:48 +000010721TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +000010722M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +000010723L: netdev@vger.kernel.org
10724S: Supported
10725F: drivers/net/team/
10726F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010727F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +000010728
Vivien Didelot7d029122013-01-04 16:18:14 -050010729TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
Joe Perches9c3646d2015-06-25 15:02:00 -070010730M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
Vivien Didelot7d029122013-01-04 16:18:14 -050010731S: Maintained
10732F: arch/x86/platform/ts5500/
10733
Sean Young40ad4a32012-11-19 10:32:53 -030010734TECHNOTREND USB IR RECEIVER
10735M: Sean Young <sean@mess.org>
10736L: linux-media@vger.kernel.org
10737S: Maintained
10738F: drivers/media/rc/ttusbir.c
10739
Stephen Warrenadabdb02013-09-13 13:00:57 -060010740TEGRA ARCHITECTURE SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -070010741M: Stephen Warren <swarren@wwwdotorg.org>
Stephen Warrenadabdb02013-09-13 13:00:57 -060010742M: Thierry Reding <thierry.reding@gmail.com>
Stephen Warren554077c2014-10-03 09:50:32 -060010743M: Alexandre Courbot <gnurou@gmail.com>
Erik Gilling84b94142010-06-09 15:35:53 -070010744L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -070010745Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
Andreas Färberb779b882014-07-28 12:06:26 -060010746T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
Erik Gilling84b94142010-06-09 15:35:53 -070010747S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070010748N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -070010749
Stephen Warrenadabdb02013-09-13 13:00:57 -060010750TEGRA CLOCK DRIVER
10751M: Peter De Schrijver <pdeschrijver@nvidia.com>
10752M: Prashant Gaikwad <pgaikwad@nvidia.com>
10753S: Supported
10754F: drivers/clk/tegra/
10755
10756TEGRA DMA DRIVER
10757M: Laxman Dewangan <ldewangan@nvidia.com>
10758S: Supported
10759F: drivers/dma/tegra20-apb-dma.c
10760
Stephen Warrenadabdb02013-09-13 13:00:57 -060010761TEGRA I2C DRIVER
10762M: Laxman Dewangan <ldewangan@nvidia.com>
10763S: Supported
10764F: drivers/i2c/busses/i2c-tegra.c
10765
10766TEGRA IOMMU DRIVERS
10767M: Hiroshi Doyu <hdoyu@nvidia.com>
10768S: Supported
10769F: drivers/iommu/tegra*
10770
10771TEGRA KBC DRIVER
10772M: Rakesh Iyer <riyer@nvidia.com>
10773M: Laxman Dewangan <ldewangan@nvidia.com>
10774S: Supported
10775F: drivers/input/keyboard/tegra-kbc.c
10776
Stephen Warrenadabdb02013-09-13 13:00:57 -060010777TEGRA PWM DRIVER
10778M: Thierry Reding <thierry.reding@gmail.com>
10779S: Supported
10780F: drivers/pwm/pwm-tegra.c
10781
10782TEGRA SERIAL DRIVER
10783M: Laxman Dewangan <ldewangan@nvidia.com>
10784S: Supported
10785F: drivers/tty/serial/serial-tegra.c
10786
10787TEGRA SPI DRIVER
10788M: Laxman Dewangan <ldewangan@nvidia.com>
10789S: Supported
10790F: drivers/spi/spi-tegra*
10791
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010792TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010793M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010794L: netdev@vger.kernel.org
10795S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -070010796F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -070010797
Alan Cox4e688522008-04-30 00:52:11 -070010798Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -070010799M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -070010800S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070010801F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -070010802
Randy Dunlap4480f15b2008-10-12 16:11:58 -070010803TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -070010804M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -070010805M: Max Filippov <jcmvbkbc@gmail.com>
10806L: linux-xtensa@linux-xtensa.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080010807T: git git://github.com/czankel/xtensa-linux.git
Alan Cox4e688522008-04-30 00:52:11 -070010808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010809F: arch/xtensa/
Max Filippov3dc99852014-04-03 14:48:48 -070010810F: drivers/irqchip/irq-xtensa-*
Alan Cox4e688522008-04-30 00:52:11 -070010811
Hans Verkuil5313ba62013-12-13 09:00:38 -030010812THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10813M: Hans Verkuil <hverkuil@xs4all.nl>
10814L: linux-media@vger.kernel.org
10815T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020010816W: https://linuxtv.org
Hans Verkuil5313ba62013-12-13 09:00:38 -030010817S: Maintained
10818F: drivers/media/radio/radio-raremono.c
10819
Zhang Ruid3fb6952012-11-15 08:58:27 +080010820THERMAL
Joe Perchesb75f0052014-03-03 15:38:37 -080010821M: Zhang Rui <rui.zhang@intel.com>
Lee Jonesf14d1c22014-05-30 11:03:28 +010010822M: Eduardo Valentin <edubezval@gmail.com>
Joe Perchesb75f0052014-03-03 15:38:37 -080010823L: linux-pm@vger.kernel.org
10824T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10825T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10826Q: https://patchwork.kernel.org/project/linux-pm/list/
10827S: Supported
10828F: drivers/thermal/
10829F: include/linux/thermal.h
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080010830F: include/uapi/linux/thermal.h
Joe Perchesb75f0052014-03-03 15:38:37 -080010831F: include/linux/cpu_cooling.h
10832F: Documentation/devicetree/bindings/thermal/
Zhang Ruid3fb6952012-11-15 08:58:27 +080010833
Viresh Kumar64e05d82015-08-27 07:32:11 +053010834THERMAL/CPU_COOLING
10835M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10836M: Viresh Kumar <viresh.kumar@linaro.org>
10837M: Javi Merino <javi.merino@arm.com>
10838L: linux-pm@vger.kernel.org
10839S: Supported
10840F: Documentation/thermal/cpu-cooling-api.txt
10841F: drivers/thermal/cpu_cooling.c
10842F: include/linux/cpu_cooling.h
10843
Vivien Didelot30ba2fb2013-01-22 12:01:21 -050010844THINGM BLINK(1) USB RGB LED DRIVER
10845M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10846S: Maintained
10847F: drivers/hid/hid-thingm.c
10848
Alan Cox4e688522008-04-30 00:52:11 -070010849THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010850M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -070010851L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -050010852L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070010853W: http://ibm-acpi.sourceforge.net
10854W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -070010855T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -070010856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010857F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -070010858
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010859TI BANDGAP AND THERMAL DRIVER
Lee Jonesf14d1c22014-05-30 11:03:28 +010010860M: Eduardo Valentin <edubezval@gmail.com>
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010861L: linux-pm@vger.kernel.org
Nishanth Menon531ff132015-01-03 13:13:30 -060010862L: linux-omap@vger.kernel.org
Eduardo Valentin5a723e82015-01-05 17:48:13 -040010863S: Maintained
Eduardo Valentin794b2e22013-05-15 15:46:01 +000010864F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -040010865
Max Filippov0c7665c2015-01-12 10:20:46 +030010866TI CDCE706 CLOCK DRIVER
10867M: Max Filippov <jcmvbkbc@gmail.com>
10868S: Maintained
10869F: drivers/clk/clk-cdce706.c
10870
Tero Kristo49b6a5e2014-07-02 17:03:50 +030010871TI CLOCK DRIVER
10872M: Tero Kristo <t-kristo@ti.com>
10873L: linux-omap@vger.kernel.org
10874S: Maintained
10875F: drivers/clk/ti/
10876F: include/linux/clk/ti.h
10877
Alex Dubov4020f2d2006-10-04 02:15:37 -070010878TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010879M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020010880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010881F: drivers/misc/tifm*
10882F: drivers/mmc/host/tifm_sd.c
10883F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -070010884
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010885TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
Santosh Shilimkar97215802014-10-13 14:16:28 -040010886M: Santosh Shilimkar <ssantosh@kernel.org>
Santosh Shilimkare0c52402014-07-10 11:30:08 -040010887L: linux-kernel@vger.kernel.org
10888L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10889S: Maintained
10890F: drivers/soc/ti/*
10891T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10892
10893
M R Swami Reddy152ad442012-04-02 20:02:31 +053010894TI LM49xxx FAMILY ASoC CODEC DRIVERS
10895M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010896M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +053010897L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10898S: Maintained
10899F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +053010900F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +053010901
Kim, Milo0edd8072012-12-17 16:01:17 -080010902TI LP855x BACKLIGHT DRIVER
10903M: Milo Kim <milo.kim@ti.com>
10904S: Maintained
10905F: Documentation/backlight/lp855x-driver.txt
10906F: drivers/video/backlight/lp855x_bl.c
10907F: include/linux/platform_data/lp855x.h
10908
Kim, Milofaf13f62012-12-10 05:27:03 +000010909TI LP8727 CHARGER DRIVER
10910M: Milo Kim <milo.kim@ti.com>
10911S: Maintained
10912F: drivers/power/lp8727_charger.c
10913F: include/linux/platform_data/lp8727.h
10914
Kim, Milo22f12292012-12-10 05:27:55 +000010915TI LP8788 MFD DRIVER
10916M: Milo Kim <milo.kim@ti.com>
10917S: Maintained
10918F: drivers/iio/adc/lp8788_adc.c
10919F: drivers/leds/leds-lp8788.c
10920F: drivers/mfd/lp8788*.c
10921F: drivers/power/lp8788-charger.c
10922F: drivers/regulator/lp8788-*.c
10923F: include/linux/mfd/lp8788*.h
10924
Karicheri, Muralidharan84640e22015-01-15 19:12:50 -050010925TI NETCP ETHERNET DRIVER
10926M: Wingman Kwok <w-kwok2@ti.com>
10927M: Murali Karicheri <m-karicheri2@ti.com>
10928L: netdev@vger.kernel.org
10929S: Maintained
10930F: drivers/net/ethernet/ti/netcp*
10931
Kevin Cernekee217e0ca2015-05-03 17:00:19 -070010932TI TAS571X FAMILY ASoC CODEC DRIVER
10933M: Kevin Cernekee <cernekee@chromium.org>
10934L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10935S: Odd Fixes
10936F: sound/soc/codecs/tas571x*
10937
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010938TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +030010939M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +030010940L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10941S: Maintained
10942F: sound/soc/codecs/twl4030*
10943
Luciano Coelho90921012011-11-20 21:40:41 +020010944TI WILINK WIRELESS DRIVERS
Luciano Coelho90921012011-11-20 21:40:41 +020010945L: linux-wireless@vger.kernel.org
10946W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10947W: http://wireless.kernel.org/en/users/Drivers/wl1251
10948T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho22d072f2013-12-09 22:28:32 +020010949S: Orphan
Luciano Coelho90921012011-11-20 21:40:41 +020010950F: drivers/net/wireless/ti/
10951F: include/linux/wl12xx.h
10952
Per Lidene86eaa32006-01-12 16:45:18 +010010953TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -070010954M: Jon Maloy <jon.maloy@ericsson.com>
Jon Paul Maloy115403d2015-03-09 14:44:13 -040010955M: Ying Xue <ying.xue@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -050010956L: netdev@vger.kernel.org (core kernel code)
10957L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +010010958W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +010010959S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080010960F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -070010961F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +010010962
Chris Metcalf867e3592010-05-28 23:09:12 -040010963TILE ARCHITECTURE
Chris Metcalfc47b15c2014-11-13 09:41:58 -050010964M: Chris Metcalf <cmetcalf@ezchip.com>
Chris Metcalf740e1432015-02-13 13:16:49 -050010965W: http://www.ezchip.com/scm/
Fengguang Wu7fa129c2015-12-18 10:15:37 -050010966T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
Chris Metcalf867e3592010-05-28 23:09:12 -040010967S: Supported
10968F: arch/tile/
Chris Metcalf6b940602013-08-07 10:45:01 -040010969F: drivers/char/tile-srom.c
Chris Metcalf5c770752011-03-01 13:01:49 -050010970F: drivers/edac/tile_edac.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010971F: drivers/net/ethernet/tile/
10972F: drivers/rtc/rtc-tile.c
10973F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfb5c6c1a2013-08-12 14:11:44 -040010974F: drivers/tty/serial/tilegx.c
Chris Metcalf6b940602013-08-07 10:45:01 -040010975F: drivers/usb/host/*-tilegx.c
10976F: include/linux/usb/tilegx.h
Chris Metcalf867e3592010-05-28 23:09:12 -040010977
Linus Torvalds1da177e2005-04-16 15:20:36 -070010978TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070010979M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +080010980L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010981W: http://sourceforge.net/projects/tlan/
10982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010983F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -070010984F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010985
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010986TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -070010987M: Kentaro Takeda <takedakn@nttdata.co.jp>
10988M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +090010989L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10990L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010991L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10992L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10993W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +090010994T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070010996F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +090010997
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030010998TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -030010999M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050011000L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -030011001S: Maintained
11002F: drivers/platform/x86/topstar-laptop.c
11003
Linus Torvalds1da177e2005-04-16 15:20:36 -070011004TOSHIBA ACPI EXTRAS DRIVER
Azael Avalos0a63ca12015-03-06 18:14:42 -070011005M: Azael Avalos <coproscefalo@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -050011006L: platform-driver-x86@vger.kernel.org
Azael Avalos0a63ca12015-03-06 18:14:42 -070011007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011008F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011009
Azael Avalos0a63ca12015-03-06 18:14:42 -070011010TOSHIBA BLUETOOTH DRIVER
11011M: Azael Avalos <coproscefalo@gmail.com>
11012L: platform-driver-x86@vger.kernel.org
11013S: Maintained
11014F: drivers/platform/x86/toshiba_bluetooth.c
11015
11016TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11017M: Azael Avalos <coproscefalo@gmail.com>
11018L: platform-driver-x86@vger.kernel.org
11019S: Maintained
11020F: drivers/platform/x86/toshiba_haps.c
11021
Azael Avalos14991fc2015-09-28 20:32:28 -060011022TOSHIBA WMI HOTKEYS DRIVER
11023M: Azael Avalos <coproscefalo@gmail.com>
11024L: platform-driver-x86@vger.kernel.org
11025S: Maintained
11026F: drivers/platform/x86/toshiba-wmi.c
11027
Linus Torvalds1da177e2005-04-16 15:20:36 -070011028TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011029M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011030W: http://www.buzzard.org.uk/toshiba/
11031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011032F: drivers/char/toshiba.c
11033F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011034F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011035
Mats Randgaardd32d9862015-07-09 05:45:47 -030011036TOSHIBA TC358743 DRIVER
11037M: Mats Randgaard <matrandg@cisco.com>
11038L: linux-media@vger.kernel.org
11039S: Maintained
11040F: drivers/media/i2c/tc358743*
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020011041F: include/media/i2c/tc358743.h
Mats Randgaardd32d9862015-07-09 05:45:47 -030011042
Pierre Ossmand719f902009-03-24 21:06:09 +010011043TMIO MMC DRIVER
Ben Hutchingsc4b13fb2015-04-27 00:01:53 +010011044M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011045L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +010011046S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +020011047F: drivers/mmc/host/tmio_mmc*
11048F: drivers/mmc/host/sh_mobile_sdhi.c
11049F: include/linux/mmc/tmio.h
11050F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +010011051
Guenter Roeck917cc4e2013-05-19 20:44:27 -070011052TMP401 HARDWARE MONITOR DRIVER
11053M: Guenter Roeck <linux@roeck-us.net>
11054L: lm-sensors@lm-sensors.org
11055S: Maintained
11056F: Documentation/hwmon/tmp401
11057F: drivers/hwmon/tmp401.c
11058
Hugh Dickins98f32602009-05-21 20:33:58 +010011059TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -070011060M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +010011061L: linux-mm@kvack.org
11062S: Maintained
11063F: include/linux/shmem_fs.h
11064F: mm/shmem.c
11065
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011066TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020011067M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011068L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011069W: https://linuxtv.org
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -020011070T: git git://linuxtv.org/media_tree.git
11071S: Odd fixes
11072F: drivers/media/usb/tm6000/
11073
Hans Verkuilc65fde12014-08-10 05:16:39 -030011074TW68 VIDEO4LINUX DRIVER
11075M: Hans Verkuil <hverkuil@xs4all.nl>
11076L: linux-media@vger.kernel.org
11077T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011078W: https://linuxtv.org
Hans Verkuilc65fde12014-08-10 05:16:39 -030011079S: Odd Fixes
11080F: drivers/media/pci/tw68/
11081
Alan Cox4e688522008-04-30 00:52:11 -070011082TPM DEVICE DRIVER
Peter Huewe901486b2013-10-22 19:28:30 +020011083M: Peter Huewe <peterhuewe@gmx.de>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -030011084M: Marcel Selhorst <tpmdd@selhorst.net>
Jarkko Sakkinen89adb832015-10-16 12:14:28 +030011085M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Peter Huewece93b4b2015-03-15 01:05:31 +010011086R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Peter Huewe383dec12013-10-30 20:54:45 +010011087W: http://tpmdd.sourceforge.net
Rajiv Andrade63a10df2008-10-15 22:04:36 -070011088L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Peter Huewef78c81b2015-01-17 15:17:51 +010011089Q: git git://github.com/PeterHuewe/linux-tpmdd.git
Fengguang Wu9f273c22016-01-20 15:03:25 -080011090T: git https://github.com/PeterHuewe/linux-tpmdd
Alan Cox4e688522008-04-30 00:52:11 -070011091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011092F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -070011093
Ashley Lai1a0f1b22014-12-04 21:01:51 -060011094TPM IBM_VTPM DEVICE DRIVER
11095M: Ashley Lai <ashleydlai@gmail.com>
11096W: http://tpmdd.sourceforge.net
11097L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11098S: Maintained
11099F: drivers/char/tpm/tpm_ibmvtpm*
11100
Joe Perchesd6f005a2009-10-26 16:49:40 -070011101TRACING
11102M: Steven Rostedt <rostedt@goodmis.org>
Joe Perchesd6f005a2009-10-26 16:49:40 -070011103M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011104T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -070011105S: Maintained
11106F: Documentation/trace/ftrace.txt
11107F: arch/*/*/*/ftrace.h
11108F: arch/*/kernel/ftrace.c
11109F: include/*/ftrace.h
11110F: include/linux/trace*.h
11111F: include/trace/
11112F: kernel/trace/
Masami Hiramatsu6e68e6c2014-09-22 23:42:50 +000011113F: tools/testing/selftests/ftrace/
Joe Perchesd6f005a2009-10-26 16:49:40 -070011114
Linus Torvalds1da177e2005-04-16 15:20:36 -070011115TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -070011116M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -070011117T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011118S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +020011119K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -070011120
Alan Cox4e688522008-04-30 00:52:11 -070011121TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -080011122M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slabyd8130622015-07-17 16:23:20 -070011123M: Jiri Slaby <jslaby@suse.com>
Greg KH879a5a02012-01-31 20:02:00 -080011124S: Supported
Joe Perches08deed12012-03-23 15:01:57 -070011125T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Baruch Siach84e1eb82015-06-04 10:56:58 +030011126F: Documentation/serial/
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -020011127F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080011128F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +010011129F: include/linux/serial_core.h
11130F: include/linux/serial.h
11131F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011132F: include/uapi/linux/serial_core.h
11133F: include/uapi/linux/serial.h
11134F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -070011135
Antti Palosaari91952bc2012-10-01 12:28:46 -030011136TUA9001 MEDIA DRIVER
11137M: Antti Palosaari <crope@iki.fi>
11138L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011139W: https://linuxtv.org
Antti Palosaari91952bc2012-10-01 12:28:46 -030011140W: http://palosaari.fi/linux/
11141Q: http://patchwork.linuxtv.org/project/linux-media/list/
11142T: git git://linuxtv.org/anttip/media_tree.git
11143S: Maintained
11144F: drivers/media/tuners/tua9001*
11145
Grant Grundler740db6d2008-02-17 11:53:49 -070011146TULIP NETWORK DRIVERS
Grant Grundler740db6d2008-02-17 11:53:49 -070011147L: netdev@vger.kernel.org
Grant Grundlercf869eb2015-11-19 17:56:12 -080011148L: linux-parisc@vger.kernel.org
11149S: Orphan
Joe Perches0f04e2a2012-01-10 15:08:56 -080011150F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011151
11152TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +000011153M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011154W: http://vtun.sourceforge.net/tun
11155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011156F: Documentation/networking/tuntap.txt
11157F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011158
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011159TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011160M: "Maciej W. Rozycki" <macro@linux-mips.org>
Ralf Baechlec4063392014-04-03 13:29:06 +020011161M: Ralf Baechle <ralf@linux-mips.org>
11162L: linux-mips@linux-mips.org
11163Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011165F: drivers/tc/
11166F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -080011167
Linus Torvalds1da177e2005-04-16 15:20:36 -070011168U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011169M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011170L: linux-scsi@vger.kernel.org
11171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011172F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011173
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011174UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011175M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +030011176M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011177L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +030011178T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011179W: http://www.linux-mtd.infradead.org/doc/ubifs.html
11180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011181F: Documentation/filesystems/ubifs.txt
11182F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011183
Greg Ungerere1632fa2015-06-19 10:40:03 +100011184UCLINUX (M68KNOMMU AND COLDFIRE)
Joe Perches8b58be82009-07-29 15:04:30 -070011185M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +010011186W: http://www.uclinux.org/
Greg Ungerere1632fa2015-06-19 10:40:03 +100011187L: linux-m68k@lists.linux-m68k.org
Alan Coxcc2020e2008-05-19 14:21:51 +010011188L: uclinux-dev@uclinux.org (subscribers-only)
Greg Ungerere1632fa2015-06-19 10:40:03 +100011189T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Alan Coxcc2020e2008-05-19 14:21:51 +010011190S: Maintained
Greg Ungerere1632fa2015-06-19 10:40:03 +100011191F: arch/m68k/coldfire/
11192F: arch/m68k/68*/
Joe Perches61bc02b2011-04-14 15:22:04 -070011193F: arch/m68k/*/*_no.*
11194F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +010011195
Linus Torvalds1da177e2005-04-16 15:20:36 -070011196UDF FILESYSTEM
Jiri Slabyd8130622015-07-17 16:23:20 -070011197M: Jan Kara <jack@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011199F: Documentation/filesystems/udf.txt
11200F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011201
Alan Coxcc2020e2008-05-19 14:21:51 +010011202UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011203M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +010011204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011205F: Documentation/filesystems/ufs.txt
11206F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +010011207
David Herrmann0a09d3a2012-06-10 15:16:28 +020011208UHID USERSPACE HID IO DRIVER:
11209M: David Herrmann <dh.herrmann@googlemail.com>
11210L: linux-input@vger.kernel.org
11211S: Maintained
11212F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011213F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +020011214
David Vrabel18332a82008-09-17 16:34:44 +010011215ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +010011216L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +010011217S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +000011218F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -070011219F: include/linux/uwb.h
11220F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +010011221
GuanXuetaob31d8272011-01-16 00:35:49 +080011222UNICORE32 ARCHITECTURE:
11223M: Guan Xuetao <gxt@mprc.pku.edu.cn>
11224W: http://mprc.pku.edu.cn/~guanxuetao/linux
11225S: Maintained
Guan Xuetaoceebf4d2014-05-27 07:53:10 +080011226T: git git://github.com/gxt/linux.git
GuanXuetaob31d8272011-01-16 00:35:49 +080011227F: arch/unicore32/
11228
Tony Finchd8379ab2009-11-27 15:50:30 +000011229UNIFDEF
11230M: Tony Finch <dot@dotat.at>
11231W: http://dotat.at/prog/unifdef
11232S: Maintained
11233F: scripts/unifdef.c
11234
Linus Torvalds1da177e2005-04-16 15:20:36 -070011235UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011236M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011237W: http://www.kernel.dk
11238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011239F: Documentation/cdrom/
11240F: drivers/cdrom/cdrom.c
11241F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011242F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011243
Benjamin Romer56df0122014-03-07 13:02:21 -060011244UNISYS S-PAR DRIVERS
Joe Perches49e7d9d2015-04-15 16:17:31 -070011245M: Benjamin Romer <benjamin.romer@unisys.com>
11246M: David Kershner <david.kershner@unisys.com>
11247L: sparmaintainer@unisys.com (Unisys internal)
11248S: Supported
11249F: drivers/staging/unisys/
Benjamin Romer56df0122014-03-07 13:02:21 -060011250
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011251UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11252M: Vinayak Holikatti <vinholikatti@gmail.com>
Vinayak Holikatti9941fa62012-04-20 14:11:50 +053011253L: linux-scsi@vger.kernel.org
11254S: Supported
11255F: Documentation/scsi/ufs.txt
11256F: drivers/scsi/ufs/
11257
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011258UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +030011259M: Artem Bityutskiy <dedekind1@gmail.com>
Richard Weinberger346be9b2015-01-28 12:28:24 +010011260M: Richard Weinberger <richard@nod.at>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011261W: http://www.linux-mtd.infradead.org/
11262L: linux-mtd@lists.infradead.org
Artem Bityutskiyb6b44e02014-01-02 16:43:51 +020011263T: git git://git.infradead.org/ubifs-2.6.git
Richard Weinberger346be9b2015-01-28 12:28:24 +010011264S: Supported
Joe Perches80811492009-04-08 20:20:27 -070011265F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -070011266F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011267F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011268
Linus Torvalds1da177e2005-04-16 15:20:36 -070011269USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011270M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -070011271L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011273F: Documentation/usb/acm.txt
11274F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011275
Pontus Fuchsb7d572e2012-10-23 20:33:57 +020011276USB AR5523 WIRELESS DRIVER
11277M: Pontus Fuchs <pontus.fuchs@gmail.com>
11278L: linux-wireless@vger.kernel.org
11279S: Maintained
11280F: drivers/net/wireless/ath/ar5523/
11281
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011282USB ATTACHED SCSI
Hans de Goedef50a4962013-10-28 10:48:04 +000011283M: Hans de Goede <hdegoede@redhat.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011284M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011285L: linux-usb@vger.kernel.org
11286L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +010011287S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +020011288F: drivers/usb/storage/uas.c
11289
Linus Torvalds1da177e2005-04-16 15:20:36 -070011290USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +020011291M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011292L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011294F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011295F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011296
Keith Packard66e3e592015-03-19 20:36:49 -070011297USB CHAOSKEY DRIVER
11298M: Keith Packard <keithp@keithp.com>
11299L: linux-usb@vger.kernel.org
11300S: Maintained
11301F: drivers/usb/misc/chaoskey.c
11302
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011303USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011304M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011305L: linux-usb@vger.kernel.org
11306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011307F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +020011308
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011309USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011310M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011311L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011312W: http://www.linux-usb.org/usbnet
11313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011314F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +010011315
Alan Coxcc2020e2008-05-19 14:21:51 +010011316USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011317M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +010011318L: rio500-users@lists.sourceforge.net
11319W: http://rio500.sourceforge.net
11320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011321F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +010011322
Linus Torvalds1da177e2005-04-16 15:20:36 -070011323USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011324M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011325L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011327F: Documentation/usb/ehci.txt
11328F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011329
David Brownell69ae9e32006-11-14 02:03:31 -080011330USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f665a2011-06-08 19:16:28 +030011331M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011332L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011333W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f665a2011-06-08 19:16:28 +030011334T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011336F: drivers/usb/gadget/
11337F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -080011338
Jiri Kosina2dea64b2007-07-11 12:12:11 +020011339USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosinae5f64502015-08-09 09:11:34 +020011340M: Jiri Kosina <jikos@kernel.org>
Jiri Kosina406df152015-11-20 10:16:06 +010011341R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011342L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -070011343T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011344S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -070011345F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -070011346F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011347
Olav Kongas959eea22005-11-03 17:38:14 +020011348USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011349M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011350L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +020011351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011352F: drivers/usb/host/isp116x*
11353F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +020011354
Linus Torvalds1da177e2005-04-16 15:20:36 -070011355USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011356M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011357L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -080011358L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -070011359S: Maintained
11360W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -070011361F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011362
Clemens Ladischaf399172011-01-10 16:32:54 +010011363USB MIDI DRIVER
11364M: Clemens Ladisch <clemens@ladisch.de>
11365L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11366T: git git://git.alsa-project.org/alsa-kernel.git
11367S: Maintained
11368F: sound/usb/midi.*
11369
Joe Perches444ce9d2013-08-01 21:03:32 -070011370USB NETWORKING DRIVERS
11371L: linux-usb@vger.kernel.org
11372S: Odd Fixes
11373F: drivers/net/usb/
11374
Linus Torvalds1da177e2005-04-16 15:20:36 -070011375USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -040011376M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011377L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -040011378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011379F: Documentation/usb/ohci.txt
11380F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011381
Peter Chen963ffa32015-02-15 12:22:59 +080011382USB OTG FSM (Finite State Machine)
Peter Chen60d77b3d2015-12-25 15:54:32 +080011383M: Peter Chen <Peter.Chen@nxp.com>
Peter Chen83738562015-03-23 19:57:36 +080011384T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
Peter Chen963ffa32015-02-15 12:22:59 +080011385L: linux-usb@vger.kernel.org
11386S: Maintained
11387F: drivers/usb/common/usb-otg-fsm.c
11388
Valentina Manea563da3a2014-08-20 07:31:02 +030011389USB OVER IP DRIVER
11390M: Valentina Manea <valentina.manea.m@gmail.com>
11391M: Shuah Khan <shuah.kh@samsung.com>
11392L: linux-usb@vger.kernel.org
11393S: Maintained
11394F: drivers/usb/usbip/
11395F: tools/usb/usbip/
11396
Linus Torvalds1da177e2005-04-16 15:20:36 -070011397USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011398M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011399L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011400L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011401T: git git://github.com/petkan/pegasus.git
11402W: https://github.com/petkan/pegasus
Linus Torvalds1da177e2005-04-16 15:20:36 -070011403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011404F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011405
Felipe Balbid3ad5582012-05-21 16:24:49 +030011406USB PHY LAYER
11407M: Felipe Balbi <balbi@ti.com>
11408L: linux-usb@vger.kernel.org
11409T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11410S: Maintained
11411F: drivers/usb/phy/
Felipe Balbid3ad5582012-05-21 16:24:49 +030011412
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011413USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -070011414M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011415L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -070011416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011417F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011418
Bjørn Mork4521b472015-12-03 19:24:23 +010011419USB QMI WWAN NETWORK DRIVER
11420M: Bjørn Mork <bjorn@mork.no>
11421L: netdev@vger.kernel.org
11422S: Maintained
11423F: Documentation/ABI/testing/sysfs-class-net-qmi
11424F: drivers/net/usb/qmi_wwan.c
11425
Linus Torvalds1da177e2005-04-16 15:20:36 -070011426USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -070011427M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011428L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +020011429L: netdev@vger.kernel.org
Petko Manolov052e3122013-11-15 11:51:54 +020011430T: git git://github.com/petkan/rtl8150.git
11431W: https://github.com/petkan/rtl8150
Linus Torvalds1da177e2005-04-16 15:20:36 -070011432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011433F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011434
Greg KHf896b792013-10-30 11:07:31 -070011435USB SERIAL SUBSYSTEM
Johan Hovold66085692014-06-23 12:33:15 +020011436M: Johan Hovold <johan@kernel.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011437L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -070011438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011439F: Documentation/usb/usb-serial.txt
Greg KHf896b792013-10-30 11:07:31 -070011440F: drivers/usb/serial/
Joe Perches679655d2009-04-07 20:44:32 -070011441F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011442
Steve Glendinningb3f0db12012-08-15 21:53:38 +000011443USB SMSC75XX ETHERNET DRIVER
11444M: Steve Glendinning <steve.glendinning@shawell.net>
11445L: netdev@vger.kernel.org
11446S: Maintained
11447F: drivers/net/usb/smsc75xx.*
11448
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011449USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011450M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011451L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +010011452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011453F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +000011454
Linus Torvalds1da177e2005-04-16 15:20:36 -070011455USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -080011456M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011457L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011458W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -070011459T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011461F: Documentation/usb/
Joe Perches679655d2009-04-07 20:44:32 -070011462F: drivers/usb/
11463F: include/linux/usb.h
11464F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011465
11466USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011467M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011468L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011470F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011471
David Brownell69ae9e32006-11-14 02:03:31 -080011472USB "USBNET" DRIVER FRAMEWORK
Jiri Slabyd8130622015-07-17 16:23:20 -070011473M: Oliver Neukum <oneukum@suse.com>
Peter Korsgaard043600a2007-06-27 21:18:18 +020011474L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -080011475W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -070011476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011477F: drivers/net/usb/usbnet.c
11478F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011479
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011480USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -070011481M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -030011482L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011483L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011484T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -030011485W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -030011486S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -030011487F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -020011488F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011489
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011490USB VISION DRIVER
11491M: Hans Verkuil <hverkuil@xs4all.nl>
11492L: linux-media@vger.kernel.org
11493T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011494W: https://linuxtv.org
Hans Verkuilb60b9c42012-11-23 07:54:42 -030011495S: Odd Fixes
11496F: drivers/media/usb/usbvision/
11497
Laurent Pinchart8282da42012-10-04 02:32:42 +020011498USB WEBCAM GADGET
11499M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11500L: linux-usb@vger.kernel.org
11501S: Maintained
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030011502F: drivers/usb/gadget/function/*uvc*
Joe Perchesfaf2e1d2014-08-08 14:26:18 -070011503F: drivers/usb/gadget/legacy/webcam.c
Laurent Pinchart8282da42012-10-04 02:32:42 +020011504
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011505USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +020011506M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011507L: linux-wireless@vger.kernel.org
11508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011509F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020011510
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011511USB XHCI DRIVER
Sarah Sharp03d85052014-03-20 16:20:56 -070011512M: Mathias Nyman <mathias.nyman@intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011513L: linux-usb@vger.kernel.org
11514S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -080011515F: drivers/usb/host/xhci*
11516F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -070011517
Linus Torvalds1da177e2005-04-16 15:20:36 -070011518USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -040011519L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070011520W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -040011521S: Orphan
Kalle Valoed0ad062015-11-18 07:39:37 +020011522F: drivers/net/wireless/zydas/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011523
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011524USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011525M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +020011526L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -030011527L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -020011528T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011529W: http://royale.zerezo.com/zr364xx/
11530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011531F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011532F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011533
Heikki Krogerus289fcff2015-05-13 15:26:42 +030011534ULPI BUS
11535M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11536L: linux-usb@vger.kernel.org
11537S: Maintained
11538F: drivers/usb/common/ulpi.c
11539F: include/linux/ulpi/
11540
Randy Dunlape7839f22008-10-12 16:11:45 -070011541USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -070011542M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +010011543M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011544L: user-mode-linux-devel@lists.sourceforge.net
11545L: user-mode-linux-user@lists.sourceforge.net
11546W: http://user-mode-linux.sourceforge.net
Fengguang Wu9f273c22016-01-20 15:03:25 -080011547T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070011548S: Maintained
Rob Landley61516582011-05-06 09:27:36 -070011549F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -070011550F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +020011551F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -070011552F: fs/hostfs/
11553F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -030011554
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011555USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -070011556M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -080011557M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011558S: Maintained
Mandeep Sandhu3d3fecb2015-01-10 19:15:45 -080011559T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Joe Perches679655d2009-04-07 20:44:32 -070011560F: Documentation/DocBook/uio-howto.tmpl
11561F: drivers/uio/
11562F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +010011563
Karel Zak256cccb2012-06-01 10:13:09 +020011564UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -070011565M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +020011566L: util-linux@vger.kernel.org
11567W: http://en.wikipedia.org/wiki/Util-linux
11568T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -070011569S: Maintained
11570
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011571UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011572M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011573L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011574W: http://dev.gentoo.org/~spock/projects/uvesafb/
11575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011576F: Documentation/fb/uvesafb.txt
Jingoo Han8a61f012014-07-01 15:36:01 +090011577F: drivers/video/fbdev/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -070011578
Stefan Agner456930d2015-09-02 18:06:33 -070011579VF610 NAND DRIVER
11580M: Stefan Agner <stefan@agner.ch>
11581L: linux-mtd@lists.infradead.org
11582S: Supported
11583F: drivers/mtd/nand/vf610_nfc.c
11584
Randy Dunlap4480f15b2008-10-12 16:11:58 -070011585VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -070011586M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011588F: Documentation/filesystems/vfat.txt
11589F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011590
Alex Williamsoncba33452012-07-31 08:16:22 -060011591VFIO DRIVER
11592M: Alex Williamson <alex.williamson@redhat.com>
11593L: kvm@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011594T: git git://github.com/awilliam/linux-vfio.git
Alex Williamsoncba33452012-07-31 08:16:22 -060011595S: Maintained
11596F: Documentation/vfio.txt
11597F: drivers/vfio/
11598F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011599F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -060011600
Alex Williamsona714ea52015-06-18 11:59:22 -060011601VFIO PLATFORM DRIVER
11602M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11603L: kvm@vger.kernel.org
11604S: Maintained
11605F: drivers/vfio/platform/
11606
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011607VIDEOBUF2 FRAMEWORK
11608M: Pawel Osciak <pawel@osciak.com>
11609M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -030011610M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011611L: linux-media@vger.kernel.org
11612S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030011613F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -070011614F: include/media/videobuf2-*
11615
Stephen Chandler Paul5523662e2015-10-24 13:10:29 -070011616VIRTUAL SERIO DEVICE DRIVER
11617M: Stephen Chandler Paul <thatslyude@gmail.com>
11618S: Maintained
11619F: drivers/input/serio/userio.c
11620F: include/uapi/linux/userio.h
11621
Amit Shah9a824462010-03-23 18:23:09 +053011622VIRTIO CONSOLE DRIVER
11623M: Amit Shah <amit.shah@redhat.com>
11624L: virtualization@lists.linux-foundation.org
11625S: Maintained
11626F: drivers/char/virtio_console.c
11627F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011628F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +053011629
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011630VIRTIO CORE, NET AND BLOCK DRIVERS
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011631M: "Michael S. Tsirkin" <mst@redhat.com>
11632L: virtualization@lists.linux-foundation.org
11633S: Maintained
11634F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +093011635F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011636F: drivers/net/virtio_net.c
11637F: drivers/block/virtio_blk.c
11638F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +103011639F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +103011640
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011641VIRTIO DRIVERS FOR S390
11642M: Christian Borntraeger <borntraeger@de.ibm.com>
11643M: Cornelia Huck <cornelia.huck@de.ibm.com>
11644L: linux-s390@vger.kernel.org
11645L: virtualization@lists.linux-foundation.org
11646L: kvm@vger.kernel.org
11647S: Supported
Cornelia Huck1b568d92015-07-07 11:41:01 +020011648F: drivers/s390/virtio/
Cornelia Huckf2dbda32015-07-01 17:15:37 +020011649
Gerd Hoffmann4ad6ee92015-06-02 10:49:03 +020011650VIRTIO GPU DRIVER
11651M: David Airlie <airlied@linux.ie>
11652M: Gerd Hoffmann <kraxel@redhat.com>
11653L: dri-devel@lists.freedesktop.org
11654L: virtualization@lists.linux-foundation.org
11655S: Maintained
11656F: drivers/gpu/drm/virtio/
11657F: include/uapi/linux/virtio_gpu.h
11658
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011659VIRTIO HOST (VHOST)
11660M: "Michael S. Tsirkin" <mst@redhat.com>
11661L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +000011662L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011663L: netdev@vger.kernel.org
Fengguang Wu9f273c22016-01-20 15:03:25 -080011664T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011665S: Maintained
11666F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011667F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000011668
Gerd Hoffmann271c8652015-03-27 12:46:12 +103011669VIRTIO INPUT DRIVER
11670M: Gerd Hoffmann <kraxel@redhat.com>
11671S: Maintained
11672F: drivers/virtio/virtio_input.c
11673F: include/uapi/linux/virtio_input.h
11674
Linus Torvalds1da177e2005-04-16 15:20:36 -070011675VIA RHINE NETWORK DRIVER
Roger Luethi210347e2015-05-26 19:12:54 +020011676S: Orphan
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011677F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011678
Harald Weltef0bf7f62009-06-17 20:22:39 +020011679VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -080011680M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -070011681M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +020011682S: Maintained
11683F: drivers/mmc/host/via-sdmmc.c
11684
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011685VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011686M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +010011687L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011688S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +000011689F: include/linux/via-core.h
11690F: include/linux/via-gpio.h
11691F: include/linux/via_i2c.h
Jingoo Han8a61f012014-07-01 15:36:01 +090011692F: drivers/video/fbdev/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -070011693
Francois Romieu01f20732007-01-26 00:57:17 -080011694VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011695M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -080011696L: netdev@vger.kernel.org
11697S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -070011698F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011699
Alex Williamsonf73f8172015-09-18 22:29:39 +080011700VIRT LIB
11701M: Alex Williamson <alex.williamson@redhat.com>
11702M: Paolo Bonzini <pbonzini@redhat.com>
11703L: kvm@vger.kernel.org
11704S: Supported
11705F: virt/lib/
11706
Hans Verkuil77911fd2014-12-10 04:22:37 -030011707VIVID VIRTUAL VIDEO DRIVER
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011708M: Hans Verkuil <hverkuil@xs4all.nl>
11709L: linux-media@vger.kernel.org
11710T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020011711W: https://linuxtv.org
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011712S: Maintained
Hans Verkuil77911fd2014-12-10 04:22:37 -030011713F: drivers/media/platform/vivid/*
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -030011714
Patrick McHardybe7f8272007-10-23 20:26:36 -070011715VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -070011716M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -070011717L: netdev@vger.kernel.org
11718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011719F: drivers/net/macvlan.c
11720F: include/linux/if_*vlan.h
11721F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -070011722
Florian Fainelli55e331c2009-06-16 15:33:53 -070011723VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -070011724M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -080011725L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -070011726S: Maintained
11727F: drivers/vlynq/vlynq.c
11728F: include/linux/vlynq.h
11729
Martyn Welch390beae2012-05-03 17:52:36 +010011730VME SUBSYSTEM
Martyn Welch74c600e2015-09-17 20:38:47 +010011731M: Martyn Welch <martyn@welchs.me.uk>
Manohar Vanga1bd289d2012-06-14 15:57:01 +020011732M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +010011733M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11734L: devel@driverdev.osuosl.org
11735S: Maintained
11736T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11737F: Documentation/vme_api.txt
11738F: drivers/staging/vme/
11739F: drivers/vme/
11740F: include/linux/vme*
11741
Alok Kataria4488e092013-09-04 14:23:41 +053011742VMWARE HYPERVISOR INTERFACE
11743M: Alok Kataria <akataria@vmware.com>
11744L: virtualization@lists.linux-foundation.org
11745S: Supported
11746F: arch/x86/kernel/cpu/vmware.c
11747
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070011748VMWARE BALLOON DRIVER
11749M: Xavier Deguillard <xdeguillard@vmware.com>
11750M: Philip Moltmann <moltmann@vmware.com>
11751M: "VMware, Inc." <pv-drivers@vmware.com>
11752L: linux-kernel@vger.kernel.org
11753S: Maintained
11754F: drivers/misc/vmw_balloon.c
11755
Thomas Hellstrom8b8be512015-04-14 10:06:38 -070011756VMWARE VMMOUSE SUBDRIVER
11757M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11758M: "VMware, Inc." <pv-drivers@vmware.com>
11759L: linux-input@vger.kernel.org
11760S: Maintained
11761F: drivers/input/mouse/vmmouse.c
11762F: drivers/input/mouse/vmmouse.h
11763
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011764VMWARE VMXNET3 ETHERNET DRIVER
Shrikrishna Khare04e1b732015-08-24 14:24:11 -070011765M: Shrikrishna Khare <skhare@vmware.com>
Joe Perches65c8bb52009-11-11 14:26:12 -080011766M: "VMware, Inc." <pv-drivers@vmware.com>
11767L: netdev@vger.kernel.org
11768S: Maintained
11769F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070011770
Alok Kataria851b1642009-10-13 14:51:05 -070011771VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -080011772M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -070011773M: VMware PV-Drivers <pv-drivers@vmware.com>
11774L: linux-scsi@vger.kernel.org
11775S: Maintained
11776F: drivers/scsi/vmw_pvscsi.c
11777F: drivers/scsi/vmw_pvscsi.h
11778
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011779VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +080011780M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +010011781M: Mark Brown <broonie@kernel.org>
Mark Brown5cdeb2c2014-08-16 12:31:11 +010011782L: linux-kernel@vger.kernel.org
Liam Girdwood1dd68f02009-02-02 21:43:31 +000011783W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +053011784T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011785S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070011786F: drivers/regulator/
11787F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +010011788
David Ahern081958e2015-08-25 10:26:22 -070011789VRF
11790M: David Ahern <dsa@cumulusnetworks.com>
11791M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11792L: netdev@vger.kernel.org
11793S: Maintained
11794F: drivers/net/vrf.c
David Ahern562d8972015-09-15 10:50:14 -060011795F: Documentation/networking/vrf.txt
David Ahern081958e2015-08-25 10:26:22 -070011796
Juerg Haefligerab413192006-09-24 20:54:04 +020011797VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011798M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +020011799L: lm-sensors@lm-sensors.org
11800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011801F: Documentation/hwmon/vt1211
11802F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +020011803
Roger Lucas1de9e372005-11-26 20:20:05 +010011804VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011805M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +010011806L: lm-sensors@lm-sensors.org
11807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011808F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +010011809
Tony Olech88095e72011-05-14 16:48:13 -040011810VUB300 USB to SDIO/SD/MMC bridge chip
11811M: Tony Olech <tony.olech@elandigitalsystems.com>
11812L: linux-mmc@vger.kernel.org
11813L: linux-usb@vger.kernel.org
11814S: Supported
11815F: drivers/mmc/host/vub300.c
11816
Linus Torvalds1da177e2005-04-16 15:20:36 -070011817W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -070011818M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011820F: Documentation/w1/
11821F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011822
Charles Spirakis13927072006-07-05 18:05:15 +020011823W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011824M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +020011825L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -040011826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011827F: Documentation/hwmon/w83791d
11828F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +020011829
Rudolf Marek61db0112006-12-12 18:18:30 +010011830W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011831M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +010011832L: lm-sensors@lm-sensors.org
11833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011834F: Documentation/hwmon/w83793
11835F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +010011836
Jean Delvaree3760b42010-10-28 20:31:49 +020011837W83795 HARDWARE MONITORING DRIVER
Jiri Slabyd8130622015-07-17 16:23:20 -070011838M: Jean Delvare <jdelvare@suse.com>
Jean Delvaree3760b42010-10-28 20:31:49 +020011839L: lm-sensors@lm-sensors.org
11840S: Maintained
11841F: drivers/hwmon/w83795.c
11842
Linus Torvalds1da177e2005-04-16 15:20:36 -070011843W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011844M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011846F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011847
Hans de Goedeb4e05922014-07-20 13:35:44 -070011848WACOM PROTOCOL 4 SERIAL TABLETS
11849M: Julian Squires <julian@cipht.net>
11850M: Hans de Goede <hdegoede@redhat.com>
11851L: linux-input@vger.kernel.org
11852S: Maintained
11853F: drivers/input/tablet/wacom_serial4.c
11854
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011855WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -070011856M: Wim Van Sebroeck <wim@iguana.be>
Guenter Roeck1f32f832015-12-05 22:18:25 -080011857R: Guenter Roeck <linux@roeck-us.net>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +000011858L: linux-watchdog@vger.kernel.org
11859W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +010011860T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011862F: Documentation/watchdog/
11863F: drivers/watchdog/
11864F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011865F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +010011866
Linus Torvalds1da177e2005-04-16 15:20:36 -070011867WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011868M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011869L: linux-scsi@vger.kernel.org
11870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011871F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011872
David Herrmannb22e00f2011-09-06 13:50:40 +020011873WIIMOTE HID DRIVER
11874M: David Herrmann <dh.herrmann@googlemail.com>
11875L: linux-input@vger.kernel.org
11876S: Maintained
11877F: drivers/hid/hid-wiimote*
11878
David Härdemane258b802009-09-21 17:04:53 -070011879WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -070011880M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -070011881S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -070011882F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -070011883
William Breathitt Gray9c26df92016-01-20 13:45:33 -050011884WINSYSTEMS WS16C48 GPIO DRIVER
11885M: William Breathitt Gray <vilhelm.gray@gmail.com>
11886L: linux-gpio@vger.kernel.org
11887S: Maintained
11888F: drivers/gpio/gpio-ws16c48.c
11889
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011890WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -070011891M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011892M: linux-wimax@intel.com
Joe Perches49e7d9d2015-04-15 16:17:31 -070011893L: wimax@linuxwimax.org (subscribers-only)
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011894S: Supported
11895W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -070011896F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -070011897F: include/linux/wimax/debug.h
11898F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080011899F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -070011900F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -080011901
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011902WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011903M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011905F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -050011906
Linus Torvalds1da177e2005-04-16 15:20:36 -070011907WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070011908M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -070011909L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -030011910W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -070011911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011912F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011913
Mark Brown055bcbc2010-08-13 14:18:12 +010011914WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +010011915L: patches@opensource.wolfsonmicro.com
Richard Fitzgeraldf0e03db2015-09-22 15:30:33 +010011916T: git https://github.com/CirrusLogic/linux-drivers.git
11917W: https://github.com/CirrusLogic/linux-drivers/wiki
Mark Brownb75ea162009-07-02 16:43:08 +010011918S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -080011919F: Documentation/hwmon/wm83??
Charles Keepaxf4949932015-10-27 16:01:59 +000011920F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11921F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11922F: Documentation/devicetree/bindings/mfd/arizona.txt
Mark Brownaf1c5382011-10-14 21:09:43 +010011923F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +010011924F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011925F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +010011926F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +010011927F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011928F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -050011929F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +090011930F: drivers/input/misc/wm831x-on.c
11931F: drivers/input/touchscreen/wm831x-ts.c
11932F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +010011933F: drivers/mfd/arizona*
11934F: drivers/mfd/wm*.c
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000011935F: drivers/mfd/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010011936F: drivers/power/wm83*.c
11937F: drivers/rtc/rtc-wm83*.c
11938F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +010011939F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +010011940F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +010011941F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +010011942F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +010011943F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -080011944F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +090011945F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +010011946F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +010011947F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +010011948F: sound/soc/codecs/wm*
Richard Fitzgerald12ebc132015-11-03 15:08:36 +000011949F: sound/soc/codecs/cs47l24*
Mark Brownb75ea162009-07-02 16:43:08 +010011950
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011951WORKQUEUE
11952M: Tejun Heo <tj@kernel.org>
Lai Jiangshanbadb7f52015-07-01 15:38:04 +080011953R: Lai Jiangshan <jiangshanlai@gmail.com>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +010011954T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11955S: Maintained
11956F: include/linux/workqueue.h
11957F: kernel/workqueue.c
11958F: Documentation/workqueue.txt
11959
Linus Torvalds1da177e2005-04-16 15:20:36 -070011960X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011961M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011962L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +000011963S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -070011964F: Documentation/networking/x25*
11965F: include/net/x25*
11966F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -070011967
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011968X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -070011969M: Thomas Gleixner <tglx@linutronix.de>
11970M: Ingo Molnar <mingo@redhat.com>
11971M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -080011972M: x86@kernel.org
Ingo Molnar981c3a42014-01-21 10:59:20 +010011973L: linux-kernel@vger.kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +010011974T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070011976F: Documentation/x86/
11977F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -070011978
Matthew Garrettd09448532010-02-11 10:40:13 -050011979X86 PLATFORM DRIVERS
Darren Harte181ba12014-08-27 23:36:06 -070011980M: Darren Hart <dvhart@infradead.org>
Matthew Garrettd09448532010-02-11 10:40:13 -050011981L: platform-driver-x86@vger.kernel.org
Darren Harte181ba12014-08-27 23:36:06 -070011982T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -050011983S: Maintained
Joe Perches14430812013-09-11 14:23:50 -070011984F: drivers/platform/x86/
Darren Hart3a4bcee2015-10-06 23:17:04 +010011985F: drivers/platform/olpc/
Matthew Garrettd09448532010-02-11 10:40:13 -050011986
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011987X86 MCE INFRASTRUCTURE
11988M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +010011989M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +020011990L: linux-edac@vger.kernel.org
11991S: Maintained
11992F: arch/x86/kernel/cpu/mcheck/*
11993
Borislav Petkov79ebdc92015-10-20 11:54:49 +020011994X86 MICROCODE UPDATE SUPPORT
11995M: Borislav Petkov <bp@alien8.de>
11996S: Maintained
11997F: arch/x86/kernel/cpu/microcode/*
11998
Andy Lutomirskif0905c52014-12-12 16:25:47 -080011999X86 VDSO
12000M: Andy Lutomirski <luto@amacapital.net>
12001L: linux-kernel@vger.kernel.org
12002T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12003S: Maintained
Ingo Molnard603c8e2015-06-03 18:05:44 +020012004F: arch/x86/entry/vdso/
Andy Lutomirskif0905c52014-12-12 16:25:47 -080012005
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012006XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab009a5412014-11-21 15:48:27 -020012007M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012008L: linux-media@vger.kernel.org
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012009W: https://linuxtv.org
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -020012010T: git git://linuxtv.org/media_tree.git
12011S: Maintained
12012F: drivers/media/tuners/tuner-xc2028.*
12013
Ian Campbellc4468082011-04-27 15:26:46 -070012014XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -070012015M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk3eeef8f2013-08-05 14:01:49 -040012016M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
12017M: David Vrabel <david.vrabel@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012018L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
David Vrabelea70ba32014-01-17 11:51:51 +000012019T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
Ian Campbellc4468082011-04-27 15:26:46 -070012020S: Supported
12021F: arch/x86/xen/
12022F: drivers/*/xen-*front.c
12023F: drivers/xen/
12024F: arch/x86/include/asm/xen/
12025F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -080012026F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -070012027
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012028XEN HYPERVISOR ARM
12029M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012030L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellini77bfb472012-09-14 13:35:15 +000012031S: Supported
12032F: arch/arm/xen/
12033F: arch/arm/include/asm/xen/
12034
Stefano Stabellinib475e832013-06-04 16:13:23 +000012035XEN HYPERVISOR ARM64
12036M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012037L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Stefano Stabellinib475e832013-06-04 16:13:23 +000012038S: Supported
12039F: arch/arm64/xen/
12040F: arch/arm64/include/asm/xen/
12041
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012042XEN NETWORK BACKEND DRIVER
12043M: Ian Campbell <ian.campbell@citrix.com>
Wei Liu83860402013-09-26 12:41:53 +010012044M: Wei Liu <wei.liu2@citrix.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012045L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Ian Campbell9b57e1a2011-04-03 23:12:23 +000012046L: netdev@vger.kernel.org
12047S: Supported
12048F: drivers/net/xen-netback/*
12049
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012050XEN PCI SUBSYSTEM
12051M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012052L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +020012053S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012054F: arch/x86/pci/*xen*
12055F: drivers/pci/*xen*
12056
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012057XEN BLOCK SUBSYSTEM
12058M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Roger Pau Monnebcadb692015-01-23 17:14:29 +010012059M: Roger Pau Monné <roger.pau@citrix.com>
Konrad Rzeszutek Wilka2c5ae62014-06-27 10:10:45 -040012060L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12061S: Supported
12062F: drivers/block/xen-blkback/*
12063F: drivers/block/xen*
12064
Juergen Gross15d03602014-08-28 06:44:13 +020012065XEN PVSCSI DRIVERS
12066M: Juergen Gross <jgross@suse.com>
12067L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
12068L: linux-scsi@vger.kernel.org
12069S: Supported
12070F: drivers/scsi/xen-scsifront.c
12071F: drivers/xen/xen-scsiback.c
12072F: include/xen/interface/io/vscsiif.h
12073
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012074XEN SWIOTLB SUBSYSTEM
12075M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Konrad Rzeszutek Wilk11dbb522013-08-05 13:59:36 -040012076L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -040012077S: Supported
12078F: arch/x86/xen/*swiotlb*
12079F: drivers/xen/*swiotlb*
12080
Linus Torvalds1da177e2005-04-16 15:20:36 -070012081XFS FILESYSTEM
12082P: Silicon Graphics Inc
Namjae Jeon809625c2013-12-08 23:33:50 +090012083M: Dave Chinner <david@fromorbit.com>
Ben Myers18caa672012-04-12 17:05:05 +000012084M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +100012085L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070012086W: http://oss.sgi.com/projects/xfs
Fengguang Wu9f273c22016-01-20 15:03:25 -080012087T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -070012089F: Documentation/filesystems/xfs.txt
12090F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012091
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012092XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +000012093M: Anirudha Sarangi <anirudh@xilinx.com>
12094M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +000012095S: Maintained
12096F: drivers/net/ethernet/xilinx/xilinx_axienet*
12097
Peter Korsgaard238b8722006-12-06 20:35:17 -080012098XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012099M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -080012100L: linux-serial@vger.kernel.org
12101S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012102F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -080012103
Laurent Pinchartdf330512013-05-15 11:36:19 -030012104XILINX VIDEO IP CORES
12105M: Hyun Kwon <hyun.kwon@xilinx.com>
12106M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12107L: linux-media@vger.kernel.org
12108T: git git://linuxtv.org/media_tree.git
12109S: Supported
12110F: Documentation/devicetree/bindings/media/xilinx/
12111F: drivers/media/platform/xilinx/
Laurent Pincharta5562f62013-05-15 11:36:56 -030012112F: include/uapi/linux/xilinx-v4l2-controls.h
Laurent Pinchartdf330512013-05-15 11:36:19 -030012113
Eli Billauer74316942014-09-09 09:38:01 +030012114XILLYBUS DRIVER
12115M: Eli Billauer <eli.billauer@gmail.com>
12116L: linux-kernel@vger.kernel.org
12117S: Supported
12118F: drivers/char/xillybus/
12119
Max Filippovf620e4b2014-03-12 21:55:26 +040012120XTENSA XTFPGA PLATFORM SUPPORT
12121M: Max Filippov <jcmvbkbc@gmail.com>
12122L: linux-xtensa@linux-xtensa.org
12123S: Maintained
12124F: drivers/spi/spi-xtensa-xtfpga.c
Max Filippov57b70682014-12-26 20:19:38 +030012125F: sound/soc/xtensa/xtfpga-i2s.c
Max Filippovf620e4b2014-03-12 21:55:26 +040012126
Linus Torvalds1da177e2005-04-16 15:20:36 -070012127YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012128M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012129L: linux-hams@vger.kernel.org
12130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012131F: drivers/net/hamradio/yam*
12132F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012133
Henkaf64a5e2005-10-12 15:02:56 +020012134YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012135M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +020012136L: usbb2k-api-dev@nongnu.org
12137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012138F: Documentation/input/yealink.txt
12139F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +020012140
Linus Torvalds1da177e2005-04-16 15:20:36 -070012141Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -070012142M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012143W: http://yaina.de/jreuter/
12144W: http://www.qsl.net/dl1bke/
12145L: linux-hams@vger.kernel.org
12146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -070012147F: Documentation/networking/z8530drv.txt
12148F: drivers/net/hamradio/*scc.c
12149F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070012150
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012151ZBUD COMPRESSED PAGE ALLOCATOR
Seth Jennings0e3b7e52014-05-06 12:50:02 -070012152M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012153L: linux-mm@kvack.org
12154S: Maintained
12155F: mm/zbud.c
12156F: include/linux/zbud.h
12157
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012158ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012159M: Daniel Drake <dsd@gentoo.org>
12160M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012161W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -070012162L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012163L: zd1211-devs@lists.sourceforge.net (subscribers-only)
12164S: Maintained
Kalle Valo69483002015-11-18 09:27:32 +020012165F: drivers/net/wireless/zydas/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +010012166
Dan Streetman20263022015-06-30 14:59:57 -070012167ZPOOL COMPRESSED PAGE STORAGE API
12168M: Dan Streetman <ddstreet@ieee.org>
12169L: linux-mm@kvack.org
12170S: Maintained
12171F: mm/zpool.c
12172F: include/linux/zpool.h
12173
Linus Torvalds1da177e2005-04-16 15:20:36 -070012174ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -070012175L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -030012176L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070012177W: http://mjpeg.sourceforge.net/driver-zoran/
Mauro Carvalho Chehaba825eae2015-12-04 10:31:23 -020012178T: hg https://linuxtv.org/hg/v4l-dvb
Trent Piephof63145e2009-01-24 20:52:41 -030012179S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -030012180F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -070012181
Minchan Kim6920f2c2014-01-30 15:45:56 -080012182ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12183M: Minchan Kim <minchan@kernel.org>
12184M: Nitin Gupta <ngupta@vflare.org>
Minchan Kim74f30372015-05-05 16:23:28 -070012185R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kim6920f2c2014-01-30 15:45:56 -080012186L: linux-kernel@vger.kernel.org
12187S: Maintained
12188F: drivers/block/zram/
12189F: Documentation/blockdev/zram.txt
12190
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012191ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -070012192M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012193S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -080012194F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -070012195
Minchan Kimeae70d02014-01-30 15:45:57 -080012196ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12197M: Minchan Kim <minchan@kernel.org>
12198M: Nitin Gupta <ngupta@vflare.org>
Sergey Senozhatsky41192a22015-10-22 13:32:13 -070012199R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Minchan Kimeae70d02014-01-30 15:45:57 -080012200L: linux-mm@kvack.org
12201S: Maintained
12202F: mm/zsmalloc.c
12203F: include/linux/zsmalloc.h
Minchan Kimd02be502015-04-15 16:15:46 -070012204F: Documentation/vm/zsmalloc.txt
Minchan Kimeae70d02014-01-30 15:45:57 -080012205
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012206ZSWAP COMPRESSED SWAP CACHING
Seth Jennings0e3b7e52014-05-06 12:50:02 -070012207M: Seth Jennings <sjennings@variantweb.net>
Seth Jennings0cf31ec2013-07-08 16:00:05 -070012208L: linux-mm@kvack.org
12209S: Maintained
12210F: mm/zswap.c
12211
Linus Torvalds1da177e2005-04-16 15:20:36 -070012212THE REST
Joe Perches8b58be82009-07-29 15:04:30 -070012213M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -070012214L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -080012215Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -040012216T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -070012217S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -070012218F: *
12219F: */