blob: 829c0321108b6cff2fe6999c629fea11e5915e57 [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
37 (scripts/checkpatch.pl) to catch trival style violations.
38 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
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 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>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070093 N: Files and directories with regex patterns.
94 N: [^a-z]tegra all files whose path contains the word tegra
95 One pattern per line. Multiple N: lines acceptable.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070096 X: Files and directories that are NOT maintained, same rules as F:
97 Files exclusions are tested before file matches.
98 Can be useful for excluding a specific subdirectory, for instance:
99 F: net/
100 X: net/ipv6/
101 matches all files in and below net excluding net/ipv6/
102 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700103 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700105 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700106 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700107 matches patches or files that contain one or more of the words
108 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700109 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111Note: For the hard of thinking, this list is meant to remain in alphabetical
112order. If you could add yourselves to it in alphabetical order that would be
113so much easier [Ed]
114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700118
Steffen Klasserta6d89912007-08-10 14:05:27 -07001193C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700120M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700121L: netdev@vger.kernel.org
122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700123F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700124F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700127M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700128L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700130F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
adam radfordc4de0ce2010-03-08 12:40:36 -08001323WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
133M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800135W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800137F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
13953C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700146M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-hams@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700152M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700153M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700156F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
1588250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800159M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700163T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800164F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700165F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000169S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700170F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001729P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Eric Van Hensbergen <ericvh@gmail.com>
174M: Ron Minnich <rminnich@sandia.gov>
175M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100176L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500177W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800178Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700181F: Documentation/filesystems/9p.txt
182F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800183
Antti Palosaari91952bc2012-10-01 12:28:46 -0300184A8293 MEDIA DRIVER
185M: Antti Palosaari <crope@iki.fi>
186L: linux-media@vger.kernel.org
187W: http://linuxtv.org/
188W: http://palosaari.fi/linux/
189Q: http://patchwork.linuxtv.org/project/linux-media/list/
190T: git git://linuxtv.org/anttip/media_tree.git
191S: Maintained
192F: drivers/media/dvb-frontends/a8293*
193
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700195M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700196L: linux-scsi@vger.kernel.org
197W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700199F: Documentation/scsi/aacraid.txt
200F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700202ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100203M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200204L: lm-sensors@lm-sensors.org
205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700206F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700209M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700210L: lm-sensors@lm-sensors.org
211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700212F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700215M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216L: linux-acenic@sunsite.dk
217S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700218F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Peter Feuerere86435e2009-06-21 18:53:03 +0200220ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700221M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500222L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700223W: http://piie.net/?section=acerhdf
224S: Maintained
225F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200226
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000227ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800228M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500229L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700234M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200235M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500236L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400237W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800238Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400239T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700241F: drivers/acpi/
242F: drivers/pnp/pnpacpi/
243F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700244F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500245
Len Brown8b59a452007-01-08 19:03:28 -0500246ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700247M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500248L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300249W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700251F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Len Brown8b59a452007-01-08 19:03:28 -0500253ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700254M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500255L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300256W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700258F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700259
Len Brown359acec2007-02-10 01:59:24 -0500260ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700261M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500266
Carlos Corbachobff431e2008-02-05 02:17:04 +0000267ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500268L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100269S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700270F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000271
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100272AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700273M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200274W: http://wiki.parisc-linux.org/AD1889
275L: linux-parisc@vger.kernel.org
276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700277F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100278
Michael Hennerich527a1a82010-10-28 11:31:28 +0000279AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
280M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100281L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700282W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000283S: Supported
284F: drivers/misc/ad525x_dpot.c
285
286AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
287M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100288L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700289W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000290S: Supported
291F: drivers/regulator/ad5398.c
292
293AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
294M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100295L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700296W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000297S: Supported
298F: drivers/input/misc/ad714x.c
299
300AD7877 TOUCHSCREEN DRIVER
301M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100302L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700303W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000304S: Supported
305F: drivers/input/touchscreen/ad7877.c
306
307AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
308M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100309L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700310W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000311S: Supported
312F: drivers/input/touchscreen/ad7879.c
313
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700314ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
315M: Jiri Kosina <jkosina@suse.cz>
316S: Maintained
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700319M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200320L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700322F: Documentation/hwmon/adm1025
323F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700326M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100327L: lm-sensors@lm-sensors.org
328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700329F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330
Michael Wucc0b88c2007-08-31 01:15:25 -0400331ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400332L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200333W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400334S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700335F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400336
Sakari Ailuse8e31622012-11-12 18:14:39 -0300337ADP1653 FLASH CONTROLLER DRIVER
338M: Sakari Ailus <sakari.ailus@iki.fi>
339L: linux-media@vger.kernel.org
340S: Maintained
341F: drivers/media/i2c/adp1653.c
342F: include/media/adp1653.h
343
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
345M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100346L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700347W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000348S: Supported
349F: drivers/mfd/adp5520.c
350F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700351F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800352F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000353F: drivers/input/keyboard/adp5520-keys.c
354
355ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
356M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100357L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700358W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000359S: Supported
360F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800361F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362
363ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
364M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100365L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700366W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000367S: Supported
368F: drivers/video/backlight/adp8860_bl.c
369
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100370ADS1015 HARDWARE MONITOR DRIVER
371M: Dirk Eibach <eibach@gdsys.de>
372L: lm-sensors@lm-sensors.org
373S: Maintained
374F: Documentation/hwmon/ads1015
375F: drivers/hwmon/ads1015.c
376F: include/linux/i2c/ads1015.h
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700379M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700381F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jean Delvareb058b852009-12-09 20:36:08 +0100383ADT7475 HARDWARE MONITOR DRIVER
384M: Jean Delvare <khali@linux-fr.org>
385L: lm-sensors@lm-sensors.org
386S: Maintained
387F: Documentation/hwmon/adt7475
388F: drivers/hwmon/adt7475.c
389
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
391M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100392L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700393W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000394S: Supported
395F: drivers/input/misc/adxl34x.c
396
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700398M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399L: linux-scsi@vger.kernel.org
400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700401F: Documentation/scsi/advansys.txt
402F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700405M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700407F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Antti Palosaari91952bc2012-10-01 12:28:46 -0300409AF9013 MEDIA DRIVER
410M: Antti Palosaari <crope@iki.fi>
411L: linux-media@vger.kernel.org
412W: http://linuxtv.org/
413W: http://palosaari.fi/linux/
414Q: http://patchwork.linuxtv.org/project/linux-media/list/
415T: git git://linuxtv.org/anttip/media_tree.git
416S: Maintained
417F: drivers/media/dvb-frontends/af9013*
418
419AF9033 MEDIA DRIVER
420M: Antti Palosaari <crope@iki.fi>
421L: linux-media@vger.kernel.org
422W: http://linuxtv.org/
423W: http://palosaari.fi/linux/
424Q: http://patchwork.linuxtv.org/project/linux-media/list/
425T: git git://linuxtv.org/anttip/media_tree.git
426S: Maintained
427F: drivers/media/dvb-frontends/af9033*
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200430L: linux-fsdevel@vger.kernel.org
431S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700432F: Documentation/filesystems/affs.txt
433F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700436M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700437L: linux-afs@lists.infradead.org
438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700439F: fs/afs/
440F: include/net/af_rxrpc.h
441F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700444M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700445T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700447F: drivers/char/agp/
448F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800449F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700452M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453L: linux-scsi@vger.kernel.org
454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/scsi/aha152x*
456F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700459M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460L: linux-scsi@vger.kernel.org
461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700462F: drivers/scsi/aic7xxx/
463F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200464
Hans Verkuil450500a2012-11-23 07:11:33 -0300465AIMSLAB FM RADIO RECEIVER DRIVER
466M: Hans Verkuil <hverkuil@xs4all.nl>
467L: linux-media@vger.kernel.org
468T: git git://linuxtv.org/media_tree.git
469W: http://linuxtv.org
470S: Maintained
471F: drivers/media/radio/radio-aimslab*
472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700474M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700475L: linux-aio@kvack.org
476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700477F: fs/aio.c
478F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700482L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483W: http://www.linux-usb.org/SpeedTouch/
484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/usb/atm/speedtch.c
486F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Pierre Ossman272f1332007-05-14 21:25:26 +0200488ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200492
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000493ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700494M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100495L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700497F: Documentation/i2c/busses/i2c-ali1563
498F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700501M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700502M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500503M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700504S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700505L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700506F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Tobias Klauseradf92512011-02-09 10:58:29 +0100508ALTERA UART/JTAG UART SERIAL DRIVERS
509M: Tobias Klauser <tklauser@distanz.ch>
510L: linux-serial@vger.kernel.org
511L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
512S: Maintained
513F: drivers/tty/serial/altera_uart.c
514F: drivers/tty/serial/altera_jtaguart.c
515F: include/linux/altera_uart.h
516F: include/linux/altera_jtaguart.h
517
Andreas Herrmann512d1022011-05-25 20:43:31 +0200518AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100519M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200520L: lm-sensors@lm-sensors.org
521S: Maintained
522F: Documentation/hwmon/fam15h_power
523F: drivers/hwmon/fam15h_power.c
524
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700525AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700526M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700527L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700530
Jordan Crousef90b8112006-01-06 00:12:14 -0800531AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800532P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700533L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800534W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700536F: drivers/char/hw_random/geode-rng.c
537F: drivers/crypto/geode*
538F: drivers/video/geode/
539F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800540
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200541AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200542M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100544T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200545S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800546F: drivers/iommu/amd_iommu*.[ch]
547F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200548
Peter Orubae7f5b302008-07-28 18:44:11 +0200549AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100550M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700551L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700553F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200554
Stelian Pop284f42b2006-12-12 18:18:31 +0100555AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700556M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100557S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200558F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100559
Tom Tuckerf94b5332006-09-22 15:22:48 -0700560AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700561M: Tom Tucker <tom@opengridcomputing.com>
562M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700563L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700565F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700566
Hans Verkuil531fca12012-11-23 06:53:24 -0300567ANALOG DEVICES INC AD9389B DRIVER
568M: Hans Verkuil <hans.verkuil@cisco.com>
569L: linux-media@vger.kernel.org
570S: Maintained
571F: drivers/media/i2c/ad9389b*
572
573ANALOG DEVICES INC ADV7604 DRIVER
574M: Hans Verkuil <hans.verkuil@cisco.com>
575L: linux-media@vger.kernel.org
576S: Maintained
577F: drivers/media/i2c/adv7604*
578
Michael Hennerich527a1a82010-10-28 11:31:28 +0000579ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200580M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100581L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700583W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000584S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100585F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200586F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000587F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000588F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100589F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400591ANALOG DEVICES INC ASOC DRIVERS
592L: uclinux-dist-devel@blackfin.uclinux.org
593L: alsa-devel@alsa-project.org (moderated for non-subscribers)
594W: http://blackfin.uclinux.org/
595S: Supported
596F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400597
Johannes Berg42269062006-07-25 16:15:50 +0200598AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000600L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700601L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700603F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200606M: Jiri Kosina <jkosina@suse.cz>
607S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700608F: arch/x86/kernel/apm_32.c
609F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800610F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200611F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700613APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700614M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700615L: linux-input@vger.kernel.org
616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700617F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700618
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700619APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200620M: Henrik Rydberg <rydberg@euromail.se>
621L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700623F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700628F: drivers/net/appletalk/
629F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Viresh Kumara4801672011-02-22 15:46:07 +0530631ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700632M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530633L: linux-ide@vger.kernel.org
634S: Maintained
635F: include/linux/pata_arasan_cf_data.h
636F: drivers/ata/pata_arasan_cf.c
637
Jaya Kumar1154ea72005-06-21 17:17:04 -0700638ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700639M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700641F: drivers/video/arcfb.c
642F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700645M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700647F: arch/arm/lib/floppydma.S
648F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Will Deacon6f965212011-07-01 14:38:53 +0100650ARM PMU PROFILING AND DEBUGGING
651M: Will Deacon <will.deacon@arm.com>
652S: Maintained
653F: arch/arm/kernel/perf_event*
654F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100655F: arch/arm/include/asm/pmu.h
656F: arch/arm/kernel/hw_breakpoint.c
657F: arch/arm/include/asm/hw_breakpoint.h
658
Russell Kingd4275352009-04-16 14:05:27 +0100659ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100662W: http://www.arm.linux.org.uk/
663S: Maintained
664F: arch/arm/
665
Stephen Boydd323c2432012-10-24 11:00:29 -0700666ARM SUB-ARCHITECTURES
667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800668S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700669F: arch/arm/mach-*/
670F: arch/arm/plat-*/
671T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
672
Russell Kingcefbf4e2009-11-22 17:40:28 +0000673ARM PRIMECELL AACI PL041 DRIVER
674M: Russell King <linux@arm.linux.org.uk>
675S: Maintained
676F: sound/arm/aaci.*
677
678ARM PRIMECELL CLCD PL110 DRIVER
679M: Russell King <linux@arm.linux.org.uk>
680S: Maintained
681F: drivers/video/amba-clcd.*
682
683ARM PRIMECELL KMI PL050 DRIVER
684M: Russell King <linux@arm.linux.org.uk>
685S: Maintained
686F: drivers/input/serio/ambakmi.*
687F: include/linux/amba/kmi.h
688
Russell King2761f5c2007-05-24 06:56:08 +0200689ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000690M: Russell King <linux@arm.linux.org.uk>
691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700692F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000693F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200694
Russell King1b4304e2013-02-11 15:26:27 +0000695ARM PRIMECELL UART PL010 AND PL011 DRIVERS
696M: Russell King <linux@arm.linux.org.uk>
697S: Maintained
698F: drivers/tty/serial/amba-pl01*.c
699F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700
Russell Kingcefbf4e2009-11-22 17:40:28 +0000701ARM PRIMECELL BUS SUPPORT
702M: Russell King <linux@arm.linux.org.uk>
703S: Maintained
704F: drivers/amba/
705F: include/linux/amba/bus.h
706
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700708M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700709L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710S: Maintained
711
Sergey Lapin9c784f92008-08-03 02:29:48 +0100712ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700713M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100715S: Maintained
716
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700718M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720S: Maintained
721
Maxime Ripard1b106692012-11-15 21:51:26 +0100722ARM/Allwinner A1X SoC support
723M: Maxime Ripard <maxime.ripard@free-electrons.com>
724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
725S: Maintained
726F: arch/arm/mach-sunxi/
727
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800728ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700729M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800730M: Nicolas Ferre <nicolas.ferre@atmel.com>
731M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200733W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800734W: http://www.linux4sam.org
735S: Supported
736F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100737
Rob Herring986cf2e2011-06-22 11:28:53 -0500738ARM/CALXEDA HIGHBANK ARCHITECTURE
739M: Rob Herring <rob.herring@calxeda.com>
740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
741S: Maintained
742F: arch/arm/mach-highbank/
743
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300744ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
745M: Anton Vorontsov <avorontsov@mvista.com>
746S: Maintained
747F: arch/arm/mach-cns3xxx/
748T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
749
Alexander Shiyan386ab512012-11-17 17:57:24 +0400750ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
751M: Alexander Shiyan <shc_work@mail.ru>
752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
753S: Odd Fixes
754F: arch/arm/mach-clps711x/
755
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800756ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100757M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000758M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800760S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100761F: arch/arm/mach-ep93xx/
762F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800763
764ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700765M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800767S: Maintained
768
Russell Kingd4275352009-04-16 14:05:27 +0100769ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700771L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700772S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100773F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700774F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100775
Mike Rapoportd48134e2008-08-20 09:03:26 +0100776ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700777M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700778L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100779S: Maintained
780
Hubert Feurstein94150092009-10-07 08:36:07 +0100781ARM/CONTEC MICRO9 MACHINE SUPPORT
782M: Hubert Feurstein <hubert.feurstein@contec.at>
783S: Maintained
784F: arch/arm/mach-ep93xx/micro9.c
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788S: Maintained
789
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200790ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100791M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100793T: git git://git.berlios.de/gemini-board
794S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300795F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200796
Barry Songa990cbd2011-07-12 21:44:10 +0800797ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
798M: Barry Song <baohua.song@csr.com>
799L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
800S: Maintained
801F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800802F: drivers/dma/sirf-dma.c
803F: drivers/i2c/busses/i2c-sirf.c
Barry Songb3b665b2013-03-21 16:27:19 +0800804F: drivers/mmc/host/sdhci-sirf.c
Barry Song47ac3e42012-04-30 11:23:23 +0800805F: drivers/pinctrl/pinctrl-sirf.c
806F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800807
Russell Kingd4275352009-04-16 14:05:27 +0100808ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700809M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100811W: http://www.arm.linux.org.uk/
812S: Maintained
813F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700814F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100815
Russell Kinga9da4f72008-07-12 21:42:04 +0100816ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700817M: Daniel Ribeiro <drwyrm@gmail.com>
818M: Stefan Schmidt <stefan@openezx.org>
819M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200820L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100821W: http://www.openezx.org/
822S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200823T: topgit git://git.openezx.org/openezx.git
824F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100825
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200826ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100827M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700828L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100829S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700830T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300831F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200832
Russell Kingd4275352009-04-16 14:05:27 +0100833ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700834M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700835L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100836W: http://www.arm.linux.org.uk/
837S: Maintained
838F: arch/arm/include/asm/hardware/dec21285.h
839F: arch/arm/mach-footbridge/
840
Sascha Hauer86183a52008-07-24 23:50:35 +0200841ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700842M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700843L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200844S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700845T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100846F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700847F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200848
Shawn Guo8bcb9762011-10-07 22:24:18 +0800849ARM/FREESCALE IMX6
850M: Shawn Guo <shawn.guo@linaro.org>
851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
852S: Maintained
853T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
854F: arch/arm/mach-imx/*imx6*
855
Shawn Guoa9866a092011-10-21 11:53:34 +0800856ARM/FREESCALE MXS ARM ARCHITECTURE
857M: Shawn Guo <shawn.guo@linaro.org>
858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859S: Maintained
860T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
861F: arch/arm/mach-mxs/
862
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700864M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866S: Maintained
867
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100868ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700869M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100871S: Maintained
872
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200873ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700874M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100875M: Paul Parsons <lost.distance@yahoo.com>
876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200877S: Maintained
878F: arch/arm/mach-pxa/hx4700.c
879F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100880F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200881
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100882ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700883M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200884W: www.jlime.com
885S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700886T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
887F: arch/arm/mach-sa1100/jornada720.c
888F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100889
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200890ARM/IGEP MACHINE SUPPORT
891M: Enric Balletbo i Serra <eballetbo@gmail.com>
892M: Javier Martinez Canillas <javier@dowhile0.org>
893L: linux-omap@vger.kernel.org
894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
895S: Maintained
896F: arch/arm/mach-omap2/board-igep0020.c
897
Marek Vasut403d2972010-05-22 00:29:39 +0200898ARM/INCOME PXA270 SUPPORT
899M: Marek Vasut <marek.vasut@gmail.com>
900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700902F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200903
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800904ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700905M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700906M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700908S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100909
910ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700911M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700913S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800914
915ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700916M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700917M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700919S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800920
921ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700922M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700923M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700925S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800926
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800930S: Maintained
931
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200932ARM/INTEL IXP4XX ARM ARCHITECTURE
933M: Imre Kaloz <kaloz@openwrt.org>
934M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200936S: Maintained
937F: arch/arm/mach-ixp4xx/
938
Joe Perches838553c2010-10-26 14:22:59 -0700939ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100940M: Jonathan Cameron <jic23@cam.ac.uk>
941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942S: Maintained
943F: arch/arm/mach-pxa/stargate2.c
944F: drivers/pcmcia/pxa2xx_stargate2.c
945
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800946ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700947M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700948M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700950S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800951
952ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700953M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800955S: Maintained
956
957ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700958M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800960S: Maintained
961
Philipp Zabel3b8861712008-07-09 21:27:15 +0100962ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700963M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100964S: Maintained
965
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200966ARM/Marvell Armada 370 and Armada XP SOC support
967M: Jason Cooper <jason@lakedaemon.net>
968M: Andrew Lunn <andrew@lunn.ch>
969M: Gregory Clement <gregory.clement@free-electrons.com>
970L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971S: Maintained
972F: arch/arm/mach-mvebu/
973
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400974ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
975M: Jason Cooper <jason@lakedaemon.net>
976M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400978S: Maintained
979F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400980F: arch/arm/mach-kirkwood/
981F: arch/arm/mach-mv78xx0/
982F: arch/arm/mach-orion5x/
983F: arch/arm/plat-orion/
984
Alexander Clouterd69ac132011-04-14 15:22:02 -0700985ARM/Orion SoC/Technologic Systems TS-78xx platform support
986M: Alexander Clouter <alex@digriz.org.uk>
987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
988W: http://www.digriz.org.uk/ts78xx/kernel
989S: Maintained
990F: arch/arm/mach-orion5x/ts78xx-*
991
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000992ARM/MICREL KS8695 ARCHITECTURE
993M: Greg Ungerer <gerg@uclinux.org>
994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995F: arch/arm/mach-ks8695
996S: Odd Fixes
997
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200998ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700999M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001000L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001001F: arch/arm/mach-pxa/mioa701.c
1002S: Maintained
1003
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001004ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001005M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001006S: Maintained
1007
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001008ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001009M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001010M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001011M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1012L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1013S: Maintained
1014F: arch/arm/mach-nomadik/
1015F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001016F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001017T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001018
Andy Green9d762952009-05-19 06:41:42 -03001019ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001020M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001021L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1022W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1023S: Supported
1024
Daniel Walker0c19d212009-12-07 16:53:51 -08001025ARM/QUALCOMM MSM MACHINE SUPPORT
1026M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001027M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001028M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001029L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001030F: arch/arm/mach-msm/
1031F: drivers/video/msm/
1032F: drivers/mmc/host/msm_sdcc.c
1033F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001034F: drivers/tty/serial/msm_serial.h
1035F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001036F: drivers/*/pm8???-*
David Browncd9a8fb2013-03-12 11:41:55 -07001037F: drivers/ssbi/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001038F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001039T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001040S: Maintained
1041
Dirk Opfer8459c152005-11-06 14:27:52 +00001042ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001043M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1044M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001045S: Maintained
1046
Marek Vasut5d783a22009-07-16 13:26:48 +02001047ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001048M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001049L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001050W: http://hackndev.com
1051S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001052F: arch/arm/mach-pxa/include/mach/palmtx.h
1053F: arch/arm/mach-pxa/palmtx.c
1054F: arch/arm/mach-pxa/include/mach/palmt5.h
1055F: arch/arm/mach-pxa/palmt5.c
1056F: arch/arm/mach-pxa/include/mach/palmld.h
1057F: arch/arm/mach-pxa/palmld.c
1058F: arch/arm/mach-pxa/include/mach/palmte2.h
1059F: arch/arm/mach-pxa/palmte2.c
1060F: arch/arm/mach-pxa/include/mach/palmtc.h
1061F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001062
Joe Perchesb57fe922009-12-14 18:00:52 -08001063ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001064M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001065L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001066W: http://hackndev.com
1067S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001068F: arch/arm/mach-pxa/include/mach/palmtreo.h
1069F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001070
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001071ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001073L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001074W: http://hackndev.com
1075S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001076F: arch/arm/mach-pxa/include/mach/palmz72.h
1077F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001080M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1082S: Maintained
1083
1084ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001085M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001086L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087W: http://www.arm.linux.org.uk/
1088S: Maintained
1089
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001090ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001091M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001093S: Maintained
1094
Russell Kingd4275352009-04-16 14:05:27 +01001095ARM/RISCPC 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
Russell Kingd4275352009-04-16 14:05:27 +01001100F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1101F: arch/arm/include/asm/hardware/ioc.h
1102F: arch/arm/include/asm/hardware/iomd.h
1103F: arch/arm/include/asm/hardware/memc.h
1104F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001105F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001106F: drivers/net/ethernet/i825xx/ether1*
1107F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001108F: drivers/scsi/arm/
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001111M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112W: http://www.shark-linux.de/shark.html
1113S: Maintained
1114
Ben Dooksb21477f2009-06-13 10:46:34 +01001115ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001116M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001117M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001118L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001119L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001120W: http://www.fluff.org/ben/linux/
1121S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001122F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001123F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001124F: arch/arm/mach-s3c24*/
1125F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001126F: drivers/*/*s3c2410*
1127F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001128F: drivers/spi/spi-s3c*
1129F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001131ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001132M: Kukjin Kim <kgene.kim@samsung.com>
1133L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1134L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1135S: Maintained
1136F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001137F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001138
Kyungmin Park10ffa962011-03-04 17:36:26 -08001139ARM/SAMSUNG MOBILE MACHINE SUPPORT
1140M: Kyungmin Park <kyungmin.park@samsung.com>
1141L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142S: Maintained
1143F: arch/arm/mach-s5pv210/mach-aquila.c
1144F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001145F: arch/arm/mach-exynos/mach-universal_c210.c
1146F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001147
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001148ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1149M: Kyungmin Park <kyungmin.park@samsung.com>
1150M: Kamil Debski <k.debski@samsung.com>
1151L: linux-arm-kernel@lists.infradead.org
1152L: linux-media@vger.kernel.org
1153S: Maintained
1154F: drivers/media/platform/s5p-g2d/
1155
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001156ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1157M: Kyungmin Park <kyungmin.park@samsung.com>
1158M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1159L: linux-arm-kernel@lists.infradead.org
1160L: linux-media@vger.kernel.org
1161S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001162F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001163F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001164
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001165ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1166M: Kyungmin Park <kyungmin.park@samsung.com>
1167M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001168M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001169L: linux-arm-kernel@lists.infradead.org
1170L: linux-media@vger.kernel.org
1171S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001172F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001173F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001174
1175ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1176M: Kyungmin Park <kyungmin.park@samsung.com>
1177M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1178L: linux-arm-kernel@lists.infradead.org
1179L: linux-media@vger.kernel.org
1180S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001181F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001182
Paul Mundtd48d38e2010-02-08 12:50:24 +09001183ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001184M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001185M: Magnus Damm <magnus.damm@gmail.com>
1186L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001187W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001188Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001189T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001190S: Supported
1191F: arch/arm/mach-shmobile/
1192F: drivers/sh/
1193
Dinh Nguyen66314222012-07-18 16:07:18 -06001194ARM/SOCFPGA ARCHITECTURE
1195M: Dinh Nguyen <dinguyen@altera.com>
1196S: Maintained
1197F: arch/arm/mach-socfpga/
1198
1199ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1200M: Dinh Nguyen <dinguyen@altera.com>
1201S: Maintained
1202F: drivers/clk/socfpga/
1203
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001204ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001205M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001206L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001207S: Maintained
1208
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001209ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001210M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001211L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1212S: Maintained
1213
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001214ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001215M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001217S: Maintained
1218
wanzongshun98ad6e32009-02-13 06:04:32 +01001219ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001220M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001222W: http://www.mcuos.com
1223S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001224F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001225F: drivers/input/keyboard/w90p910_keypad.c
1226F: drivers/input/touchscreen/w90p910_ts.c
1227F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001228F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001229F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001230F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001231F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001232F: drivers/usb/host/ehci-w90x900.c
1233F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001234
Linus Walleij54274d72010-04-04 10:58:03 +01001235ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001236M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001237L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1238S: Supported
1239F: arch/arm/mach-u300/
1240F: drivers/i2c/busses/i2c-stu300.c
1241F: drivers/rtc/rtc-coh901331.c
1242F: drivers/watchdog/coh901327_wdt.c
1243F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001244F: drivers/mfd/ab3100*
1245F: drivers/rtc/rtc-ab3100.c
1246F: drivers/rtc/rtc-coh901331.c
1247T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001248
Linus Walleij87572882010-12-22 09:18:29 +01001249ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001250M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001251M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001252L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1253S: Maintained
1254F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001255F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001256F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001257F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001258F: drivers/mfd/abx500*
1259F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001260F: drivers/mfd/dbx500*
1261F: drivers/mfd/db8500*
1262F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001263F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001264F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001265T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001266
Russell Kingd4275352009-04-16 14:05:27 +01001267ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001268M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001270W: http://www.arm.linux.org.uk/
1271S: Maintained
1272F: arch/arm/vfp/
1273
Marek Vasute66b6d82010-03-26 06:51:32 +01001274ARM/VOIPAC PXA270 SUPPORT
1275M: Marek Vasut <marek.vasut@gmail.com>
1276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277S: Maintained
1278F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001279F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001280
Tony Prisk04529fe2012-07-24 04:19:37 +12001281ARM/VT8500 ARM ARCHITECTURE
1282M: Tony Prisk <linux@prisktech.co.nz>
1283L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284S: Maintained
1285F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001286F: drivers/clocksource/vt8500_timer.c
1287F: drivers/gpio/gpio-vt8500.c
1288F: drivers/mmc/host/wmt-sdmmc.c
1289F: drivers/pwm/pwm-vt8500.c
1290F: drivers/rtc/rtc-vt8500.c
1291F: drivers/tty/serial/vt8500_serial.c
1292F: drivers/usb/host/ehci-vt8500.c
1293F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001294F: drivers/video/vt8500lcdfb.*
1295F: drivers/video/wm8505fb*
1296F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001297
Marek Vasute66b6d82010-03-26 06:51:32 +01001298ARM/ZIPIT Z2 SUPPORT
1299M: Marek Vasut <marek.vasut@gmail.com>
1300L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301S: Maintained
1302F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001303F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001304
Michal Simek51f29d42013-01-21 17:41:46 +01001305ARM/ZYNQ ARCHITECTURE
1306M: Michal Simek <michal.simek@xilinx.com>
1307L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308W: http://wiki.xilinx.com
1309T: git git://git.xilinx.com/linux-xlnx.git
1310S: Supported
1311F: arch/arm/mach-zynq/
1312
Catalin Marinas38074222012-03-05 11:49:34 +00001313ARM64 PORT (AARCH64 ARCHITECTURE)
1314M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001315M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317S: Maintained
1318F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001319F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001320
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001321AS3645A LED FLASH CONTROLLER DRIVER
1322M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1323L: linux-media@vger.kernel.org
1324T: git git://linuxtv.org/media_tree.git
1325S: Maintained
1326F: drivers/media/i2c/as3645a.c
1327F: include/media/as3645a.h
1328
George Josephd58de032010-03-05 22:17:25 +01001329ASC7621 HARDWARE MONITOR DRIVER
1330M: George Joseph <george.joseph@fairview5.com>
1331L: lm-sensors@lm-sensors.org
1332S: Maintained
1333F: Documentation/hwmon/asc7621
1334F: drivers/hwmon/asc7621.c
1335
Corentin Charyb229ece2011-02-26 10:20:40 +01001336ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001337M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001339L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001340W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001342F: drivers/platform/x86/asus*.c
1343F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Andrew Morton953a6472008-11-06 12:53:28 -08001345ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001346M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001347W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001349F: Documentation/crypto/async-tx-api.txt
1350F: crypto/async_tx/
1351F: drivers/dma/
1352F: include/linux/dmaengine.h
1353F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001354
Wolfram Sanga1867d32009-09-18 22:45:51 +02001355AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001356M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001357L: linux-i2c@vger.kernel.org
1358S: Maintained
1359F: drivers/misc/eeprom/at24.c
1360F: include/linux/i2c/at24.h
1361
Randy Dunlape7839f22008-10-12 16:11:45 -07001362ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001363M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001364W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001366F: Documentation/aoe/
1367F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Joe Perches9a10a872010-12-01 09:37:55 -08001369ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001370M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001371L: linux-wireless@vger.kernel.org
1372S: Supported
1373F: drivers/net/wireless/ath/*
1374
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001375ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001376M: Jiri Slaby <jirislaby@gmail.com>
1377M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001378M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001379L: linux-wireless@vger.kernel.org
1380L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001381W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001382S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001383F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001384
Kalle Valo12e62d62011-09-13 10:21:25 +03001385ATHEROS ATH6KL WIRELESS DRIVER
1386M: Kalle Valo <kvalo@qca.qualcomm.com>
1387L: linux-wireless@vger.kernel.org
1388W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1389T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1390S: Supported
1391F: drivers/net/wireless/ath/ath6kl/
1392
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001393ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001394M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1395M: Jouni Malinen <jouni@qca.qualcomm.com>
1396M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1397M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001398L: linux-wireless@vger.kernel.org
1399L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001400W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001401S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001402F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001403
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001404WILOCITY WIL6210 WIRELESS DRIVER
1405M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1406L: linux-wireless@vger.kernel.org
1407L: wil6210@qca.qualcomm.com
1408S: Supported
1409W: http://wireless.kernel.org/en/users/Drivers/wil6210
1410F: drivers/net/wireless/ath/wil6210/
1411
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001412CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1413M: Christian Lamparter <chunkeey@googlemail.com>
1414L: linux-wireless@vger.kernel.org
1415W: http://wireless.kernel.org/en/users/Drivers/carl9170
1416S: Maintained
1417F: drivers/net/wireless/ath/carl9170/
1418
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001419ATK0110 HWMON DRIVER
1420M: Luca Tettamanti <kronos.it@gmail.com>
1421L: lm-sensors@lm-sensors.org
1422S: Maintained
1423F: drivers/hwmon/asus_atk0110.c
1424
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001425ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001428F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001429
Chris Snook7ae115b2008-09-09 03:26:57 -04001430ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001431M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001432M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001433L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001434W: http://sourceforge.net/projects/atl1
1435W: http://atl1.sourceforge.net
1436S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001437F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001440M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001441L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001442L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443W: http://linux-atm.sourceforge.net
1444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001445F: drivers/atm/
1446F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001447F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001449ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001450M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001451S: Maintained
1452F: drivers/mmc/host/atmel-mci.c
1453F: drivers/mmc/host/atmel-mci-regs.h
1454
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001455ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001456M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001457S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001458F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001459
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001460ATMEL DMA DRIVER
1461M: Nicolas Ferre <nicolas.ferre@atmel.com>
1462L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1463S: Supported
1464F: drivers/dma/at_hdmac.c
1465F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001466F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001467
Ludovic Desroches888f2802013-03-15 05:32:57 +00001468ATMEL I2C DRIVER
1469M: Ludovic Desroches <ludovic.desroches@atmel.com>
1470L: linux-i2c@vger.kernel.org
1471S: Supported
1472F: drivers/i2c/busses/i2c-at91.c
1473
Josh Wu15515542012-03-23 17:56:29 +08001474ATMEL ISI DRIVER
1475M: Josh Wu <josh.wu@atmel.com>
1476L: linux-media@vger.kernel.org
1477S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001478F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001479F: include/media/atmel-isi.h
1480
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001481ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001482M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001483L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001485F: drivers/video/atmel_lcdfb.c
1486F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001487
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001488ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001489M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001490S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001491F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001492
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001493ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001494M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001495S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001496F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001497
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001498ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1499M: Nicolas Ferre <nicolas.ferre@atmel.com>
1500L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501S: Supported
1502F: drivers/misc/atmel_tclib.c
1503F: drivers/clocksource/tcb_clksrc.c
1504
Josh Wuff2675d2012-03-23 17:56:55 +08001505ATMEL TSADCC DRIVER
1506M: Josh Wu <josh.wu@atmel.com>
1507L: linux-input@vger.kernel.org
1508S: Supported
1509F: drivers/input/touchscreen/atmel_tsadcc.c
1510
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001511ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001512M: Nicolas Ferre <nicolas.ferre@atmel.com>
1513L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001515F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001518M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001519L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520W: http://www.thekelleys.org.uk/atmel
1521W: http://atmelwlandriver.sourceforge.net/
1522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001523F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Chris Wrighta92b7b82005-07-07 18:12:23 -07001525AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001526M: Al Viro <viro@zeniv.linux.org.uk>
1527M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001528L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001529W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001530T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001533F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001534F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001535
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001536AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001538W: http://miguelojeda.es/auxdisplay.htm
1539W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001541F: drivers/auxdisplay/
1542F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001543
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001544AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001545M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1546M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001547W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001548W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001549W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001551F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001552
1553AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001554M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1555M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001562W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001564F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001565F: include/net/ax25.h
1566F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001568AZ6007 DVB DRIVER
1569M: Mauro Carvalho Chehab <mchehab@redhat.com>
1570L: linux-media@vger.kernel.org
1571W: http://linuxtv.org
1572T: git git://linuxtv.org/media_tree.git
1573S: Maintained
1574F: drivers/media/usb/dvb-usb-v2/az6007.c
1575
Hans Verkuil67773762012-11-23 07:09:23 -03001576AZTECH FM RADIO RECEIVER DRIVER
1577M: Hans Verkuil <hverkuil@xs4all.nl>
1578L: linux-media@vger.kernel.org
1579T: git git://linuxtv.org/media_tree.git
1580W: http://linuxtv.org
1581S: Maintained
1582F: drivers/media/radio/radio-aztech*
1583
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001584B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001586L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001587L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001588W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001590F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591
1592B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Larry Finger <Larry.Finger@lwfinger.net>
1594M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001595L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001596L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001597W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001599F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001600
Richard Purdie300abeb2007-02-07 22:21:07 +00001601BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001604F: drivers/video/backlight/
1605F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001606
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001607BATMAN ADVANCED
1608M: Marek Lindner <lindner_marek@yahoo.de>
1609M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001610M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001611L: b.a.t.m.a.n@lists.open-mesh.org
1612W: http://www.open-mesh.org/
1613S: Maintained
1614F: net/batman-adv/
1615
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001616BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001617M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618L: linux-hams@vger.kernel.org
1619W: http://www.baycom.org/~tom/ham/ham.html
1620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001621F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001622
Kent Overstreetcafe5632013-03-23 16:11:31 -07001623BCACHE (BLOCK LAYER CACHE)
1624M: Kent Overstreet <koverstreet@google.com>
1625L: linux-bcache@vger.kernel.org
1626W: http://bcache.evilpiepirate.org
1627S: Maintained:
1628F: drivers/md/bcache/
1629
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001630BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001631S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001632F: Documentation/filesystems/befs.txt
1633F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001634
1635BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001638F: Documentation/filesystems/bfs.txt
1639F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001640F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001641
Bryan Wu1394f032007-05-06 14:50:22 -07001642BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001643M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001644L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001645W: http://blackfin.uclinux.org
1646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001647F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001648
Bryan Wue190d6b2007-07-17 14:43:44 +08001649BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001650L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001651W: http://blackfin.uclinux.org
1652S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001653F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001654
Mike Frysinger566da5b2007-06-11 15:31:30 +08001655BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001657L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001658W: http://blackfin.uclinux.org
1659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001660F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001661
Mike Frysinger936ed492010-03-10 15:20:38 -08001662BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001663M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001664L: uclinux-dist-devel@blackfin.uclinux.org
1665W: http://blackfin.uclinux.org
1666S: Supported
1667F: drivers/mmc/host/bfin_sdh.c
1668
Bryan Wu1394f032007-05-06 14:50:22 -07001669BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001671L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001672W: http://blackfin.uclinux.org
1673S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001674F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001675
Bryan Wu1e6d3202007-07-15 02:50:02 +08001676BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001678L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001679W: http://blackfin.uclinux.org
1680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001682
Bryan Wud24ecfc2007-05-01 23:26:32 +02001683BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001684M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001685L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001686W: http://blackfin.uclinux.org/
1687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001688F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001689
Scott Jiang1e204372013-01-18 17:09:47 -03001690BLACKFIN MEDIA DRIVER
1691M: Scott Jiang <scott.jiang.linux@gmail.com>
1692L: uclinux-dist-devel@blackfin.uclinux.org
1693W: http://blackfin.uclinux.org/
1694S: Supported
1695F: drivers/media/platform/blackfin/
1696F: drivers/media/i2c/adv7183*
1697F: drivers/media/i2c/vs6624*
1698
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001699BLINKM RGB LED DRIVER
1700M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1701S: Maintained
1702F: drivers/leds/leds-blinkm.c
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001706T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001708F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Joern Engel2b54aae2008-02-06 01:38:02 -08001710BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001711M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001712L: linux-mtd@lists.infradead.org
1713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001715
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001716BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001718M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001719M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001720L: linux-bluetooth@vger.kernel.org
1721W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1723T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001728M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001729M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001730M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001731L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001732W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001733T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1734T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001736F: net/bluetooth/
1737F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001740M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001741M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001742L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001743W: http://sourceforge.net/projects/bonding/
1744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001745F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001746F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Gary Zambrano39105892006-06-22 17:26:20 -07001748BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001749M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001750L: netdev@vger.kernel.org
1751S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001752F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001753
Michael Chan948c51e2006-06-04 02:51:39 -07001754BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001755M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001756L: netdev@vger.kernel.org
1757S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001758F: drivers/net/ethernet/broadcom/bnx2.*
1759F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001760
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001761BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001762M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001763L: netdev@vger.kernel.org
1764S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001765F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001766
Stephen Warrenf680f252012-09-15 00:18:54 -06001767BROADCOM BCM2835 ARM ARCHICTURE
1768M: Stephen Warren <swarren@wwwdotorg.org>
1769L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1770T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1771S: Maintained
1772F: arch/arm/mach-bcm2835/
1773F: arch/arm/boot/dts/bcm2835*
1774F: arch/arm/configs/bcm2835_defconfig
1775F: drivers/*/*bcm2835*
1776
Michael Chan948c51e2006-06-04 02:51:39 -07001777BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001778M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001779M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001780L: netdev@vger.kernel.org
1781S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001782F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001783
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001784BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1785M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001786M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001787M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001788M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001789L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001790L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001791S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001792F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001793
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001794BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1795M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1796L: linux-scsi@vger.kernel.org
1797S: Supported
1798F: drivers/scsi/bnx2fc/
1799
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001800BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1801M: Rafał Miłecki <zajec5@gmail.com>
1802L: linux-wireless@vger.kernel.org
1803S: Maintained
1804F: drivers/bcma/
1805F: include/linux/bcma/
1806
Jing Huang7725ccf2009-09-23 17:46:15 -07001807BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001808M: Anil Gurumurthy <agurumur@brocade.com>
1809M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001810L: linux-scsi@vger.kernel.org
1811S: Supported
1812F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001813
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001814BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1815M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001816L: netdev@vger.kernel.org
1817S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001818F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001819
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001820BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001822L: linux-scsi@vger.kernel.org
1823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001824F: block/bsg.c
1825F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001826F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001827
Clemens Ladischaf399172011-01-10 16:32:54 +01001828BT87X AUDIO DRIVER
1829M: Clemens Ladisch <clemens@ladisch.de>
1830L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1831T: git git://git.alsa-project.org/alsa-kernel.git
1832S: Maintained
1833F: Documentation/sound/alsa/Bt87x.txt
1834F: sound/pci/bt87x.c
1835
Michael Bueschff1d5c22008-07-25 01:46:10 -07001836BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001837M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001838W: http://bu3sch.de/btgpio.php
1839S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001840F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001841
Joe Percheseb1eb042009-01-21 10:49:16 -05001842BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001843M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001844L: linux-btrfs@vger.kernel.org
1845W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001846Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001847T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001849F: Documentation/filesystems/btrfs.txt
1850F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001853M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001854L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001855W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001856T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001857S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001858F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001859F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Clemens Ladischaf399172011-01-10 16:32:54 +01001861C-MEDIA CMI8788 DRIVER
1862M: Clemens Ladisch <clemens@ladisch.de>
1863L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1864T: git git://git.alsa-project.org/alsa-kernel.git
1865S: Maintained
1866F: sound/pci/oxygen/
1867
Mark Salter21413552011-10-04 11:21:42 -04001868C6X ARCHITECTURE
1869M: Mark Salter <msalter@redhat.com>
1870M: Aurelien Jacquiot <a-jacquiot@ti.com>
1871L: linux-c6x-dev@linux-c6x.org
1872W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1873S: Maintained
1874F: arch/c6x/
1875
David Howellsa5432f52009-04-20 15:46:45 +01001876CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001877M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001878L: linux-cachefs@redhat.com
1879S: Supported
1880F: Documentation/filesystems/caching/cachefiles.txt
1881F: fs/cachefiles/
1882
Hans Verkuilc815ca32012-11-23 07:05:54 -03001883CADET FM/AM RADIO RECEIVER DRIVER
1884M: Hans Verkuil <hverkuil@xs4all.nl>
1885L: linux-media@vger.kernel.org
1886T: git git://linuxtv.org/media_tree.git
1887W: http://linuxtv.org
1888S: Maintained
1889F: drivers/media/radio/radio-cadet*
1890
Jonathan Corbet77d51402007-03-22 19:44:17 -03001891CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001892M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001893L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001894T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001896F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001897F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001898
Joe Perches201b6ba2010-09-07 20:33:24 +00001899CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001900M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001901L: netdev@vger.kernel.org
1902S: Supported
1903F: Documentation/networking/caif/
1904F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001905F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001906F: include/net/caif/
1907F: net/caif/
1908
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001909CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001910M: Muli Ben-Yehuda <muli@il.ibm.com>
1911M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001912L: discuss@x86-64.org
1913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001914F: arch/x86/kernel/pci-calgary_64.c
1915F: arch/x86/kernel/tce_64.c
1916F: arch/x86/include/asm/calgary.h
1917F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001918
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001919CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001920M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001921L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001922W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001923T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001924S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001925F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001926F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001927F: include/uapi/linux/can.h
1928F: include/uapi/linux/can/bcm.h
1929F: include/uapi/linux/can/raw.h
1930F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001931
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001932CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001933M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001934M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001935L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001936W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001937T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001938S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001939F: drivers/net/can/
1940F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001941F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001942F: include/uapi/linux/can/error.h
1943F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001944
James Morris95d16c72012-03-16 12:05:48 +11001945CAPABILITIES
1946M: Serge Hallyn <serge.hallyn@canonical.com>
1947L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001948S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001949F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001950F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001951F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001952F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001953F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001954
Arnd Bergmannb8154542008-05-16 11:10:59 +02001955CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001956M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001957L: linuxppc-dev@lists.ozlabs.org
1958L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001959W: http://www.ibm.com/developerworks/power/cell/
1960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001961F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001962F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001963F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001964F: arch/powerpc/oprofile/*cell*
1965F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001966
Sage Weil9030aaf2009-10-06 11:31:15 -07001967CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001968M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001969L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001970W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001971T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001972S: Supported
1973F: Documentation/filesystems/ceph.txt
1974F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001975F: net/ceph
1976F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001977F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001978
David Vrabel18332a82008-09-17 16:34:44 +01001979CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001980L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001981S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001982F: Documentation/usb/WUSB-Design-overview.txt
1983F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001984F: drivers/usb/host/hwa-hc.c
1985F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001986F: drivers/usb/wusbcore/
1987F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001988
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001989CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001990M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001991W: http://miguelojeda.es/auxdisplay.htm
1992W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001994F: drivers/auxdisplay/cfag12864b.c
1995F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001996
1997CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001998M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001999W: http://miguelojeda.es/auxdisplay.htm
2000W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002002F: drivers/auxdisplay/cfag12864bfb.c
2003F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002004
Johannes Berg704232c2007-04-23 12:20:05 -07002005CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002006M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002007L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002008W: http://wireless.kernel.org/
2009T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2010T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002011S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002012F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002013F: include/net/cfg80211.h
2014F: net/wireless/*
2015X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002016
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002017CHAR and MISC DRIVERS
2018M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002019M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002020T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002021S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002022F: drivers/char/*
2023F: drivers/misc/*
2024
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002025CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002027M: Joe Perches <joe@perches.com>
2028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002029F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002030
Harry Weif8407f262011-02-25 14:44:15 -08002031CHINESE DOCUMENTATION
2032M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002033L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002034L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2035S: Maintained
2036F: Documentation/zh_CN/
2037
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002038CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2039M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2040L: linux-usb@vger.kernel.org
2041S: Maintained
2042F: drivers/usb/chipidea/
2043
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002044CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002045M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002046M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002047M: Neel Patel <neepatel@cisco.com>
2048M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002049S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002050F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002051
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002052CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002053M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002054L: netdev@vger.kernel.org
2055S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002056F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002057
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002058CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002059M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002060L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002063
Timur Tabid9e9d822008-04-24 08:45:26 +10002064CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002065M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002066L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002067S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002068F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002069
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002070CLEANCACHE API
2071M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2072L: linux-kernel@vger.kernel.org
2073S: Maintained
2074F: mm/cleancache.c
2075F: include/linux/cleancache.h
2076
Russell Kingd4275352009-04-16 14:05:27 +01002077CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002078M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002079S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002080F: include/linux/clk.h
2081
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002082CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002083M: Hiral Patel <hiralpat@cisco.com>
2084M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002085M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002086L: linux-scsi@vger.kernel.org
2087S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002088F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002089
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002090CMPC ACPI DRIVER
2091M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2092M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002093L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002094S: Supported
2095F: drivers/platform/x86/classmate-laptop.c
2096
Nicolas Palix74425ee2010-06-06 17:15:01 +02002097COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002098M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002099M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002100M: Nicolas Palix <nicolas.palix@imag.fr>
2101L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002102W: http://coccinelle.lip6.fr/
2103S: Supported
2104F: scripts/coccinelle/
2105F: scripts/coccicheck
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002108M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109M: coda@cs.cmu.edu
2110L: codalist@coda.cs.cmu.edu
2111W: http://www.coda.cs.cmu.edu/
2112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002113F: Documentation/filesystems/coda.txt
2114F: fs/coda/
2115F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002116F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Mike Turquette7704add2012-05-02 18:37:45 -07002118COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002119M: Mike Turquette <mturquette@linaro.org>
2120L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2121T: git git://git.linaro.org/people/mturquette/linux.git
2122S: Maintained
2123F: drivers/clk/clk.c
2124F: drivers/clk/clk-*
2125F: include/linux/clk-pr*
2126
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002127COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002129L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002130L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002131W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002132Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002133T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002135F: Documentation/filesystems/cifs.txt
2136F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002140L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002145M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002146L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002148F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002151M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002152L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002154F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002156COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002157M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002158L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002161
Simon Arlott949be0f2007-03-06 02:47:46 -08002162CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002163M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002164L: accessrunner-general@lists.sourceforge.net
2165W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002167F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002168
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002169CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002170M: Joel Becker <jlbec@evilplan.org>
2171T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002173F: fs/configfs/
2174F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002175
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002176CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002177M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002178L: netdev@vger.kernel.org
2179S: Maintained
2180F: drivers/connector/
2181
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002182CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002183M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002184M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002185L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002186L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002187T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002189F: include/linux/cgroup*
2190F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002191F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002192
Rudolf Marekbebe4672007-05-08 17:22:02 +02002193CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002194M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002195L: lm-sensors@lm-sensors.org
2196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002197F: Documentation/hwmon/coretemp
2198F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002201M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202W: http://www.fi.muni.cz/~kas/cosa/
2203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002204F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Florian Fainelli4371ee32009-06-01 02:43:17 -07002206CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002207M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002208L: netdev@vger.kernel.org
2209S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002210F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002213M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002214M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002215L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002216L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217S: Maintained
viresh kumar45c009a2013-04-26 12:53:16 +00002218T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perches679655d2009-04-07 20:44:32 -07002219F: drivers/cpufreq/
2220F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002222CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2223M: Viresh Kumar <viresh.kumar@linaro.org>
2224M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2225L: cpufreq@vger.kernel.org
2226L: linux-pm@vger.kernel.org
2227W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2228S: Maintained
2229F: drivers/cpufreq/arm_big_little.h
2230F: drivers/cpufreq/arm_big_little.c
2231F: drivers/cpufreq/arm_big_little_dt.c
2232
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002233CPUIDLE DRIVERS
2234M: Rafael J. Wysocki <rjw@sisk.pl>
2235M: Daniel Lezcano <daniel.lezcano@linaro.org>
2236L: linux-pm@vger.kernel.org
2237S: Maintained
2238T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2239F: drivers/cpuidle/*
2240F: include/linux/cpuidle.h
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002243M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002245F: arch/x86/kernel/cpuid.c
2246F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002248CPU POWER MONITORING SUBSYSTEM
2249M: Dominik Brodowski <linux@dominikbrodowski.net>
2250M: Thomas Renninger <trenn@suse.de>
2251S: Maintained
2252F: tools/power/cpupower
2253
Paul Jacksoned90fb42005-09-27 21:45:37 -07002254CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002255M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002256W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002257W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002259F: Documentation/cgroups/cpusets.txt
2260F: include/linux/cpuset.h
2261F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002264W: http://sourceforge.net/projects/cramfs/
2265S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002266F: Documentation/filesystems/cramfs.txt
2267F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Mikael Starvik <starvik@axis.com>
2271M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002272L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273W: http://developer.axis.com
2274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002275F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002276F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002279M: Herbert Xu <herbert@gondor.apana.org.au>
2280M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002282T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002284F: Documentation/crypto/
2285F: arch/*/crypto/
2286F: crypto/
2287F: drivers/crypto/
2288F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Neil Horman5b07bd52009-02-05 16:03:04 +11002290CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002291M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002292L: linux-crypto@vger.kernel.org
2293S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002294F: crypto/ansi_cprng.c
2295F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002296
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002297CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002298M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002301
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002302CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002303M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002304L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002305L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002306T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002307W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002308W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002310F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002311F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002312F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002313
Hans Verkuil3f101d92012-11-23 07:00:02 -03002314CX2341X MPEG ENCODER HELPER MODULE
2315M: Hans Verkuil <hverkuil@xs4all.nl>
2316L: linux-media@vger.kernel.org
2317T: git git://linuxtv.org/media_tree.git
2318W: http://linuxtv.org
2319S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002320F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002321F: include/media/cx2341x*
2322
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002323CX88 VIDEO4LINUX DRIVER
2324M: Mauro Carvalho Chehab <mchehab@redhat.com>
2325L: linux-media@vger.kernel.org
2326W: http://linuxtv.org
2327T: git git://linuxtv.org/media_tree.git
2328S: Odd fixes
2329F: Documentation/video4linux/cx88/
2330F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002331
Antti Palosaari91952bc2012-10-01 12:28:46 -03002332CXD2820R MEDIA DRIVER
2333M: Antti Palosaari <crope@iki.fi>
2334L: linux-media@vger.kernel.org
2335W: http://linuxtv.org/
2336W: http://palosaari.fi/linux/
2337Q: http://patchwork.linuxtv.org/project/linux-media/list/
2338T: git git://linuxtv.org/anttip/media_tree.git
2339S: Maintained
2340F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002341
Steve Wisee5ec3782008-05-20 14:06:33 -07002342CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002343M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002344L: netdev@vger.kernel.org
2345W: http://www.chelsio.com
2346S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002347F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002348
2349CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002350M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002351L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002352W: http://www.openfabrics.org
2353S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002354F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002355
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002356CXGB4 ETHERNET DRIVER (CXGB4)
2357M: Dimitris Michailidis <dm@chelsio.com>
2358L: netdev@vger.kernel.org
2359W: http://www.chelsio.com
2360S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002361F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002362
2363CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2364M: Steve Wise <swise@chelsio.com>
2365L: linux-rdma@vger.kernel.org
2366W: http://www.openfabrics.org
2367S: Supported
2368F: drivers/infiniband/hw/cxgb4/
2369
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002370CXGB4VF ETHERNET DRIVER (CXGB4VF)
2371M: Casey Leedom <leedom@chelsio.com>
2372L: netdev@vger.kernel.org
2373W: http://www.chelsio.com
2374S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002375F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002376
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002377STMMAC ETHERNET DRIVER
2378M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2379L: netdev@vger.kernel.org
2380W: http://www.stlinux.com
2381S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002382F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002385M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002386L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387W: http://www.arm.linux.org.uk/
2388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002389F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002393S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002394F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002395F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002396F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002400S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002401F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002403CYPRESS_FIRMWARE MEDIA DRIVER
2404M: Antti Palosaari <crope@iki.fi>
2405L: linux-media@vger.kernel.org
2406W: http://linuxtv.org/
2407W: http://palosaari.fi/linux/
2408Q: http://patchwork.linuxtv.org/project/linux-media/list/
2409T: git git://linuxtv.org/anttip/media_tree.git
2410S: Maintained
2411F: drivers/media/common/cypress_firmware*
2412
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002413CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002414M: Javier Martinez Canillas <javier@dowhile0.org>
2415L: linux-input@vger.kernel.org
2416S: Maintained
2417F: drivers/input/touchscreen/cyttsp*
2418F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002421M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422W: http://yaina.de/jreuter/
2423W: http://www.qsl.net/dl1bke/
2424L: linux-hams@vger.kernel.org
2425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002426F: net/ax25/af_ax25.c
2427F: net/ax25/ax25_dev.c
2428F: net/ax25/ax25_ds_*
2429F: net/ax25/ax25_in.c
2430F: net/ax25/ax25_out.c
2431F: net/ax25/ax25_timer.c
2432F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002434DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002435L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002436S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002437F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002438F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002439
2440DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002441M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002442W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002443M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002445F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002448M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002449M: Ali Akcaagac <aliakc@web.de>
2450M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002452L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453L: http://lists.twibble.org/mailman/listinfo/dc395x/
2454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002455F: Documentation/scsi/dc395x.txt
2456F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002458DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002459M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002460L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002461W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002463F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002464F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002465F: include/linux/tfrc.h
2466F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469W: http://linux-decnet.sourceforge.net
2470L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002472F: Documentation/networking/decnet.txt
2473F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002476M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002478F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002480DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002481M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002482L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002484F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002487S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002489F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Doug Warzecha90563ec2005-09-06 15:17:15 -07002491DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002492M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002494F: Documentation/dcdbas.txt
2495F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002496
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002497DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002498M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002499S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002500F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002501
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002502DESIGNWARE USB2 DRD IP DRIVER
2503M: Paul Zimmerman <paulz@synopsys.com>
2504L: linux-usb@vger.kernel.org
2505S: Maintained
2506F: drivers/staging/dwc2/
2507
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002508DESIGNWARE USB3 DRD IP DRIVER
2509M: Felipe Balbi <balbi@ti.com>
2510L: linux-usb@vger.kernel.org
2511L: linux-omap@vger.kernel.org
2512T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2513S: Maintained
2514F: drivers/usb/dwc3/
2515
Kyungmin Park89d07762012-01-10 15:09:09 -08002516DEVICE FREQUENCY (DEVFREQ)
2517M: MyungJoo Ham <myungjoo.ham@samsung.com>
2518M: Kyungmin Park <kyungmin.park@samsung.com>
2519L: linux-kernel@vger.kernel.org
2520S: Maintained
2521F: drivers/devfreq/
2522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002524M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526S: Maintained
2527
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002528DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002529M: Alasdair Kergon <agk@redhat.com>
2530M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002531L: dm-devel@redhat.com
2532W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002533Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002534T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002536F: Documentation/device-mapper/
2537F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002538F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002539F: include/linux/device-mapper.h
2540F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002541
Guenter Roeck335d7c52011-01-26 11:45:49 -08002542DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002543M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002544L: linux-i2c@vger.kernel.org
2545S: Maintained
2546F: drivers/i2c/busses/i2c-diolan-u2c.c
2547
Randy Dunlape7839f22008-10-12 16:11:45 -07002548DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002549M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002551F: Documentation/filesystems/dnotify.txt
2552F: fs/notify/dnotify/
2553F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002556M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2558W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2559W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2560S: Maintained
2561
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002562DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002563M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/filesystems/quota.txt
2566F: fs/quota/
2567F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002568F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Bernie Thompson702686a2012-03-01 13:52:13 -08002570DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2571M: Bernie Thompson <bernie@plugable.com>
2572L: linux-fbdev@vger.kernel.org
2573S: Maintained
2574W: http://plugable.com/category/projects/udlfb/
2575F: drivers/video/udlfb.c
2576F: include/video/udlfb.h
2577F: Documentation/fb/udlfb.txt
2578
Randy Dunlape7839f22008-10-12 16:11:45 -07002579DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002580M: Christine Caulfield <ccaulfie@redhat.com>
2581M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002582L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002583W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002584T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002586F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002587
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302588DMA BUFFER SHARING FRAMEWORK
2589M: Sumit Semwal <sumit.semwal@linaro.org>
2590S: Maintained
2591L: linux-media@vger.kernel.org
2592L: dri-devel@lists.freedesktop.org
2593L: linaro-mm-sig@lists.linaro.org
2594F: drivers/base/dma-buf*
2595F: include/linux/dma-buf*
2596F: Documentation/dma-buf-sharing.txt
2597T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2598
Dan Williamsb3e5f262007-08-07 10:26:35 -07002599DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002600M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002601M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002603F: drivers/dma/
2604F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302605T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2606T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002607
Juerg Haefligerb8250372007-06-09 10:11:16 -04002608DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002609M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002610L: lm-sensors@lm-sensors.org
2611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002612F: Documentation/hwmon/dme1737
2613F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002614
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002615DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002616M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002617L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002618S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002619F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002620
Joe Perches7d2c86b2009-04-07 20:59:01 -07002621DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002622M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002623L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002624T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002626F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630L: blinux-list@redhat.com
2631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002632F: drivers/char/dtlk.c
2633F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002635DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002636M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002637L: linux-scsi@vger.kernel.org
2638W: http://www.adaptec.com/
2639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002640F: drivers/scsi/dpt*
2641F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002642
Philipp Reisnerb411b362009-09-25 16:07:19 -07002643DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002644P: Philipp Reisner
2645P: Lars Ellenberg
2646M: drbd-dev@lists.linbit.com
2647L: drbd-user@lists.linbit.com
2648W: http://www.drbd.org
2649T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2650T: git git://git.drbd.org/drbd-8.3.git
2651S: Supported
2652F: drivers/block/drbd/
2653F: lib/lru_cache.c
2654F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002655
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002656DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002657M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002658T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002660F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002661F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002662F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002663F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002664F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002665F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002666F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002669M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002670L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002671T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002673F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002674F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002675F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Chris Wilson8daf7472010-09-28 14:07:26 +01002677INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002678M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002679L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002680L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002681T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002682S: Supported
2683F: drivers/gpu/drm/i915
2684F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002685F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002686
Kyungmin Park398a6d42011-11-02 11:33:16 +09002687DRM DRIVERS FOR EXYNOS
2688M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002689M: Joonyoung Shim <jy0922.shim@samsung.com>
2690M: Seung-Woo Kim <sw0312.kim@samsung.com>
2691M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002692L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002693T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002694S: Supported
2695F: drivers/gpu/drm/exynos
2696F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002697F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002698
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002699DRM DRIVERS FOR NVIDIA TEGRA
2700M: Thierry Reding <thierry.reding@avionic-design.de>
2701L: dri-devel@lists.freedesktop.org
2702L: linux-tegra@vger.kernel.org
2703T: git git://gitorious.org/thierryreding/linux.git
2704S: Maintained
2705F: drivers/gpu/drm/tegra/
2706F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2707
Alexey Klimov598df1a2012-11-28 17:16:32 -03002708DSBR100 USB FM RADIO DRIVER
2709M: Alexey Klimov <klimov.linux@gmail.com>
2710L: linux-media@vger.kernel.org
2711T: git git://linuxtv.org/media_tree.git
2712S: Maintained
2713F: drivers/media/radio/dsbr100.c
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002716M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002717L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002719F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Antti Palosaari91952bc2012-10-01 12:28:46 -03002721DVB_USB_AF9015 MEDIA DRIVER
2722M: Antti Palosaari <crope@iki.fi>
2723L: linux-media@vger.kernel.org
2724W: http://linuxtv.org/
2725W: http://palosaari.fi/linux/
2726Q: http://patchwork.linuxtv.org/project/linux-media/list/
2727T: git git://linuxtv.org/anttip/media_tree.git
2728S: Maintained
2729F: drivers/media/usb/dvb-usb-v2/af9015*
2730
2731DVB_USB_AF9035 MEDIA DRIVER
2732M: Antti Palosaari <crope@iki.fi>
2733L: linux-media@vger.kernel.org
2734W: http://linuxtv.org/
2735W: http://palosaari.fi/linux/
2736Q: http://patchwork.linuxtv.org/project/linux-media/list/
2737T: git git://linuxtv.org/anttip/media_tree.git
2738S: Maintained
2739F: drivers/media/usb/dvb-usb-v2/af9035*
2740
2741DVB_USB_ANYSEE MEDIA DRIVER
2742M: Antti Palosaari <crope@iki.fi>
2743L: linux-media@vger.kernel.org
2744W: http://linuxtv.org/
2745W: http://palosaari.fi/linux/
2746Q: http://patchwork.linuxtv.org/project/linux-media/list/
2747T: git git://linuxtv.org/anttip/media_tree.git
2748S: Maintained
2749F: drivers/media/usb/dvb-usb-v2/anysee*
2750
2751DVB_USB_AU6610 MEDIA DRIVER
2752M: Antti Palosaari <crope@iki.fi>
2753L: linux-media@vger.kernel.org
2754W: http://linuxtv.org/
2755W: http://palosaari.fi/linux/
2756Q: http://patchwork.linuxtv.org/project/linux-media/list/
2757T: git git://linuxtv.org/anttip/media_tree.git
2758S: Maintained
2759F: drivers/media/usb/dvb-usb-v2/au6610*
2760
2761DVB_USB_CE6230 MEDIA DRIVER
2762M: Antti Palosaari <crope@iki.fi>
2763L: linux-media@vger.kernel.org
2764W: http://linuxtv.org/
2765W: http://palosaari.fi/linux/
2766Q: http://patchwork.linuxtv.org/project/linux-media/list/
2767T: git git://linuxtv.org/anttip/media_tree.git
2768S: Maintained
2769F: drivers/media/usb/dvb-usb-v2/ce6230*
2770
Michael Krufkyd099dea2012-10-02 00:56:20 -03002771DVB_USB_CXUSB MEDIA DRIVER
2772M: Michael Krufky <mkrufky@linuxtv.org>
2773L: linux-media@vger.kernel.org
2774W: http://linuxtv.org/
2775W: http://github.com/mkrufky
2776Q: http://patchwork.linuxtv.org/project/linux-media/list/
2777T: git git://linuxtv.org/media_tree.git
2778S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002779F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002780
Antti Palosaari91952bc2012-10-01 12:28:46 -03002781DVB_USB_EC168 MEDIA DRIVER
2782M: Antti Palosaari <crope@iki.fi>
2783L: linux-media@vger.kernel.org
2784W: http://linuxtv.org/
2785W: http://palosaari.fi/linux/
2786Q: http://patchwork.linuxtv.org/project/linux-media/list/
2787T: git git://linuxtv.org/anttip/media_tree.git
2788S: Maintained
2789F: drivers/media/usb/dvb-usb-v2/ec168*
2790
Antti Palosaari55609832013-04-09 20:30:42 -03002791DVB_USB_GL861 MEDIA DRIVER
2792M: Antti Palosaari <crope@iki.fi>
2793L: linux-media@vger.kernel.org
2794W: http://linuxtv.org/
2795Q: http://patchwork.linuxtv.org/project/linux-media/list/
2796T: git git://linuxtv.org/anttip/media_tree.git
2797S: Maintained
2798F: drivers/media/usb/dvb-usb-v2/gl861*
2799
Michael Krufky8856f5f2012-10-02 00:55:50 -03002800DVB_USB_MXL111SF MEDIA DRIVER
2801M: Michael Krufky <mkrufky@linuxtv.org>
2802L: linux-media@vger.kernel.org
2803W: http://linuxtv.org/
2804W: http://github.com/mkrufky
2805Q: http://patchwork.linuxtv.org/project/linux-media/list/
2806T: git git://linuxtv.org/mkrufky/mxl111sf.git
2807S: Maintained
2808F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2809
Antti Palosaari91952bc2012-10-01 12:28:46 -03002810DVB_USB_RTL28XXU MEDIA DRIVER
2811M: Antti Palosaari <crope@iki.fi>
2812L: linux-media@vger.kernel.org
2813W: http://linuxtv.org/
2814W: http://palosaari.fi/linux/
2815Q: http://patchwork.linuxtv.org/project/linux-media/list/
2816T: git git://linuxtv.org/anttip/media_tree.git
2817S: Maintained
2818F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2819
2820DVB_USB_V2 MEDIA DRIVER
2821M: Antti Palosaari <crope@iki.fi>
2822L: linux-media@vger.kernel.org
2823W: http://linuxtv.org/
2824W: http://palosaari.fi/linux/
2825Q: http://patchwork.linuxtv.org/project/linux-media/list/
2826T: git git://linuxtv.org/anttip/media_tree.git
2827S: Maintained
2828F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2829F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2830
Jason Baronac0ac382011-08-11 14:36:43 -04002831DYNAMIC DEBUG
2832M: Jason Baron <jbaron@redhat.com>
2833S: Maintained
2834F: lib/dynamic_debug.c
2835F: include/linux/dynamic_debug.h
2836
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002837DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002838M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002839S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002840F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002841
Antti Palosaari91952bc2012-10-01 12:28:46 -03002842E4000 MEDIA DRIVER
2843M: Antti Palosaari <crope@iki.fi>
2844L: linux-media@vger.kernel.org
2845W: http://linuxtv.org/
2846W: http://palosaari.fi/linux/
2847Q: http://patchwork.linuxtv.org/project/linux-media/list/
2848T: git git://linuxtv.org/anttip/media_tree.git
2849S: Maintained
2850F: drivers/media/tuners/e4000*
2851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002853M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002854L: linux-eata@i-connect.net
2855L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002857F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861L: linux-scsi@vger.kernel.org
2862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002863F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002866M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002867L: linux-eata@i-connect.net
2868L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002870F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
2872EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002873M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002874L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875W: http://ebtables.sourceforge.net/
2876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002877F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002878F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002879F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Antti Palosaari91952bc2012-10-01 12:28:46 -03002881EC100 MEDIA DRIVER
2882M: Antti Palosaari <crope@iki.fi>
2883L: linux-media@vger.kernel.org
2884W: http://linuxtv.org/
2885W: http://palosaari.fi/linux/
2886Q: http://patchwork.linuxtv.org/project/linux-media/list/
2887T: git git://linuxtv.org/anttip/media_tree.git
2888S: Maintained
2889F: drivers/media/dvb-frontends/ec100*
2890
Michael Halcrow237fead2006-10-04 02:16:22 -07002891ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002892M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002893M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002894L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002895W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002896S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002897F: Documentation/filesystems/ecryptfs.txt
2898F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002899
Alan Coxda9bb1d2006-01-18 17:44:13 -08002900EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002901M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002902L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002903W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002904S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002905F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002906F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002907F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002908
Borislav Petkovc476c232009-05-20 20:31:58 +02002909EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002910M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002911M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002912L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002913W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002914S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002915F: drivers/edac/amd64_edac*
2916
Ralf Baechlef65aad42012-10-17 00:39:09 +02002917EDAC-CAVIUM
2918M: Ralf Baechle <ralf@linux-mips.org>
2919M: David Daney <david.daney@cavium.com>
2920L: linux-edac@vger.kernel.org
2921L: linux-mips@linux-mips.org
2922W: bluesmoke.sourceforge.net
2923S: Supported
2924F: drivers/edac/octeon_edac*
2925
Dave Peterson0e438e32006-03-26 01:38:55 -08002926EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002927M: Mark Gross <mark.gross@intel.com>
2928M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002929L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002930W: bluesmoke.sourceforge.net
2931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002932F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002933
2934EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002935M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002936L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002937W: bluesmoke.sourceforge.net
2938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002939F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002940
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002941EDAC-GHES
2942M: Mauro Carvalho Chehab <mchehab@redhat.com>
2943L: linux-edac@vger.kernel.org
2944W: bluesmoke.sourceforge.net
2945S: Maintained
2946F: drivers/edac/ghes-edac.c
2947
Douglas Thompson6bc78402007-07-19 01:50:12 -07002948EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002949M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002950L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002951W: bluesmoke.sourceforge.net
2952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002953F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002954
2955EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002957L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002958W: bluesmoke.sourceforge.net
2959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002960F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002961
2962EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002964L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002965W: bluesmoke.sourceforge.net
2966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002967F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002968
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002969EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002970M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002971L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002972W: bluesmoke.sourceforge.net
2973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002975
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002976EDAC-I7300
2977M: Mauro Carvalho Chehab <mchehab@redhat.com>
2978L: linux-edac@vger.kernel.org
2979W: bluesmoke.sourceforge.net
2980S: Maintained
2981F: drivers/edac/i7300_edac.c
2982
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002983EDAC-I7CORE
2984M: Mauro Carvalho Chehab <mchehab@redhat.com>
2985L: linux-edac@vger.kernel.org
2986W: bluesmoke.sourceforge.net
2987S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002988F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002989
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002990EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302992M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002993L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002994W: bluesmoke.sourceforge.net
2995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002997
2998EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002999M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003000L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003001W: bluesmoke.sourceforge.net
3002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003003F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003004
Dave Peterson0e438e32006-03-26 01:38:55 -08003005EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003006M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003007L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003008W: bluesmoke.sourceforge.net
3009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003010F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003011
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003012EDAC-SBRIDGE
3013M: Mauro Carvalho Chehab <mchehab@redhat.com>
3014L: linux-edac@vger.kernel.org
3015W: bluesmoke.sourceforge.net
3016S: Maintained
3017F: drivers/edac/sb_edac.c
3018
Clemens Ladischaf399172011-01-10 16:32:54 +01003019EDIROL UA-101/UA-1000 DRIVER
3020M: Clemens Ladisch <clemens@ladisch.de>
3021L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3022T: git git://git.alsa-project.org/alsa-kernel.git
3023S: Maintained
3024F: sound/usb/misc/ua101.c
3025
Matt Fleming1f7df952012-10-03 10:04:02 +01003026EXTENSIBLE FIRMWARE INTERFACE (EFI)
3027M: Matt Fleming <matt.fleming@intel.com>
3028L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003029T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003030S: Maintained
3031F: Documentation/x86/efi-stub.txt
3032F: arch/ia64/kernel/efi.c
3033F: arch/x86/boot/compressed/eboot.[ch]
3034F: arch/x86/include/asm/efi.h
3035F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003036F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003037F: include/linux/efi*.h
3038
Matt Flemingd68772b2013-02-08 16:27:24 +00003039EFI VARIABLE FILESYSTEM
3040M: Matthew Garrett <matthew.garrett@nebula.com>
3041M: Jeremy Kerr <jk@ozlabs.org>
3042M: Matt Fleming <matt.fleming@intel.com>
3043T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3044L: linux-efi@vger.kernel.org
3045S: Maintained
3046F: fs/efivarfs/
3047
Peter Jones85a00d92010-09-22 13:05:04 -07003048EFIFB FRAMEBUFFER DRIVER
3049L: linux-fbdev@vger.kernel.org
3050M: Peter Jones <pjones@redhat.com>
3051S: Maintained
3052F: drivers/video/efifb.c
3053
Josh Triplett0bee8d22006-07-30 03:03:58 -07003054EFS FILESYSTEM
3055W: http://aeschi.ch.eu.org/efs/
3056S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003057F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003058
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003059EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003060M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3061M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003062L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003063S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003064F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003065
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003066EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003067M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003068L: netdev@vger.kernel.org
3069S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003070F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003071
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003072EM28XX VIDEO4LINUX DRIVER
3073M: Mauro Carvalho Chehab <mchehab@redhat.com>
3074L: linux-media@vger.kernel.org
3075W: http://linuxtv.org
3076T: git git://linuxtv.org/media_tree.git
3077S: Maintained
3078F: drivers/media/usb/em28xx/
3079
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003080EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003081M: Paul Gortmaker <paul.gortmaker@windriver.com>
3082M: Matt Mackall <mpm@selenic.com>
3083M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003084L: linux-embedded@vger.kernel.org
3085S: Maintained
3086
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003087EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003088M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003089L: linux-scsi@vger.kernel.org
3090W: http://sourceforge.net/projects/lpfcxxxx
3091S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003092F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003093
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003094ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003095M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003096S: Maintained
3097F: drivers/misc/cb710/
3098F: drivers/mmc/host/cb710-mmc.*
3099F: include/linux/cb710.h
3100
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003101ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3102M: Maxim Levitsky <maximlevitsky@gmail.com>
3103S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003104F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003105
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003106EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003107M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003108S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003109T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003110F: drivers/video/s1d13xxxfb.c
3111F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003112
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003114M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003115L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003116L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003117W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003119F: include/linux/netfilter_bridge/
3120F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003123M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003124L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003126F: Documentation/filesystems/ext2.txt
3127F: fs/ext2/
3128F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
3130EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003131M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003132M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003133M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003134L: linux-ext4@vger.kernel.org
3135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003136F: Documentation/filesystems/ext3.txt
3137F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003138
3139EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003140M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003141M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003142L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003143W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003144Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003146F: Documentation/filesystems/ext4.txt
3147F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Mimi Zoharc5532b02011-08-17 18:52:24 -04003149Extended Verification Module (EVM)
3150M: Mimi Zohar <zohar@us.ibm.com>
3151S: Supported
3152F: security/integrity/evm/
3153
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003154EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3155M: MyungJoo Ham <myungjoo.ham@samsung.com>
3156M: Chanwoo Choi <cw00.choi@samsung.com>
3157L: linux-kernel@vger.kernel.org
3158S: Maintained
3159F: drivers/extcon/
3160F: Documentation/extcon/
3161
Jingoo Han0a799512012-02-06 11:30:39 +09003162EXYNOS DP DRIVER
3163M: Jingoo Han <jg1.han@samsung.com>
3164L: linux-fbdev@vger.kernel.org
3165S: Maintained
3166F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003167F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003168
Donghwa Lee33ad3912012-03-06 11:44:58 +09003169EXYNOS MIPI DISPLAY DRIVERS
3170M: Inki Dae <inki.dae@samsung.com>
3171M: Donghwa Lee <dh09.lee@samsung.com>
3172M: Kyungmin Park <kyungmin.park@samsung.com>
3173L: linux-fbdev@vger.kernel.org
3174S: Maintained
3175F: drivers/video/exynos/exynos_mipi*
3176F: include/video/exynos_mipi*
3177
Jean Delvaree53004e2006-01-09 23:26:14 +01003178F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003179M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003180L: lm-sensors@lm-sensors.org
3181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003182F: Documentation/hwmon/f71805f
3183F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003184
Michael Büscheea977e2012-04-02 12:14:32 -03003185FC0011 TUNER DRIVER
3186M: Michael Buesch <m@bues.ch>
3187L: linux-media@vger.kernel.org
3188S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003189F: drivers/media/tuners/fc0011.h
3190F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003191
Antti Palosaari91952bc2012-10-01 12:28:46 -03003192FC2580 MEDIA DRIVER
3193M: Antti Palosaari <crope@iki.fi>
3194L: linux-media@vger.kernel.org
3195W: http://linuxtv.org/
3196W: http://palosaari.fi/linux/
3197Q: http://patchwork.linuxtv.org/project/linux-media/list/
3198T: git git://linuxtv.org/anttip/media_tree.git
3199S: Maintained
3200F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Eric Paris88b2dbd2010-08-18 12:25:50 -04003202FANOTIFY
3203M: Eric Paris <eparis@redhat.com>
3204S: Maintained
3205F: fs/notify/fanotify/
3206F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003207F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003210M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211W: http://www.farsite.co.uk/
3212S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003213F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Akinobu Mitac5408b82007-04-23 14:41:20 -07003215FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003216M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003218F: Documentation/fault-injection/
3219F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003220
Robert Lovecae727d2010-02-16 12:16:00 -08003221FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3222M: Robert Love <robert.w.love@intel.com>
3223L: devel@open-fcoe.org
3224W: www.Open-FCoE.org
3225S: Supported
3226F: drivers/scsi/libfc/
3227F: drivers/scsi/fcoe/
3228F: include/scsi/fc/
3229F: include/scsi/libfc.h
3230F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003231F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003232
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003233FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003235L: linux-fsdevel@vger.kernel.org
3236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003237F: include/linux/fcntl.h
3238F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003239F: include/uapi/linux/fcntl.h
3240F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003241F: fs/fcntl.c
3242F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003243
3244FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003245M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003246L: linux-fsdevel@vger.kernel.org
3247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003248F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003249
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003250FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003251M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003252L: lm-sensors@lm-sensors.org
3253S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003254F: drivers/hwmon/f75375s.c
3255F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003256
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003257FIREWIRE AUDIO DRIVERS
3258M: Clemens Ladisch <clemens@ladisch.de>
3259L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3260T: git git://git.alsa-project.org/alsa-kernel.git
3261S: Maintained
3262F: sound/firewire/
3263
Stefan Richtereb86ec52012-11-03 09:25:20 +01003264FIREWIRE MEDIA DRIVERS (firedtv)
3265M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3266L: linux-media@vger.kernel.org
3267L: linux1394-devel@lists.sourceforge.net
3268T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3269S: Maintained
3270F: drivers/media/firewire/
3271
Chris Boota511ce32012-04-14 17:50:35 -07003272FIREWIRE SBP-2 TARGET
3273M: Chris Boot <bootc@bootc.net>
3274L: linux-scsi@vger.kernel.org
3275L: target-devel@vger.kernel.org
3276L: linux1394-devel@lists.sourceforge.net
3277T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3278S: Maintained
3279F: drivers/target/sbp/
3280
Joe Perches7d2c86b2009-04-07 20:59:01 -07003281FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003282M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003283L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003284W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003285T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003287F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003288F: include/linux/firewire.h
3289F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003290F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003291
3292FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003293M: Ming Lei <ming.lei@canonical.com>
3294L: linux-kernel@vger.kernel.org
3295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003296F: Documentation/firmware_class/
3297F: drivers/base/firmware*.c
3298F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003299
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003300FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3301M: Joshua Morris <josh.h.morris@us.ibm.com>
3302M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3303S: Maintained
3304F: drivers/block/rsxx/
3305
Jiri Kosina8206f662012-05-18 13:52:29 +02003306FLOPPY DRIVER
3307M: Jiri Kosina <jkosina@suse.cz>
3308T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3309S: Odd fixes
3310F: drivers/block/floppy.c
3311
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003312FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003313M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003314W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003316F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003317
3318FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003319L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003320S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003321F: drivers/net/wan/dlci.c
3322F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003323
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003325M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003326L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003328Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003329T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003331F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003332F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003333F: drivers/video/
3334F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003335F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003336F: include/uapi/video/
3337F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Timur Tabia57c1882012-10-16 17:33:42 -05003339FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003340M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003341L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003342S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003343F: drivers/video/fsl-diu-fb.*
3344
Zhang Wei173acc72008-03-01 07:42:48 -07003345FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: Li Yang <leoli@freescale.com>
3347M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003348L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003350F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003351
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003352FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003353M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003354L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003355L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003357F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003358
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003359FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003360M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003361L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003362L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003363S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003364F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003365F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003366
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003367FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003368M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3369M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003370L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003371L: netdev@vger.kernel.org
3372S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003373F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003374F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003375
Timur Tabid9e9d822008-04-24 08:45:26 +10003376FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003377L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003378S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003379F: arch/powerpc/sysdev/qe_lib/
3380F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003381
Joe Perchesb55ef9292009-10-26 16:49:46 -07003382FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003383M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003384L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003385L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003386S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003387F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003388
Li Yangbeaf53b2007-05-25 13:54:02 +08003389FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003390M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003391L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003392L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003393S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003394F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003395
Timur Tabid9e9d822008-04-24 08:45:26 +10003396FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003397M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003398L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003399S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003400F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003401
3402FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003403M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003404L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003405L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003406S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003407F: sound/soc/fsl/fsl*
3408F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003409
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003411M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003414F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
Pavel Machek71038f52009-01-15 13:51:02 -08003416FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003417M: Pavel Machek <pavel@ucw.cz>
3418M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003419L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003421F: Documentation/power/freezing-of-tasks.txt
3422F: include/linux/freezer.h
3423F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003424
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003425FRONTSWAP API
3426M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3427L: linux-kernel@vger.kernel.org
3428S: Maintained
3429F: mm/frontswap.c
3430F: include/linux/frontswap.h
3431
David Howellsa5432f52009-04-20 15:46:45 +01003432FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003433M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003434L: linux-cachefs@redhat.com
3435S: Supported
3436F: Documentation/filesystems/caching/
3437F: fs/fscache/
3438F: include/linux/fscache*.h
3439
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003440F2FS FILE SYSTEM
3441M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3442L: linux-f2fs-devel@lists.sourceforge.net
3443W: http://en.wikipedia.org/wiki/F2FS
3444T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3445S: Maintained
3446F: Documentation/filesystems/f2fs.txt
3447F: fs/f2fs/
3448F: include/linux/f2fs_fs.h
3449
David Howells5ab7ffe2007-04-10 15:10:45 +01003450FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003451M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003453F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
Jonathan Woithe20b93732008-06-11 10:14:56 +09303455FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303456M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003457L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003459F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303460
Heungjun Kim4da621b2011-11-11 08:05:33 -03003461FUJITSU M-5MO LS CAMERA ISP DRIVER
3462M: Kyungmin Park <kyungmin.park@samsung.com>
3463M: Heungjun Kim <riverful.kim@samsung.com>
3464L: linux-media@vger.kernel.org
3465S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003466F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003467F: include/media/m5mols.h
3468
Robert Gerlach2d24c492012-01-18 14:26:22 +01003469FUJITSU TABLET EXTRAS
3470M: Robert Gerlach <khnz@gmx.de>
3471L: platform-driver-x86@vger.kernel.org
3472S: Maintained
3473F: drivers/platform/x86/fujitsu-tablet.c
3474
Miklos Szeredi04578f12005-09-09 13:10:22 -07003475FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003477L: fuse-devel@lists.sourceforge.net
3478W: http://fuse.sourceforge.net/
3479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003480F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003481F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003484M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003486S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003487F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
3489GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003490M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491L: linux-scsi@vger.kernel.org
3492W: http://www.icp-vortex.com/
3493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003494F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003496GEMTEK FM RADIO RECEIVER DRIVER
3497M: Hans Verkuil <hverkuil@xs4all.nl>
3498L: linux-media@vger.kernel.org
3499T: git git://linuxtv.org/media_tree.git
3500W: http://linuxtv.org
3501S: Maintained
3502F: drivers/media/radio/radio-gemtek*
3503
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003504GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003505M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003507F: drivers/i2c/busses/i2c-gpio.c
3508F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003509
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003510GENERIC GPIO I2C MULTIPLEXER DRIVER
3511M: Peter Korsgaard <peter.korsgaard@barco.com>
3512L: linux-i2c@vger.kernel.org
3513S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003514F: drivers/i2c/muxes/i2c-mux-gpio.c
3515F: include/linux/i2c-mux-gpio.h
3516F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003517
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003518GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003519M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003522F: drivers/net/wan/c101.c
3523F: drivers/net/wan/hd6457*
3524F: drivers/net/wan/hdlc*
3525F: drivers/net/wan/n2.c
3526F: drivers/net/wan/pc300too.c
3527F: drivers/net/wan/pci200syn.c
3528F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003530GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003531M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003532L: linux-arch@vger.kernel.org
3533T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3534S: Maintained
3535F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003536F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003537
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003538GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003539M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003540L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003541S: Supported
3542F: drivers/uio/uio_pci_generic.c
3543
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003544GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003545M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003546L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003547W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003548T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3549T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003550S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003551F: Documentation/filesystems/gfs2*.txt
3552F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003553F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003554
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003555GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003556M: Hansjoerg Lipp <hjlipp@web.de>
3557M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003558L: gigaset307x-common@lists.sourceforge.net
3559W: http://gigaset307x.sourceforge.net/
3560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003561F: Documentation/isdn/README.gigaset
3562F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003563F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003564
Grant Likelya0dc00b2011-02-12 01:48:14 -07003565GPIO SUBSYSTEM
Grant Likely19624232013-04-08 11:51:42 +01003566M: Grant Likely <grant.likely@linaro.org>
Linus Walleije4651a92012-08-06 09:52:52 +02003567M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003568S: Maintained
3569T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003570F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003571F: drivers/gpio/
3572F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003573F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003574
Harry Wei71a6d0a2011-05-11 15:13:33 -07003575GRE DEMULTIPLEXER DRIVER
3576M: Dmitry Kozlov <xeb@mail.ru>
3577L: netdev@vger.kernel.org
3578S: Maintained
3579F: net/ipv4/gre.c
3580F: include/net/gre.h
3581
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003582GRETH 10/100/1G Ethernet MAC device driver
3583M: Kristoffer Glembo <kristoffer@gaisler.com>
3584L: netdev@vger.kernel.org
3585S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003586F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003587
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003588GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003589M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003590L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003591T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003592S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003593F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003594
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003595GSPCA GL860 SUBDRIVER
3596M: Olivier Lorin <o.lorin@laposte.net>
3597L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003598T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003599S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003600F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003601
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003602GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003603M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003604L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003605T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003606S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003607F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003608
3609GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003610M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003611L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003612T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003613S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003614F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003615
Brian Johnson261982f2009-07-19 15:58:56 -03003616GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003617M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003618L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003619T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003620S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003621F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003622
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003623GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003624M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003625L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003626T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003627S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003628F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003629
3630GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003631M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003632L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003633T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003634S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003635F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003636
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003637STK1160 USB VIDEO CAPTURE DRIVER
3638M: Ezequiel Garcia <elezegarcia@gmail.com>
3639L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003640T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003641S: Maintained
3642F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003643
Harry Wei71a6d0a2011-05-11 15:13:33 -07003644HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3645M: Frank Seidel <frank@f-seidel.de>
3646L: platform-driver-x86@vger.kernel.org
3647W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3648S: Maintained
3649F: drivers/platform/x86/hdaps.c
3650
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003651HDPVR USB VIDEO ENCODER DRIVER
3652M: Hans Verkuil <hverkuil@xs4all.nl>
3653L: linux-media@vger.kernel.org
3654T: git git://linuxtv.org/media_tree.git
3655W: http://linuxtv.org
3656S: Odd Fixes
3657F: drivers/media/usb/hdpvr
3658
Harry Wei71a6d0a2011-05-11 15:13:33 -07003659HWPOISON MEMORY FAILURE HANDLING
3660M: Andi Kleen <andi@firstfloor.org>
3661L: linux-mm@kvack.org
3662T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3663S: Maintained
3664F: mm/memory-failure.c
3665F: mm/hwpoison-inject.c
3666
3667HYPERVISOR VIRTUAL CONSOLE DRIVER
3668L: linuxppc-dev@lists.ozlabs.org
3669S: Odd Fixes
3670F: drivers/tty/hvc/
3671
Michael Buesch844dd052006-06-26 00:24:59 -07003672HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003673M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003674M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003675L: lm-sensors@lm-sensors.org
3676W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003677T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003678T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003679S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003680F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003681F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003682F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003683
3684HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003685M: Matt Mackall <mpm@selenic.com>
3686M: Herbert Xu <herbert@gondor.apana.org.au>
3687S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003688F: Documentation/hw_random.txt
3689F: drivers/char/hw_random/
3690F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003691
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003692HARDWARE SPINLOCK CORE
3693M: Ohad Ben-Cohen <ohad@wizery.com>
3694S: Maintained
3695F: Documentation/hwspinlock.txt
3696F: drivers/hwspinlock/hwspinlock_*
3697F: include/linux/hwspinlock.h
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003700L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003702F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
Antti Palosaari91952bc2012-10-01 12:28:46 -03003704HD29L2 MEDIA DRIVER
3705M: Antti Palosaari <crope@iki.fi>
3706L: linux-media@vger.kernel.org
3707W: http://linuxtv.org/
3708W: http://palosaari.fi/linux/
3709Q: http://patchwork.linuxtv.org/project/linux-media/list/
3710T: git git://linuxtv.org/anttip/media_tree.git
3711S: Maintained
3712F: drivers/media/dvb-frontends/hd29l2*
3713
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003714HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003715M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003716L: iss_storagedev@hp.com
3717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003718F: Documentation/blockdev/cpqarray.txt
3719F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003720
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003721HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003722M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003723L: iss_storagedev@hp.com
3724S: Supported
3725F: Documentation/scsi/hpsa.txt
3726F: drivers/scsi/hpsa*.[ch]
3727F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003728F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003729
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003730HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003731M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003732L: iss_storagedev@hp.com
3733S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003734F: Documentation/blockdev/cciss.txt
3735F: drivers/block/cciss*
3736F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003737F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003738
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003740L: linux-fsdevel@vger.kernel.org
3741S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003742F: Documentation/filesystems/hfs.txt
3743F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
3745HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747L: linux-nvidia@lists.surfsouth.com
3748W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003750F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003752HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003753M: Pavel Machek <pavel@ucw.cz>
3754M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003755L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003756S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003757F: arch/x86/power/
3758F: drivers/base/power/
3759F: kernel/power/
3760F: include/linux/suspend.h
3761F: include/linux/freezer.h
3762F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003763F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003764
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003765HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003766M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003767L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003768T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003770F: drivers/hid/
3771F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003772F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003773
Ingo Molnar38bed542007-02-22 09:09:34 +01003774HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003775M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003776T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003778F: Documentation/timers/
3779F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003780F: kernel/time/clockevents.c
3781F: kernel/time/tick*.*
3782F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003783F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003784F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003788S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003789F: drivers/net/hamradio/dmascc.c
3790F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003792HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003794W: http://www.highpoint-tech.com
3795S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003796F: Documentation/scsi/hptiop.txt
3797F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801L: linux-hippi@sunsite.dk
3802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003803F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003804F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003805F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003806F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Jouni Malinenff1d2762005-05-12 22:54:16 -04003808HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003809M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003810L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003811L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003812W: http://hostap.epitest.fi/
3813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003814F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003815
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003816HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003817L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003818S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003819F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003821HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003822M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003823S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003824F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003825
Joe Perches7d2c86b2009-04-07 20:59:01 -07003826HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003827M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003829F: Documentation/timers/hpet.txt
3830F: drivers/char/hpet.c
3831F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003832F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003833
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003834HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003835M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003837F: arch/x86/kernel/hpet.c
3838F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003839
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003841M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003844F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
Joe Perches7d2c86b2009-04-07 20:59:01 -07003846HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003847M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003848W: http://www.pharscape.org
3849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003850F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003851
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003852HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003853M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003854L: linux-input@vger.kernel.org
3855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003856F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003857
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003859M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003863Hyper-V CORE AND DRIVERS
3864M: K. Y. Srinivasan <kys@microsoft.com>
3865M: Haiyang Zhang <haiyangz@microsoft.com>
3866L: devel@linuxdriverproject.org
3867S: Maintained
3868F: drivers/hv/
3869F: drivers/hid/hid-hyperv.c
3870F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003871
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003872I2C OVER PARALLEL PORT
3873M: Jean Delvare <khali@linux-fr.org>
3874L: linux-i2c@vger.kernel.org
3875S: Maintained
3876F: Documentation/i2c/busses/i2c-parport
3877F: Documentation/i2c/busses/i2c-parport-light
3878F: drivers/i2c/busses/i2c-parport.c
3879F: drivers/i2c/busses/i2c-parport-light.c
3880
3881I2C/SMBUS CONTROLLER DRIVERS FOR PC
3882M: Jean Delvare <khali@linux-fr.org>
3883L: linux-i2c@vger.kernel.org
3884S: Maintained
3885F: Documentation/i2c/busses/i2c-ali1535
3886F: Documentation/i2c/busses/i2c-ali1563
3887F: Documentation/i2c/busses/i2c-ali15x3
3888F: Documentation/i2c/busses/i2c-amd756
3889F: Documentation/i2c/busses/i2c-amd8111
3890F: Documentation/i2c/busses/i2c-i801
3891F: Documentation/i2c/busses/i2c-nforce2
3892F: Documentation/i2c/busses/i2c-piix4
3893F: Documentation/i2c/busses/i2c-sis5595
3894F: Documentation/i2c/busses/i2c-sis630
3895F: Documentation/i2c/busses/i2c-sis96x
3896F: Documentation/i2c/busses/i2c-via
3897F: Documentation/i2c/busses/i2c-viapro
3898F: drivers/i2c/busses/i2c-ali1535.c
3899F: drivers/i2c/busses/i2c-ali1563.c
3900F: drivers/i2c/busses/i2c-ali15x3.c
3901F: drivers/i2c/busses/i2c-amd756.c
3902F: drivers/i2c/busses/i2c-amd756-s4882.c
3903F: drivers/i2c/busses/i2c-amd8111.c
3904F: drivers/i2c/busses/i2c-i801.c
3905F: drivers/i2c/busses/i2c-isch.c
3906F: drivers/i2c/busses/i2c-nforce2.c
3907F: drivers/i2c/busses/i2c-nforce2-s4985.c
3908F: drivers/i2c/busses/i2c-piix4.c
3909F: drivers/i2c/busses/i2c-sis5595.c
3910F: drivers/i2c/busses/i2c-sis630.c
3911F: drivers/i2c/busses/i2c-sis96x.c
3912F: drivers/i2c/busses/i2c-via.c
3913F: drivers/i2c/busses/i2c-viapro.c
3914
Neil Hormancb7f07a2013-02-10 11:59:03 -05003915I2C/SMBUS ISMT DRIVER
3916M: Seth Heasley <seth.heasley@intel.com>
3917M: Neil Horman <nhorman@tuxdriver.com>
3918L: linux-i2c@vger.kernel.org
3919F: drivers/i2c/busses/i2c-ismt.c
3920F: Documentation/i2c/busses/i2c-ismt
3921
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003922I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003923M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003924L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003925S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003926F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003927
Jean Delvare5b543962005-08-15 19:51:02 +02003928I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003929M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003930L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003931W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003932T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003934F: Documentation/i2c/
3935F: drivers/i2c/
3936F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003937F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003938F: include/uapi/linux/i2c.h
3939F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003941I2C-TAOS-EVM DRIVER
3942M: Jean Delvare <khali@linux-fr.org>
3943L: linux-i2c@vger.kernel.org
3944S: Maintained
3945F: Documentation/i2c/busses/i2c-taos-evm
3946F: drivers/i2c/busses/i2c-taos-evm.c
3947
Till Harbaume8c76ee2007-05-01 23:26:35 +02003948I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003950L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003951W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003953F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003954
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003956M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003958F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
3960i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003961M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003962T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963S: Maintained
3964
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003966M: Tony Luck <tony.luck@intel.com>
3967M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003969T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003971F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
Kent Yoder956c2032012-09-07 04:17:01 +08003973IBM Power in-Nest Crypto Acceleration
3974M: Kent Yoder <key@linux.vnet.ibm.com>
3975L: linux-crypto@vger.kernel.org
3976S: Supported
3977F: drivers/crypto/nx/
3978
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003979IBM Power 842 compression accelerator
3980M: Robert Jennings <rcj@linux.vnet.ibm.com>
3981S: Supported
3982F: drivers/crypto/nx/nx-842.c
3983F: include/linux/nx842.h
3984
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003986M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003988F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
Santiago Leon9d348af2010-09-03 18:29:53 +00003990IBM Power Virtual Ethernet Device Driver
3991M: Santiago Leon <santil@linux.vnet.ibm.com>
3992L: netdev@vger.kernel.org
3993S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003994F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003995
Robert Jennings4b7652c2012-07-31 12:34:36 -05003996IBM Power Virtual SCSI/FC Device Drivers
3997M: Robert Jennings <rcj@linux.vnet.ibm.com>
3998L: linux-scsi@vger.kernel.org
3999S: Supported
4000F: drivers/scsi/ibmvscsi/
4001X: drivers/scsi/ibmvscsi/ibmvstgt.c
4002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003IBM ServeRAID RAID DRIVER
4004P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07004005M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004007S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004008F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004010ICH LPC AND GPIO DRIVER
4011M: Peter Tyser <ptyser@xes-inc.com>
4012S: Maintained
4013F: drivers/mfd/lpc_ich.c
4014F: drivers/gpio/gpio-ich.c
4015
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004016IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004017M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004019Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004020T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004022F: Documentation/ide/
4023F: drivers/ide/
4024F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Ike Panhc6cb8c132011-08-25 22:28:45 +08004026IDEAPAD LAPTOP EXTRAS DRIVER
4027M: Ike Panhc <ike.pan@canonical.com>
4028L: platform-driver-x86@vger.kernel.org
4029W: http://launchpad.net/ideapad-laptop
4030S: Maintained
4031F: drivers/platform/x86/ideapad-laptop.c
4032
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004033IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004034M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004035L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004037F: Documentation/cdrom/ide-cd
4038F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Andy Henroid27471fd2008-10-09 11:45:22 -07004040IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004041M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004042L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004044F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004045
Sergey Lapin02cf2282009-06-08 12:18:50 +00004046IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004047M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004048M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004049L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004050W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004051T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004052S: Maintained
4053F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004054F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004055F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004056
Sean Young40ad4a32012-11-19 10:32:53 -03004057IGUANAWORKS USB IR TRANSCEIVER
4058M: Sean Young <sean@mess.org>
4059L: linux-media@vger.kernel.org
4060S: Maintained
4061F: drivers/media/rc/iguanair.c
4062
Ameya Palande9545f862012-01-10 09:00:58 -08004063IIO SUBSYSTEM AND DRIVERS
4064M: Jonathan Cameron <jic23@cam.ac.uk>
4065L: linux-iio@vger.kernel.org
4066S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004067F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004068F: drivers/staging/iio/
4069
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004070IKANOS/ADI EAGLE ADSL USB DRIVER
4071M: Matthieu Castet <castet.matthieu@free.fr>
4072M: Stanislaw Gruszka <stf_xl@wp.pl>
4073S: Maintained
4074F: drivers/usb/atm/ueagle-atm.c
4075
Guenter Roecke89ab512013-03-08 08:13:09 -08004076INA209 HARDWARE MONITOR DRIVER
4077M: Guenter Roeck <linux@roeck-us.net>
4078L: lm-sensors@lm-sensors.org
4079S: Maintained
4080F: Documentation/hwmon/ina209
4081F: Documentation/devicetree/bindings/i2c/ina209.txt
4082F: drivers/hwmon/ina209.c
4083
4084INA2XX HARDWARE MONITOR DRIVER
4085M: Guenter Roeck <linux@roeck-us.net>
4086L: lm-sensors@lm-sensors.org
4087S: Maintained
4088F: Documentation/hwmon/ina2xx
4089F: drivers/hwmon/ina2xx.c
4090F: include/linux/platform_data/ina2xx.h
4091
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004092INDUSTRY PACK SUBSYSTEM (IPACK)
4093M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4094M: Jens Taprogge <jens.taprogge@taprogge.org>
4095M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4096L: industrypack-devel@lists.sourceforge.net
4097W: http://industrypack.sourceforge.net
4098S: Maintained
4099F: drivers/ipack/
4100
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004101INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004102M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004104F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004107L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004108S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004109F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
4111INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004112M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: Sean Hefty <sean.hefty@intel.com>
4114M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004115L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004116W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004117Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004118T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004120F: Documentation/infiniband/
4121F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004122F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123
Robert Lovec9f04f52005-07-15 12:21:07 -04004124INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004125M: John McCutchan <john@johnmccutchan.com>
4126M: Robert Love <rlove@rlove.org>
4127M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004129F: Documentation/filesystems/inotify.txt
4130F: fs/notify/inotify/
4131F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004132F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004133
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004134INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004135M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4136M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004137L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004138Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004139T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004141F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004142F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004143F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004144F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004145
Henrik Rydberg3267a872010-06-24 19:10:40 -07004146INPUT MULTITOUCH (MT) PROTOCOL
4147M: Henrik Rydberg <rydberg@euromail.se>
4148L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004149T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004150S: Maintained
4151F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004152F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004153K: \b(ABS|SYN)_MT_
4154
Dave Jiang4ac13e12011-07-29 17:16:55 -07004155INTEL C600 SERIES SAS CONTROLLER DRIVER
4156M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004157M: Lukasz Dorau <lukasz.dorau@intel.com>
4158M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004159M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004160L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004161T: git git://git.code.sf.net/p/intel-sas/isci
4162S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004163F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004164
Len Brown26717172010-03-08 14:07:30 -05004165INTEL IDLE DRIVER
4166M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004167L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004168T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004169S: Supported
4170F: drivers/idle/intel_idle.c
4171
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004172INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004173M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004174L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004176F: Documentation/fb/intelfb.txt
4177F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004178
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004181L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004183F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304185INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004187L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304188W: http://www.lesswatts.org/projects/acpi/
4189S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004190F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004193M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004195F: arch/x86/kernel/microcode_core.c
4196F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004198INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004199M: Dan Williams <djbw@fb.com>
4200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004201F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004202
David Woodhouse6c8909b2008-10-18 16:12:17 +01004203INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004204M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004205L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004206T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004207S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004208F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004209F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004210
Dan Williamsb3e5f262007-08-07 10:26:35 -07004211INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004212M: Dan Williams <djbw@fb.com>
4213S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004214F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004215
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004216INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004217M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004219F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4220F: arch/arm/mach-ixp4xx/include/mach/npe.h
4221F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4222F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004223F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004224F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004225
Michael Buesch844dd052006-06-26 00:24:59 -07004226INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004227M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004229F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004230
Jeff Kirsher0d164402010-10-05 01:15:17 +00004231INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004232M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4233M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4234M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004235M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4236M: Don Skidmore <donald.c.skidmore@intel.com>
4237M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004238M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004239M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004240M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004241M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004242L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004243W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004244W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004245T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4246T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004248F: Documentation/networking/e100.txt
4249F: Documentation/networking/e1000.txt
4250F: Documentation/networking/e1000e.txt
4251F: Documentation/networking/igb.txt
4252F: Documentation/networking/igbvf.txt
4253F: Documentation/networking/ixgb.txt
4254F: Documentation/networking/ixgbe.txt
4255F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004256F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004258INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4259M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004260L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004262F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004263F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004264F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004265
Shane Wang4bd96a72010-03-10 14:36:10 +08004266INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004267M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4268M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004269M: Shane Wang <shane.wang@intel.com>
4270L: tboot-devel@lists.sourceforge.net
4271W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004272T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004273S: Supported
4274F: Documentation/intel_txt.txt
4275F: include/linux/tboot.h
4276F: arch/x86/kernel/tboot.c
4277
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004278INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004279M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004280M: linux-wimax@intel.com
4281L: wimax@linuxwimax.org
4282S: Supported
4283W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004284F: Documentation/wimax/README.i2400m
4285F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004286F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004287
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004288INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4289M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004290L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004291S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004292F: drivers/net/wireless/iwlegacy/
4293
Zhu Yib481de92007-09-25 17:54:57 -07004294INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004295M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004296M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004297M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004298L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004299W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004300T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004301S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004302F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004303
Tomas Winklerde8fe022012-05-09 16:39:02 +03004304INTEL MANAGEMENT ENGINE (mei)
4305M: Tomas Winkler <tomas.winkler@intel.com>
4306L: linux-kernel@vger.kernel.org
4307S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004308F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004309F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004310F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004311
Ralf Baechlecb109a02007-08-30 23:56:30 -07004312IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004313M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314L: linux-mips@linux-mips.org
4315S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004316F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Ralf Baechlecb109a02007-08-30 23:56:30 -07004318IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004319M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004320L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004321S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004322F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004323
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004324IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004325M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004327F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Francois Romieu1202d6f2007-09-17 17:13:55 -07004329IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004330M: Francois Romieu <romieu@fr.zoreil.com>
4331M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004332L: netdev@vger.kernel.org
4333S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004334F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004335
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004336IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004337M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004338L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004340F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004341
Corey Minyard4409ebe2006-04-20 02:43:12 -07004342IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004343M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004344L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004345W: http://openipmi.sourceforge.net/
4346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004347F: Documentation/IPMI.txt
4348F: drivers/char/ipmi/
4349F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004350F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004351
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004352IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004354L: linux-scsi@vger.kernel.org
4355W: http://www.adaptec.com/
4356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004358
4359IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004360M: Wensong Zhang <wensong@linux-vs.org>
4361M: Simon Horman <horms@verge.net.au>
4362M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004363L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004364L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004366F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004367F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004368F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004369F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
Randy Dunlape7839f22008-10-12 16:11:45 -07004371IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004372M: Jiri Kosina <jkosina@suse.cz>
4373M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004374S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004375F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004376
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004377IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004379L: netdev@vger.kernel.org
4380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004381F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004382F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004383F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004384
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004386M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004387L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004388L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004390S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004391T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004392F: Documentation/networking/irda.txt
4393F: drivers/net/irda/
4394F: include/net/irda/
4395F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004397IRQ SUBSYSTEM
4398M: Thomas Gleixner <tglx@linutronix.de>
4399S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004400T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004401F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004402F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004403
Grant Likely7ab3a832012-02-14 14:06:47 -07004404IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4405M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely19624232013-04-08 11:51:42 +01004406M: Grant Likely <grant.likely@linaro.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004407T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4408S: Maintained
4409F: Documentation/IRQ-domain.txt
4410F: include/linux/irqdomain.h
4411F: kernel/irq/irqdomain.c
4412
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004413ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004414M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004416F: Documentation/isapnp.txt
4417F: drivers/pnp/isapnp/
4418F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004419
Hans Verkuild39b8422012-11-23 07:07:02 -03004420ISA RADIO MODULE
4421M: Hans Verkuil <hverkuil@xs4all.nl>
4422L: linux-media@vger.kernel.org
4423T: git git://linuxtv.org/media_tree.git
4424W: http://linuxtv.org
4425S: Maintained
4426F: drivers/media/radio/radio-isa*
4427
Harry Wei71a6d0a2011-05-11 15:13:33 -07004428iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4429M: Peter Jones <pjones@redhat.com>
4430M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4431S: Maintained
4432F: drivers/firmware/iscsi_ibft*
4433
Mike Christie14816b1e2007-11-28 16:22:06 -08004434ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004436L: open-iscsi@googlegroups.com
4437W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004438T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004440F: drivers/scsi/*iscsi*
4441F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004442
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004445L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004446L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004448T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004450F: Documentation/isdn/
4451F: drivers/isdn/
4452F: include/linux/isdn.h
4453F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004454F: include/uapi/linux/isdn.h
4455F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004458M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004459L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460W: http://www.melware.de
4461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004462F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Jean Delvared6248702010-03-05 22:17:20 +01004464IT87 HARDWARE MONITORING DRIVER
4465M: Jean Delvare <khali@linux-fr.org>
4466L: lm-sensors@lm-sensors.org
4467S: Maintained
4468F: Documentation/hwmon/it87
4469F: drivers/hwmon/it87.c
4470
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004471IT913X MEDIA DRIVER
4472M: Malcolm Priestley <tvboxspy@gmail.com>
4473L: linux-media@vger.kernel.org
4474W: http://linuxtv.org/
4475Q: http://patchwork.linuxtv.org/project/linux-media/list/
4476S: Maintained
4477F: drivers/media/usb/dvb-usb-v2/it913x*
4478
4479IT913X FE MEDIA DRIVER
4480M: Malcolm Priestley <tvboxspy@gmail.com>
4481L: linux-media@vger.kernel.org
4482W: http://linuxtv.org/
4483Q: http://patchwork.linuxtv.org/project/linux-media/list/
4484S: Maintained
4485F: drivers/media/dvb-frontends/it913x-fe*
4486
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004487IT913X MEDIA DRIVER
4488M: Antti Palosaari <crope@iki.fi>
4489L: linux-media@vger.kernel.org
4490W: http://linuxtv.org/
4491W: http://palosaari.fi/linux/
4492Q: http://patchwork.linuxtv.org/project/linux-media/list/
4493T: git git://linuxtv.org/anttip/media_tree.git
4494S: Maintained
4495F: drivers/media/tuners/it913x*
4496
Hans Verkuil91821ff2007-12-02 09:35:33 -03004497IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004498M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004499L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004500L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004501T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004502W: http://www.ivtvdriver.org
4503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004504F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004505F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004506F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004507
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004508IX2505V MEDIA DRIVER
4509M: Malcolm Priestley <tvboxspy@gmail.com>
4510L: linux-media@vger.kernel.org
4511W: http://linuxtv.org/
4512Q: http://patchwork.linuxtv.org/project/linux-media/list/
4513S: Maintained
4514F: drivers/media/dvb-frontends/ix2505v*
4515
Guenter Roeck4453d732010-08-09 17:21:08 -07004516JC42.4 TEMPERATURE SENSOR DRIVER
4517M: Guenter Roeck <linux@roeck-us.net>
4518L: lm-sensors@lm-sensors.org
4519S: Maintained
4520F: drivers/hwmon/jc42.c
4521F: Documentation/hwmon/jc42
4522
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004523JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004524M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004525L: jfs-discussion@lists.sourceforge.net
4526W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004527T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004529F: Documentation/filesystems/jfs.txt
4530F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004531
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004532JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004533M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004534L: netdev@vger.kernel.org
4535S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004536F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004537
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004539M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004540L: linux-mtd@lists.infradead.org
4541W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004543F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004544F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
Josh Triplettde456d32006-07-30 03:04:00 -07004546JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004547M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004548M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004549L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004550S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004551F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004552F: include/linux/jbd.h
4553
4554JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4555M: "Theodore Ts'o" <tytso@mit.edu>
4556L: linux-ext4@vger.kernel.org
4557S: Maintained
4558F: fs/jbd2/
4559F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004560
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004561JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004562M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004563L: linux-serial@vger.kernel.org
4564S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004565F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004566
Clemens Ladischaf399172011-01-10 16:32:54 +01004567K10TEMP HARDWARE MONITORING DRIVER
4568M: Clemens Ladisch <clemens@ladisch.de>
4569L: lm-sensors@lm-sensors.org
4570S: Maintained
4571F: Documentation/hwmon/k10temp
4572F: drivers/hwmon/k10temp.c
4573
Rudolf Marek4660cb32006-10-08 22:01:26 +02004574K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004575M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004576L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: Documentation/hwmon/k8temp
4579F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
4581KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004582M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004583L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004584S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004585F: Documentation/kbuild/kconfig-language.txt
4586F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
Vivek Goyalea6c2082006-05-20 14:59:55 -07004588KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004589M: Vivek Goyal <vgoyal@redhat.com>
4590M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004591L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004592W: http://lse.sourceforge.net/kdump/
4593S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004594F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004595
Hans Verkuilf41bf022012-11-23 07:04:36 -03004596KEENE FM RADIO TRANSMITTER DRIVER
4597M: Hans Verkuil <hverkuil@xs4all.nl>
4598L: linux-media@vger.kernel.org
4599T: git git://linuxtv.org/media_tree.git
4600W: http://linuxtv.org
4601S: Maintained
4602F: drivers/media/radio/radio-keene*
4603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004605M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004606L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004608F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
Michal Marek70fb7ba2010-01-29 14:22:43 +01004610KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004611M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004612T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4613T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004614L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004616F: Documentation/kbuild/
4617F: Makefile
4618F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004619F: scripts/basic/
4620F: scripts/mk*
4621F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
4623KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004624L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004625W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004626S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004628KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004629M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004630L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004633F: fs/nfsd/
4634F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004635F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004636F: fs/lockd/
4637F: fs/nfs_common/
4638F: net/sunrpc/
4639F: include/linux/lockd/
4640F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004641F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642
Avi Kivity426d62e2006-12-13 00:34:03 -08004643KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004644M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004645M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004646L: kvm@vger.kernel.org
4647W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004649F: Documentation/*/kvm.txt
4650F: arch/*/kvm/
4651F: arch/*/include/asm/kvm*
4652F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004653F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004654F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004655
Joerg Roedelad8003d2008-09-10 20:01:07 +02004656KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004657M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004658L: kvm@vger.kernel.org
4659W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004661F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004662F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004663
Hollis Blanchard513014b2008-04-16 23:28:08 -05004664KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004665M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004666L: kvm-ppc@vger.kernel.org
4667W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004668T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004670F: arch/powerpc/include/asm/kvm*
4671F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004672
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004673KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004674M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004675L: kvm-ia64@vger.kernel.org
4676W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004677S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004678F: Documentation/ia64/kvm.txt
4679F: arch/ia64/include/asm/kvm*
4680F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004681
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004682KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004683M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004684M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004685M: linux390@de.ibm.com
4686L: linux-s390@vger.kernel.org
4687W: http://www.ibm.com/developerworks/linux/linux390/
4688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004689F: Documentation/s390/kvm.txt
4690F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004691F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004692F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004693
Christoffer Dalla7494742013-01-20 18:42:26 -05004694KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4695M: Christoffer Dall <cdall@cs.columbia.edu>
4696L: kvmarm@lists.cs.columbia.edu
4697W: http://systems.cs.columbia.edu/projects/kvm-arm
4698S: Maintained
4699F: arch/arm/include/uapi/asm/kvm*
4700F: arch/arm/include/asm/kvm*
4701F: arch/arm/kvm/
4702
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004703KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004704M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004705W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004706L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004708F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004709F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004710F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004711
David Howellse9714612010-03-29 23:42:09 +01004712KEYS/KEYRINGS:
4713M: David Howells <dhowells@redhat.com>
4714L: keyrings@linux-nfs.org
4715S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004716F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004717F: include/linux/key.h
4718F: include/linux/key-type.h
4719F: include/keys/
4720F: security/keys/
4721
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004722KEYS-TRUSTED
4723M: David Safford <safford@watson.ibm.com>
4724M: Mimi Zohar <zohar@us.ibm.com>
4725L: linux-security-module@vger.kernel.org
4726L: keyrings@linux-nfs.org
4727S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004728F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004729F: include/keys/trusted-type.h
4730F: security/keys/trusted.c
4731F: security/keys/trusted.h
4732
4733KEYS-ENCRYPTED
4734M: Mimi Zohar <zohar@us.ibm.com>
4735M: David Safford <safford@watson.ibm.com>
4736L: linux-security-module@vger.kernel.org
4737L: keyrings@linux-nfs.org
4738S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004739F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004740F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004741F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004742
Jason Wessel5b778da2010-05-20 21:04:28 -05004743KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004744M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004745W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004746L: kgdb-bugreport@lists.sourceforge.net
4747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004748F: Documentation/DocBook/kgdb.tmpl
4749F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004750F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004751F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004752F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004753F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004754
Pekka Enberg456db8c2008-04-28 22:47:29 +03004755KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004756M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004757M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004758S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004759F: Documentation/kmemcheck.txt
4760F: arch/x86/include/asm/kmemcheck.h
4761F: arch/x86/mm/kmemcheck/
4762F: include/linux/kmemcheck.h
4763F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004764
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004765KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004766M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004767S: Maintained
4768F: Documentation/kmemleak.txt
4769F: include/linux/kmemleak.h
4770F: mm/kmemleak.c
4771F: mm/kmemleak-test.c
4772
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004773KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004774M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4775M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4776M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004777M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004779F: Documentation/kprobes.txt
4780F: include/linux/kprobes.h
4781F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004782
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004783KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004784M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004785W: http://miguelojeda.es/auxdisplay.htm
4786W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004788F: Documentation/auxdisplay/ks0108
4789F: drivers/auxdisplay/ks0108.c
4790F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004794S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004795F: Documentation/networking/lapb-module.txt
4796F: include/*/lapb.h
4797F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801L: linux-scsi@vger.kernel.org
4802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004803F: Documentation/scsi/53c700.txt
4804F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
Richard Purdie263de9b2006-05-15 09:44:16 -07004806LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004807M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004808M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004809L: linux-leds@vger.kernel.org
4810T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: drivers/leds/
4813F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004814
Jean Delvareb0461a42011-06-15 15:08:46 -07004815LEGACY EEPROM DRIVER
4816M: Jean Delvare <khali@linux-fr.org>
4817S: Maintained
4818F: Documentation/misc-devices/eeprom
4819F: drivers/misc/eeprom/eeprom.c
4820
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004822M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823L: legousb-devel@lists.sourceforge.net
4824W: http://legousb.sourceforge.net/
4825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004826F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Michael Krufky055616a2012-10-02 00:56:06 -03004828LG2160 MEDIA DRIVER
4829M: Michael Krufky <mkrufky@linuxtv.org>
4830L: linux-media@vger.kernel.org
4831W: http://linuxtv.org/
4832W: http://github.com/mkrufky
4833Q: http://patchwork.linuxtv.org/project/linux-media/list/
4834T: git git://linuxtv.org/mkrufky/tuners.git
4835S: Maintained
4836F: drivers/media/dvb-frontends/lg2160.*
4837
Michael Krufky6f0e7722012-10-02 00:56:00 -03004838LGDT3305 MEDIA DRIVER
4839M: Michael Krufky <mkrufky@linuxtv.org>
4840L: linux-media@vger.kernel.org
4841W: http://linuxtv.org/
4842W: http://github.com/mkrufky
4843Q: http://patchwork.linuxtv.org/project/linux-media/list/
4844T: git git://linuxtv.org/mkrufky/tuners.git
4845S: Maintained
4846F: drivers/media/dvb-frontends/lgdt3305.*
4847
Rusty Russell568a17f2007-10-25 14:12:24 +10004848LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004849M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004850L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004851W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004852S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004853F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004854F: arch/x86/lguest/
4855F: drivers/lguest/
4856F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004857F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004860M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861W: http://www.ibm.com/linux/ltc/projects/ppc
4862S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004863F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004865LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004866M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4867M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004869L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004870Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004871T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004873F: Documentation/powerpc/
4874F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
4876LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004877M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004879L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004881F: arch/powerpc/platforms/powermac/
4882F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
Grant Likely77a76362008-07-12 12:11:43 -06004884LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004885M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004886L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004887T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004889F: arch/powerpc/platforms/512x/
4890F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891
4892LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004893M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004894M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004896L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004897T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004899F: arch/powerpc/platforms/40x/
4900F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901
Grant Likely260c02a2007-10-02 12:15:34 +10004902LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004903L: linuxppc-dev@lists.ozlabs.org
Grant Likely19624232013-04-08 11:51:42 +01004904S: Unmaintained
Joe Perches11c34c72009-12-04 07:16:59 +00004905F: arch/powerpc/*/*virtex*
4906F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907
Tom Rinie93adf12005-07-26 12:49:53 -07004908LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004909M: Vitaly Bordug <vitb@kernel.crashing.org>
4910M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004911W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004912L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004913S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004914F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004915
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004917M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004918W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004919L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004920S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004921F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004922F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923
Olof Johanssonab06ff32006-09-06 14:44:54 -05004924LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004925M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004926L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004927S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004928F: arch/powerpc/platforms/pasemi/
4929F: drivers/*/*pasemi*
4930F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004931
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004933M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004934L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935S: Supported
4936
Harry Weia23ce6d2011-02-11 16:52:20 +01004937LIS3LV02D ACCELEROMETER DRIVER
4938M: Eric Piel <eric.piel@tremplin-utc.net>
4939S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004940F: Documentation/misc-devices/lis3lv02d
4941F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004942F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004943
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004944LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004945M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004947F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004948F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004949F: include/net/llc*
4950F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004951
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004952LM73 HARDWARE MONITOR DRIVER
4953M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4954L: lm-sensors@lm-sensors.org
4955S: Maintained
4956F: drivers/hwmon/lm73.c
4957
Jean Delvare156e2d12011-07-25 21:46:11 +02004958LM78 HARDWARE MONITOR DRIVER
4959M: Jean Delvare <khali@linux-fr.org>
4960L: lm-sensors@lm-sensors.org
4961S: Maintained
4962F: Documentation/hwmon/lm78
4963F: drivers/hwmon/lm78.c
4964
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004966M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004967L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004969F: Documentation/hwmon/lm83
4970F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
4972LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004973M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004974L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004976F: Documentation/hwmon/lm90
4977F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
Guenter Roeck917cc4e2013-05-19 20:44:27 -07004979LM95234 HARDWARE MONITOR DRIVER
4980M: Guenter Roeck <linux@roeck-us.net>
4981L: lm-sensors@lm-sensors.org
4982S: Maintained
4983F: Documentation/hwmon/lm95234
4984F: drivers/hwmon/lm95234.c
4985
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004986LME2510 MEDIA DRIVER
4987M: Malcolm Priestley <tvboxspy@gmail.com>
4988L: linux-media@vger.kernel.org
4989W: http://linuxtv.org/
4990Q: http://patchwork.linuxtv.org/project/linux-media/list/
4991S: Maintained
4992F: drivers/media/usb/dvb-usb-v2/lmedm04*
4993
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004994LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004995M: Peter Zijlstra <peterz@infradead.org>
4996M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004997T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004999F: Documentation/lockdep*.txt
5000F: Documentation/lockstat.txt
5001F: include/linux/lockdep.h
5002F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005003
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005004LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005006L: linux-ntfs-dev@lists.sourceforge.net
5007W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005009F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08005010F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
Joern Engelef6ada32009-11-20 22:17:12 +01005012LogFS
5013M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305014M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005015L: logfs@logfs.org
5016W: logfs.org
5017S: Maintained
5018F: fs/logfs/
5019
Roland Stiggeb62d7942013-04-02 19:37:11 +02005020LPC32XX MACHINE SUPPORT
5021M: Roland Stigge <stigge@antcom.de>
5022L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5023S: Maintained
5024F: arch/arm/mach-lpc32xx/
5025
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005026LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305027M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5028M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005029M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005030L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005031L: linux-scsi@vger.kernel.org
5032W: http://www.lsilogic.com/support
5033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005034F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305035F: drivers/scsi/mpt2sas/
5036F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005037
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005039M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040L: linux-scsi@vger.kernel.org
5041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005042F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
Guenter Roecke5f5c992010-06-25 11:59:54 -07005044LTC4261 HARDWARE MONITOR DRIVER
5045M: Guenter Roeck <linux@roeck-us.net>
5046L: lm-sensors@lm-sensors.org
5047S: Maintained
5048F: Documentation/hwmon/ltc4261
5049F: drivers/hwmon/ltc4261.c
5050
Mike Frysinger81365c32008-10-29 14:01:12 -07005051LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005052M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005053M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005054M: Cyril Hrubis <chrubis@suse.cz>
5055M: Caspar Zhang <caspar@casparzhang.com>
5056M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005057L: ltp-list@lists.sourceforge.net (subscribers-only)
5058W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005059T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005060T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005061S: Maintained
5062
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005063M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005064M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005065L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005066L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5067W: http://www.linux-m32r.org/
5068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005069F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005070
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005072M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073L: linux-m68k@lists.linux-m68k.org
5074W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005075T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005077F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005078F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005081M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005083L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005085F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
5087M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005088M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089W: http://www.tazenda.demon.co.uk/phil/linux-hp
5090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005091F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005093M88RS2000 MEDIA DRIVER
5094M: Malcolm Priestley <tvboxspy@gmail.com>
5095L: linux-media@vger.kernel.org
5096W: http://linuxtv.org/
5097Q: http://patchwork.linuxtv.org/project/linux-media/list/
5098S: Maintained
5099F: drivers/media/dvb-frontends/m88rs2000*
5100
Alexey Klimov07a092f2012-11-12 02:57:32 -03005101MA901 MASTERKIT USB FM RADIO DRIVER
5102M: Alexey Klimov <klimov.linux@gmail.com>
5103L: linux-media@vger.kernel.org
5104T: git git://linuxtv.org/media_tree.git
5105S: Maintained
5106F: drivers/media/radio/radio-ma901.c
5107
Jiri Benc64a327a2007-05-05 11:47:08 -07005108MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005109M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005110L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005111W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005112T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5113T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005115F: Documentation/networking/mac80211-injection.txt
5116F: include/net/mac80211.h
5117F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005118
Stefano Brivio1036d862007-12-23 04:46:27 +01005119MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005120M: Stefano Brivio <stefano.brivio@polimi.it>
5121M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005122L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005123W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005124T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5125T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005127F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005128
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005129MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005130M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005131L: netdev@vger.kernel.org
5132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005133F: drivers/net/macvlan.c
5134F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005135
Michael Kerriskfaf16682005-07-31 22:34:47 -07005136MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005137M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005138W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005139L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005140S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005141
stephen hemminger44c14c12012-04-02 12:59:47 +00005142MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5143M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005144M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005145L: netdev@vger.kernel.org
5146S: Maintained
5147F: drivers/net/ethernet/marvell/sk*
5148
Stefano Brivio74cda162007-11-19 20:27:46 +01005149MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005150L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005151S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005152F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005153
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005154MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005155M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005156L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005157S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005158F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005159F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005161MARVELL MVNETA ETHERNET DRIVER
5162M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5163L: netdev@vger.kernel.org
5164S: Maintained
5165F: drivers/net/ethernet/marvell/mvneta.*
5166
Bing Zhaofcad5842011-07-13 13:11:58 -07005167MARVELL MWIFIEX WIRELESS DRIVER
5168M: Bing Zhao <bzhao@marvell.com>
5169L: linux-wireless@vger.kernel.org
5170S: Maintained
5171F: drivers/net/wireless/mwifiex/
5172
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005173MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005174M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005175L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005176S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005177F: drivers/net/wireless/mwl8k.c
5178
Pierre Ossman2a695672009-03-16 19:52:26 +01005179MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005180M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005181S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005182F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005183
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005185L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005186S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005187F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005188F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189
Guenter Roeckca462082012-06-01 23:28:23 -07005190MAX16065 HARDWARE MONITOR DRIVER
5191M: Guenter Roeck <linux@roeck-us.net>
5192L: lm-sensors@lm-sensors.org
5193S: Maintained
5194F: Documentation/hwmon/max16065
5195F: drivers/hwmon/max16065.c
5196
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005197MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005198M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005199L: lm-sensors@lm-sensors.org
5200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005201F: Documentation/hwmon/max6650
5202F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005203
Guenter Roecke89ab512013-03-08 08:13:09 -08005204MAX6697 HARDWARE MONITOR DRIVER
5205M: Guenter Roeck <linux@roeck-us.net>
5206L: lm-sensors@lm-sensors.org
5207S: Maintained
5208F: Documentation/hwmon/max6697
5209F: Documentation/devicetree/bindings/i2c/max6697.txt
5210F: drivers/hwmon/max6697.c
5211F: include/linux/platform_data/max6697.h
5212
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005213MAXIRADIO FM RADIO RECEIVER DRIVER
5214M: Hans Verkuil <hverkuil@xs4all.nl>
5215L: linux-media@vger.kernel.org
5216T: git git://linuxtv.org/media_tree.git
5217W: http://linuxtv.org
5218S: Maintained
5219F: drivers/media/radio/radio-maxiradio*
5220
Joe Perches127c49a2009-04-08 08:34:04 -07005221MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005222M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005223P: LinuxTV.org Project
5224L: linux-media@vger.kernel.org
5225W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005226Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005227T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005228S: Maintained
5229F: Documentation/dvb/
5230F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005231F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005232F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005233F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005234F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005235F: include/uapi/linux/dvb/
5236F: include/uapi/linux/videodev2.h
5237F: include/uapi/linux/media.h
5238F: include/uapi/linux/v4l2-*
5239F: include/uapi/linux/meye.h
5240F: include/uapi/linux/ivtv*
5241F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005242
Hans Verkuil6149a932012-11-23 07:21:19 -03005243MEDIAVISION PRO MOVIE STUDIO DRIVER
5244M: Hans Verkuil <hverkuil@xs4all.nl>
5245L: linux-media@vger.kernel.org
5246T: git git://linuxtv.org/media_tree.git
5247W: http://linuxtv.org
5248S: Odd Fixes
5249F: drivers/media/parport/pms*
5250
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005251MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005252M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005253L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005254W: http://megaraid.lsilogic.com
5255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005256F: Documentation/scsi/megaraid.txt
5257F: drivers/scsi/megaraid.*
5258F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005259
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005260MELLANOX ETHERNET DRIVER (mlx4_en)
5261M: Amir Vadai <amirv@mellanox.com>
5262L: netdev@vger.kernel.org
5263S: Supported
5264W: http://www.mellanox.com
5265Q: http://patchwork.ozlabs.org/project/netdev/list/
5266F: drivers/net/ethernet/mellanox/mlx4/en_*
5267
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005268MEMORY MANAGEMENT
5269L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005270W: http://www.linux-mm.org
5271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005272F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005273F: include/linux/gfp.h
5274F: include/linux/mmzone.h
5275F: include/linux/memory_hotplug.h
5276F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005277F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005278
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005279MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005280M: Johannes Weiner <hannes@cmpxchg.org>
5281M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005282M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005283M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005284L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005285L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005287F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005288F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005289
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005290MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005293W: http://www.linux-mtd.infradead.org/
5294Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005295T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005297F: drivers/mtd/
5298F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005299F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
James Hogan12285942012-10-10 12:59:49 +01005301METAG ARCHITECTURE
5302M: James Hogan <james.hogan@imgtec.com>
5303S: Supported
5304F: arch/metag/
5305F: Documentation/metag/
5306F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005307F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005308F: drivers/irqchip/irq-metag.c
5309F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005310F: drivers/tty/metag_da.c
5311F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005312
Michal Simekc6375b02009-03-27 14:25:52 +01005313MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005314M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005315L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005316W: http://www.monstr.eu/fdt/
5317T: git git://git.monstr.eu/linux-2.6-microblaze.git
5318S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005319F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320
5321MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005322M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005324F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325
5326MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005327M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005329W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005330T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005331Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005332S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005333F: Documentation/mips/
5334F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
Hans Verkuil08b76202012-11-23 07:15:42 -03005336MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5337M: Hans Verkuil <hverkuil@xs4all.nl>
5338L: linux-media@vger.kernel.org
5339T: git git://linuxtv.org/media_tree.git
5340W: http://linuxtv.org
5341S: Odd Fixes
5342F: drivers/media/radio/radio-miropcm20*
5343
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005345M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005347F: include/linux/module.h
5348F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
5350MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005352S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005353F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005354F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005355F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
Jiri Slabyb9705b62008-04-30 00:53:48 -07005357MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005358M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005361F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005362
Alexey Klimov889b2f82012-11-16 17:43:59 -03005363MR800 AVERMEDIA USB FM RADIO DRIVER
5364M: Alexey Klimov <klimov.linux@gmail.com>
5365L: linux-media@vger.kernel.org
5366T: git git://linuxtv.org/media_tree.git
5367S: Maintained
5368F: drivers/media/radio/radio-mr800.c
5369
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005370MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005371M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005372L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005374F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005375
Anisse Astier0f1006b2009-12-17 11:28:49 +01005376MSI WMI SUPPORT
5377M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005378L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005379S: Supported
5380F: drivers/platform/x86/msi-wmi.c
5381
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005382MT9M032 SENSOR DRIVER
5383M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5384L: linux-media@vger.kernel.org
5385T: git git://linuxtv.org/media_tree.git
5386S: Maintained
5387F: drivers/media/i2c/mt9m032.c
5388F: include/media/mt9m032.h
5389
5390MT9P031 SENSOR DRIVER
5391M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5392L: linux-media@vger.kernel.org
5393T: git git://linuxtv.org/media_tree.git
5394S: Maintained
5395F: drivers/media/i2c/mt9p031.c
5396F: include/media/mt9p031.h
5397
5398MT9T001 SENSOR DRIVER
5399M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5400L: linux-media@vger.kernel.org
5401T: git git://linuxtv.org/media_tree.git
5402S: Maintained
5403F: drivers/media/i2c/mt9t001.c
5404F: include/media/mt9t001.h
5405
5406MT9V032 SENSOR DRIVER
5407M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5408L: linux-media@vger.kernel.org
5409T: git git://linuxtv.org/media_tree.git
5410S: Maintained
5411F: drivers/media/i2c/mt9v032.c
5412F: include/media/mt9v032.h
5413
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005414MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005415M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005416T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005418F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005419
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005420MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005421M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005422L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005423T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005425F: drivers/mmc/
5426F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005427F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005428
David Brownell15a05802007-08-08 09:12:54 -07005429MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005430S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005431F: drivers/mmc/host/mmc_spi.c
5432F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005433
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005435M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005437F: Documentation/sound/oss/MultiSound
5438F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439
Jiri Slabyd7354102006-12-08 02:38:35 -08005440MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005441S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005442F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005443F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005444
Felipe Balbi550a7372008-07-24 12:27:36 +03005445MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005446M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005447L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005448T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005450F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005451
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005452MXL5007T MEDIA DRIVER
5453M: Michael Krufky <mkrufky@linuxtv.org>
5454L: linux-media@vger.kernel.org
5455W: http://linuxtv.org/
5456W: http://github.com/mkrufky
5457Q: http://patchwork.linuxtv.org/project/linux-media/list/
5458T: git git://linuxtv.org/mkrufky/tuners.git
5459S: Maintained
5460F: drivers/media/tuners/mxl5007t.*
5461
Brice Goglin2d3cf582008-05-17 12:45:36 +02005462MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005463M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005464L: netdev@vger.kernel.org
5465W: http://www.myri.com/scs/download-Myri10GE.html
5466S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005467F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005468
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005470S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005471F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472
Daniel Mack23dc05a2011-05-18 11:28:38 +02005473NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5474M: Daniel Mack <zonque@gmail.com>
5475S: Maintained
5476L: alsa-devel@alsa-project.org
5477W: http://www.native-instruments.com
5478F: sound/usb/caiaq/
5479
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005481M: Petr Vandrovec <petr@vandrovec.name>
5482S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005483F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
5485NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005486M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487L: linux-scsi@vger.kernel.org
5488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005489F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005491NCT6775 HARDWARE MONITOR DRIVER
5492M: Guenter Roeck <linux@roeck-us.net>
5493L: lm-sensors@lm-sensors.org
5494S: Maintained
5495F: Documentation/hwmon/nct6775
5496F: drivers/hwmon/nct6775.c
5497
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005498NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005499M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005500L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005501W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005502S: Supported
5503F: drivers/infiniband/hw/nes/
5504
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005505NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005506M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005507L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005509F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005510
Jon Masonb2f5a052010-07-15 08:47:27 +00005511NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005512M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005513L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005515F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005516F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005517F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005518
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520P: Harald Welte
5521P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005522M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005523M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005524L: netfilter-devel@vger.kernel.org
5525L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005526L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527W: http://www.netfilter.org/
5528W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005529T: git git://1984.lsi.us.es/nf
5530T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005532F: include/linux/netfilter*
5533F: include/linux/netfilter/
5534F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005535F: include/uapi/linux/netfilter*
5536F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005537F: net/*/netfilter.c
5538F: net/*/netfilter/
5539F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
Paul Moore4cc67732006-09-25 15:57:13 -07005541NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005542M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005543W: http://netlabel.sf.net
5544L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005545S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005546F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005547F: include/net/netlabel.h
5548F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005549
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005551M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005553W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005555F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005556F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005557F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005559NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005560M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005562L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005563F: Documentation/blockdev/nbd.txt
5564F: drivers/block/nbd.c
5565F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005566F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
Neil Horman6e436502009-10-05 03:56:55 +00005568NETWORK DROP MONITOR
5569M: Neil Horman <nhorman@tuxdriver.com>
5570L: netdev@vger.kernel.org
5571S: Maintained
5572W: https://fedorahosted.org/dropwatch/
5573F: net/core/drop_monitor.c
5574
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005576M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005577L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005578W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005579Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005580T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5581T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005583F: net/
5584F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005585F: include/linux/in.h
5586F: include/linux/net.h
5587F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005588F: include/uapi/linux/in.h
5589F: include/uapi/linux/net.h
5590F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
5592NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005593M: "David S. Miller" <davem@davemloft.net>
5594M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005595M: James Morris <jmorris@namei.org>
5596M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5597M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005598L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005599T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005601F: net/ipv4/
5602F: net/ipv6/
5603F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005604F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
David S. Miller73b76562012-10-16 14:08:40 -04005606NETWORKING [IPSEC]
5607M: Steffen Klassert <steffen.klassert@secunet.com>
5608M: Herbert Xu <herbert@gondor.apana.org.au>
5609M: "David S. Miller" <davem@davemloft.net>
5610L: netdev@vger.kernel.org
5611T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5612S: Maintained
5613F: net/xfrm/
5614F: net/key/
5615F: net/ipv4/xfrm*
5616F: net/ipv6/xfrm*
5617F: include/uapi/linux/xfrm.h
5618F: include/net/xfrm.h
5619
James Morris10e2ff12007-08-25 14:41:28 -07005620NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005621M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005622L: netdev@vger.kernel.org
5623S: Maintained
5624
John W. Linville29f8f632006-01-18 14:52:48 -08005625NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005626M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005627L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005628Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005629T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005630S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005631F: net/mac80211/
5632F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005633F: net/wireless/
5634F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005635F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005636F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005637F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005638F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005639
Joe Perches788873a2009-04-16 09:38:45 +00005640NETWORKING DRIVERS
5641L: netdev@vger.kernel.org
5642W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005643Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005644T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5645T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005646S: Odd Fixes
5647F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005648F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005649F: include/linux/netdevice.h
5650F: include/linux/arcdevice.h
5651F: include/linux/etherdevice.h
5652F: include/linux/fcdevice.h
5653F: include/linux/fddidevice.h
5654F: include/linux/hippidevice.h
5655F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005656F: include/uapi/linux/if_*
5657F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005658
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005659NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005660M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005661M: Sony Chacko <sony.chacko@qlogic.com>
5662M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005663L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005664W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005665S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005666F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005667
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005668NFC SUBSYSTEM
5669M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5670M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5671M: Samuel Ortiz <sameo@linux.intel.com>
5672L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005673L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005674S: Maintained
5675F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005676F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005677F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005678F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005679F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005681NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005682M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005683L: linux-nfs@vger.kernel.org
5684W: http://client.linux-nfs.org
5685T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: fs/lockd/
5688F: fs/nfs/
5689F: fs/nfs_common/
5690F: net/sunrpc/
5691F: include/linux/lockd/
5692F: include/linux/nfs*
5693F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005694F: include/uapi/linux/nfs*
5695F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005697NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005698M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005699L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005700W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005701T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005703F: Documentation/filesystems/nilfs2.txt
5704F: fs/nilfs2/
5705F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005706
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005708M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005711F: Documentation/scsi/NinjaSCSI.txt
5712F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713
5714NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005715M: GOTO Masanori <gotom@debian.or.jp>
5716M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005719F: Documentation/scsi/NinjaSCSI.txt
5720F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
Jon Masonfce8a7b2012-11-16 19:27:12 -07005722NTB DRIVER
5723M: Jon Mason <jon.mason@intel.com>
5724S: Supported
5725F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005726F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005727F: include/linux/ntb.h
5728
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005730M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005732W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005733T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005735F: Documentation/filesystems/ntfs.txt
5736F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005738NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005739M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005740L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005742F: drivers/video/riva/
5743F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744
Matthew Wilcox79461682012-11-10 08:54:53 -05005745NVM EXPRESS DRIVER
5746M: Matthew Wilcox <willy@linux.intel.com>
5747L: linux-nvme@lists.infradead.org
5748T: git git://git.infradead.org/users/willy/linux-nvme.git
5749S: Supported
5750F: drivers/block/nvme.c
5751F: include/linux/nvme.h
5752
Tony Lindgrenf5525782009-05-28 13:23:53 -07005753OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005754M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005755L: linux-omap@vger.kernel.org
5756W: http://www.muru.com/linux/omap/
5757W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005758Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005759T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005760S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005761F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005762F: drivers/i2c/busses/i2c-omap.c
5763F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005764
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005765OMAP DEVICE TREE SUPPORT
5766M: Benoît Cousson <b-cousson@ti.com>
5767M: Tony Lindgren <tony@atomide.com>
5768L: linux-omap@vger.kernel.org
5769L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5770S: Maintained
5771F: arch/arm/boot/dts/*omap*
5772F: arch/arm/boot/dts/*am3*
5773
Tony Lindgrenf5525782009-05-28 13:23:53 -07005774OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005775M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005776L: linux-omap@vger.kernel.org
5777S: Maintained
5778F: arch/arm/*omap*/*clock*
5779
5780OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005781M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005782L: linux-omap@vger.kernel.org
5783S: Maintained
5784F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005785F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005786
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005787OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5788M: Rajendra Nayak <rnayak@ti.com>
5789M: Paul Walmsley <paul@pwsan.com>
5790L: linux-omap@vger.kernel.org
5791S: Maintained
5792F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5793F: arch/arm/mach-omap2/powerdomain44xx.c
5794F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5795F: arch/arm/mach-omap2/clockdomain44xx.c
5796
Tony Lindgrenf5525782009-05-28 13:23:53 -07005797OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005798M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005799M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005800L: alsa-devel@alsa-project.org (subscribers-only)
5801L: linux-omap@vger.kernel.org
5802S: Maintained
5803F: sound/soc/omap/
5804
5805OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005806M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005807L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005808L: linux-omap@vger.kernel.org
5809S: Maintained
5810F: drivers/video/omap/
5811
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005812OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005813M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005814L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005815L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005816S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005817F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005818F: Documentation/arm/OMAP/DSS
5819
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005820OMAP HARDWARE SPINLOCK SUPPORT
5821M: Ohad Ben-Cohen <ohad@wizery.com>
5822L: linux-omap@vger.kernel.org
5823S: Maintained
5824F: drivers/hwspinlock/omap_hwspinlock.c
5825F: arch/arm/mach-omap2/hwspinlock.c
5826
Tony Lindgrenf5525782009-05-28 13:23:53 -07005827OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005828M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005829L: linux-omap@vger.kernel.org
5830S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005831F: drivers/mmc/host/omap.c
5832
5833OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305834M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305835L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005836L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305837S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005838F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005839
5840OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005841M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005842S: Maintained
5843F: drivers/char/hw_random/omap-rng.c
5844
Paul Walmsleyf400c822010-12-06 19:08:54 -07005845OMAP HWMOD SUPPORT
5846M: Benoît Cousson <b-cousson@ti.com>
5847M: Paul Walmsley <paul@pwsan.com>
5848L: linux-omap@vger.kernel.org
5849S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005850F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005851
5852OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5853M: Benoît Cousson <b-cousson@ti.com>
5854L: linux-omap@vger.kernel.org
5855S: Maintained
5856F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5857
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005858OMAP IMAGE SIGNAL PROCESSOR (ISP)
5859M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5860L: linux-media@vger.kernel.org
5861S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005862F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005863
Tony Lindgrenf5525782009-05-28 13:23:53 -07005864OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005865M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005866L: linux-usb@vger.kernel.org
5867L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005868T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005869S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005870F: drivers/usb/*/*omap*
5871F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005872
Kevin Hilman6d994712012-07-16 10:05:07 -07005873OMAP GPIO DRIVER
5874M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005875M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005876L: linux-omap@vger.kernel.org
5877S: Maintained
5878F: drivers/gpio/gpio-omap.c
5879
Bob Copeland0ad122d2008-07-25 19:45:18 -07005880OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005881M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005882L: linux-karma-devel@lists.sourceforge.net
5883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005884F: Documentation/filesystems/omfs.txt
5885F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005886
Harald Weltec1986ee2005-11-13 16:06:29 -08005887OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005888M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005890F: drivers/char/pcmcia/cm4000_cs.c
5891F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005892F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005893
Harald Welte77c44ab2005-11-13 16:06:26 -08005894OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005897F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005898
Jonathan Corbet77d51402007-03-22 19:44:17 -03005899OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005901L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005902T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005903S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005904F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005905
Thomas Gleixner431bca72007-05-02 09:31:35 +02005906ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005907M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005908L: linux-mtd@lists.infradead.org
5909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005910F: drivers/mtd/onenand/
5911F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005912
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005914M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915L: osst-users@lists.sourceforge.net
5916L: linux-scsi@vger.kernel.org
5917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005918F: drivers/scsi/osst*
5919F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005921OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005922M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005923L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005925F: Documentation/i2c/busses/i2c-ocores
5926F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005927
Grant Likely860c44c2009-10-26 16:49:49 -07005928OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01005929M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05005930M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005931L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005932W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005933T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005934S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005935F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005936F: drivers/of
5937F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005938F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005939K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005940K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005941
Jonas Bonn19f9d392011-06-04 22:00:38 +03005942OPENRISC ARCHITECTURE
5943M: Jonas Bonn <jonas@southpole.se>
5944W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005945L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005946S: Maintained
5947T: git git://openrisc.net/~jonas/linux
5948F: arch/openrisc
5949
Jesse Grossccb13522011-10-25 19:26:31 -07005950OPENVSWITCH
5951M: Jesse Gross <jesse@nicira.com>
5952L: dev@openvswitch.org
5953W: http://openvswitch.org
5954T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5955S: Maintained
5956F: net/openvswitch/
5957
Clemens Ladischaf399172011-01-10 16:32:54 +01005958OPL4 DRIVER
5959M: Clemens Ladisch <clemens@ladisch.de>
5960L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5961T: git git://git.alsa-project.org/alsa-kernel.git
5962S: Maintained
5963F: sound/drivers/opl4/
5964
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005966M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967L: oprofile-list@lists.sf.net
5968S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005969F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005970F: arch/*/oprofile/
5971F: drivers/oprofile/
5972F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005974ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005976M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005977L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5978W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005979T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005981F: Documentation/filesystems/ocfs2.txt
5982F: Documentation/filesystems/dlmfs.txt
5983F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005984
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005986L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005987W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005988W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005989S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005990F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005992OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005993M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005994M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005995L: osd-dev@open-osd.org
5996W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005997T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005998S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005999F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07006000F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006001F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02006002
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006003P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006004M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006005L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006006W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006008F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006009
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006010PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006011M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006012L: netdev@vger.kernel.org
6013S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006014F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006015
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006016PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006017M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006018L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006020F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006021
Steffen Klassert48fc2672010-08-13 10:10:46 -04006022PADATA PARALLEL EXECUTION MECHANISM
6023M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006024L: linux-crypto@vger.kernel.org
6025S: Maintained
6026F: kernel/padata.c
6027F: include/linux/padata.h
6028F: Documentation/padata.txt
6029
Harald Welte709ee532008-09-23 17:46:57 +02006030PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006031M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006032L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006034F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006035
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006036PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006037M: David Howells <dhowells@redhat.com>
6038M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006039L: linux-am33-list@redhat.com (moderated for non-subscribers)
6040W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006042F: Documentation/mn10300/
6043F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006044
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006046L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006047S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006048F: drivers/parport/
6049F: include/linux/parport*.h
6050F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006051F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006053PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006054M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006055M: Chris Wright <chrisw@sous-sol.org>
6056M: Alok Kataria <akataria@vmware.com>
6057M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006058L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006060F: Documentation/ia64/paravirt_ops.txt
6061F: arch/*/kernel/paravirt*
6062F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006063
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006065M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006066L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067W: http://www.torque.net/linux-pp.html
6068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006069F: Documentation/blockdev/paride.txt
6070F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071
6072PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006073M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006074M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006075L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006077Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006078T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006080F: arch/parisc/
6081F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
Jim Cromie1662d322006-10-06 00:43:59 -07006083PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006084M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006085L: lm-sensors@lm-sensors.org
6086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006087F: Documentation/hwmon/pc87360
6088F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006089
6090PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006091M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006093F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006094
Jean Delvare1ad107f2010-08-14 21:09:00 +02006095PC87427 HARDWARE MONITORING DRIVER
6096M: Jean Delvare <khali@linux-fr.org>
6097L: lm-sensors@lm-sensors.org
6098S: Maintained
6099F: Documentation/hwmon/pc87427
6100F: drivers/hwmon/pc87427.c
6101
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006102PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006103M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006104S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006105F: drivers/leds/leds-pca9532.c
6106F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006107
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006108PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006109M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006110L: linux-i2c@vger.kernel.org
6111S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006112F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006113
Khalid Aziz3971dae2012-04-12 12:49:13 -07006114PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006115M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006116S: Maintained
6117F: drivers/firmware/pcdp.*
6118
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006119PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006120M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006121L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006122S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006123F: Documentation/PCI/pci-error-recovery.txt
6124F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006125
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006127M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006128L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006129Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006130T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006132F: Documentation/PCI/
6133F: drivers/pci/
6134F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006137P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006138L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006139W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006140T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006142F: Documentation/pcmcia/
6143F: drivers/pcmcia/
6144F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
6146PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006147M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006148L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006150F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151
Steffen Klassert48fc2672010-08-13 10:10:46 -04006152PCRYPT PARALLEL CRYPTO ENGINE
6153M: Steffen Klassert <steffen.klassert@secunet.com>
6154L: linux-crypto@vger.kernel.org
6155S: Maintained
6156F: crypto/pcrypt.c
6157F: include/crypto/pcrypt.h
6158
Tejun Heoe72df0b2010-12-10 17:02:49 +01006159PER-CPU MEMORY ALLOCATOR
6160M: Tejun Heo <tj@kernel.org>
6161M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006162T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6163S: Maintained
6164F: include/linux/percpu*.h
6165F: mm/percpu*.c
6166F: arch/*/include/asm/percpu.h
6167
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006168PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006169M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006171F: include/linux/delayacct.h
6172F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006173
Ingo Molnar57c0c152009-09-21 12:20:38 +02006174PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006175M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6176M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006177M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006178M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006179T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006180S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006181F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006182F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006183F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006184F: arch/*/kernel/perf_event*.c
6185F: arch/*/kernel/*/perf_event*.c
6186F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006187F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006188F: arch/*/kernel/perf_callchain.c
6189F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006190
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006191PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006192M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006193L: linux-abi-devel@lists.sourceforge.net
6194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006195F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006196F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006197
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006198PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006199M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006200S: Supported
6201F: Documentation/networking/phonet.txt
6202F: include/linux/phonet.h
6203F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006204F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006205F: net/phonet/
6206
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006208M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209L: linux-mtd@lists.infradead.org
6210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006211F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212
Bruno Prémontefdbb102012-07-30 21:39:03 +02006213PICOLCD HID DRIVER
6214M: Bruno Prémont <bonbons@linux-vserver.org>
6215L: linux-input@vger.kernel.org
6216S: Maintained
6217F: drivers/hid/hid-picolcd*
6218
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006219PICOXCELL SUPPORT
6220M: Jamie Iles <jamie@jamieiles.com>
6221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6222T: git git://github.com/jamieiles/linux-2.6-ji.git
6223S: Supported
6224F: arch/arm/mach-picoxcell
6225F: drivers/*/picoxcell*
6226F: drivers/*/*/picoxcell*
6227
Linus Walleij2744e8a2011-05-02 20:50:54 +02006228PIN CONTROL SUBSYSTEM
6229M: Linus Walleij <linus.walleij@linaro.org>
6230S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006231F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006232F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006233
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006234PIN CONTROLLER - ATMEL AT91
6235M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6237S: Maintained
6238F: drivers/pinctrl/pinctrl-at91.c
6239
Viresh Kumardeda8282012-03-28 22:27:07 +05306240PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006241M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306242L: spear-devel@list.st.com
6243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6244W: http://www.st.com/spear
6245S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006246F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306247
Peter Osterlund249a6772005-09-27 21:45:30 -07006248PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006249M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006251F: drivers/block/pktcdvd.c
6252F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006253F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006254
GuanXuetaob31d8272011-01-16 00:35:49 +08006255PKUNITY SOC DRIVERS
6256M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6257W: http://mprc.pku.edu.cn/~guanxuetao/linux
6258S: Maintained
6259T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6260F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006261F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006262F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006263F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006264
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006265PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006266M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006267L: lm-sensors@lm-sensors.org
6268W: http://www.lm-sensors.org/
6269W: http://www.roeck-us.net/linux/drivers/
6270T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6271S: Maintained
6272F: Documentation/hwmon/pmbus
6273F: drivers/hwmon/pmbus/
6274F: include/linux/i2c/pmbus.h
6275
Anil Ravindranath89a36812009-08-25 17:35:18 -07006276PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006277M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006278L: linux-scsi@vger.kernel.org
6279W: http://www.pmc-sierra.com/
6280S: Supported
6281F: drivers/scsi/pmcraid.*
6282
jack wangdbf9bfe2009-10-14 16:19:21 +08006283PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006284M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006285M: lindar_liu@usish.com
6286L: linux-scsi@vger.kernel.org
6287S: Supported
6288F: drivers/scsi/pm8001/
6289
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006291M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006292T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006294F: fs/timerfd.c
6295F: include/linux/timer*
6296F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Anton Vorontsov3be86142007-07-15 04:43:36 +04006298POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006299M: Anton Vorontsov <cbou@mail.ru>
6300M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006301T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006303F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006304F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006305
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006307M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006308M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006310F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311
Vitaly Wool999445d2007-01-04 13:07:03 +01006312PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006313M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006314L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006316F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006317
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006319M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320L: linux-ppp@vger.kernel.org
6321S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006322F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323
6324PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006325M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006327F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006328F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329
6330PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006331M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006333F: drivers/net/ppp/pppoe.c
6334F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335
James Chapmana6d23702007-06-27 15:53:17 -07006336PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006337M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006338S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006339F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006340F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006341F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006342
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006343PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006344M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006345W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6346L: linuxpps@ml.enneenne.com (subscribers-only)
6347S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006348F: Documentation/pps/
6349F: drivers/pps/
6350F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006351
Harry Wei71a6d0a2011-05-11 15:13:33 -07006352PPTP DRIVER
6353M: Dmitry Kozlov <xeb@mail.ru>
6354L: netdev@vger.kernel.org
6355S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006356F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006357W: http://sourceforge.net/projects/accel-pptp
6358
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361L: kpreempt-tech@lists.sourceforge.net
6362W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6363S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006364F: Documentation/preempt-locking.txt
6365F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366
6367PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006368M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006369L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006370W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006371S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006372F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006374PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006375M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006376L: linux-ide@vger.kernel.org
6377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006378F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006379
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006380PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006381M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006382L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006383L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006384S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006385F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006386
Geoff Levandf58a9d12006-11-23 00:46:51 +01006387PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006388M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006389L: linuxppc-dev@lists.ozlabs.org
6390L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006392F: arch/powerpc/boot/ps3*
6393F: arch/powerpc/include/asm/lv1call.h
6394F: arch/powerpc/include/asm/ps3*.h
6395F: arch/powerpc/platforms/ps3/
6396F: drivers/*/ps3*
6397F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006398F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006399F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006400F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006401
Jim Pariscffb4add2009-01-06 11:32:10 +00006402PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006403M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006404L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006405S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006406F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006407
Anton Vorontsov8defe592012-08-03 18:07:20 -07006408PSTORE FILESYSTEM
6409M: Anton Vorontsov <cbouatmailru@gmail.com>
6410M: Colin Cross <ccross@android.com>
6411M: Kees Cook <keescook@chromium.org>
6412M: Tony Luck <tony.luck@intel.com>
6413S: Maintained
6414T: git git://git.infradead.org/users/cbou/linux-pstore.git
6415F: fs/pstore/
6416F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006417F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006418F: drivers/acpi/apei/erst.c
6419
Richard Cochran7fbc4152012-03-10 01:55:53 +00006420PTP HARDWARE CLOCK SUPPORT
6421M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006422L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006423S: Maintained
6424W: http://linuxptp.sourceforge.net/
6425F: Documentation/ABI/testing/sysfs-ptp
6426F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006427F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006428F: drivers/net/phy/dp83640*
6429F: drivers/ptp/*
6430F: include/linux/ptp_cl*
6431
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006432PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006433M: Roland McGrath <roland@redhat.com>
6434M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006435S: Maintained
6436F: include/asm-generic/syscall.h
6437F: include/linux/ptrace.h
6438F: include/linux/regset.h
6439F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006440F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006441F: kernel/ptrace.c
6442
Michael Krufky83202042006-07-03 00:24:18 -07006443PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006444M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006445L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006446L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006447W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006448T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006450F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006451F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006452
Hans de Goede39532e62012-11-04 17:05:59 -03006453PWC WEBCAM DRIVER
6454M: Hans de Goede <hdegoede@redhat.com>
6455L: linux-media@vger.kernel.org
6456T: git git://linuxtv.org/media_tree.git
6457S: Maintained
6458F: drivers/media/usb/pwc/*
6459
Thierry Reding200efed2012-03-27 13:16:18 +02006460PWM SUBSYSTEM
6461M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006462L: linux-kernel@vger.kernel.org
6463S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006464W: http://gitorious.org/linux-pwm
6465T: git git://gitorious.org/linux-pwm/linux-pwm.git
6466F: Documentation/pwm.txt
6467F: Documentation/devicetree/bindings/pwm/
6468F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006469F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006470F: drivers/video/backlight/pwm_bl.c
6471F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006472
Eric Miao30ec2612008-06-12 15:21:41 -07006473PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Eric Miao <eric.y.miao@gmail.com>
6475M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006476M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006477L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006478T: git git://github.com/hzhuang1/linux.git
6479T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006481F: arch/arm/mach-pxa/
6482F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006483F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006484F: drivers/usb/gadget/pxa2*
6485F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006486F: sound/arm/pxa*
6487F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006489MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006490M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006491M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006492L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006493T: git git://github.com/hzhuang1/linux.git
6494T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006495S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006496F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006497
Pierre Ossman272f1332007-05-14 21:25:26 +02006498PXA MMCI DRIVER
6499S: Orphan
6500
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006501PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006502M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006503L: rtc-linux@googlegroups.com
6504S: Maintained
6505
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006506QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006507M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006508L: linux-rdma@vger.kernel.org
6509S: Supported
6510F: drivers/infiniband/hw/qib/
6511
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006512QLOGIC QLA1280 SCSI DRIVER
6513M: Michael Reed <mdr@sgi.com>
6514L: linux-scsi@vger.kernel.org
6515S: Maintained
6516F: drivers/scsi/qla1280.[ch]
6517
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006519M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006520M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521L: linux-scsi@vger.kernel.org
6522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006523F: Documentation/scsi/LICENSE.qla2xxx
6524F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525
Ravi Anand883c98f2010-04-28 11:45:49 +05306526QLOGIC QLA4XXX iSCSI DRIVER
6527M: Ravi Anand <ravi.anand@qlogic.com>
6528M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6529M: iscsi-driver@qlogic.com
6530L: linux-scsi@vger.kernel.org
6531S: Supported
6532F: drivers/scsi/qla4xxx/
6533
Ron Mercer5a4faa872006-07-25 00:40:21 -07006534QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006535M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006536M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006537M: linux-driver@qlogic.com
6538L: netdev@vger.kernel.org
6539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006540F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006541F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006542
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006543QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006544M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6545M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006546M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006547M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006548M: linux-driver@qlogic.com
6549L: netdev@vger.kernel.org
6550S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006551F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006552
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006553QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006554M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006555M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006556M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006557M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006558L: netdev@vger.kernel.org
6559S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006560F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006561
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006563M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564W: http://www.alarsen.net/linux/qnx4fs/
6565S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006566F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006567F: include/uapi/linux/qnx4_fs.h
6568F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569
Antti Palosaari91952bc2012-10-01 12:28:46 -03006570QT1010 MEDIA DRIVER
6571M: Antti Palosaari <crope@iki.fi>
6572L: linux-media@vger.kernel.org
6573W: http://linuxtv.org/
6574W: http://palosaari.fi/linux/
6575Q: http://patchwork.linuxtv.org/project/linux-media/list/
6576T: git git://linuxtv.org/anttip/media_tree.git
6577S: Maintained
6578F: drivers/media/tuners/qt1010*
6579
Richard Kuo4f4567c2011-10-31 18:56:38 -05006580QUALCOMM HEXAGON ARCHITECTURE
6581M: Richard Kuo <rkuo@codeaurora.org>
6582L: linux-hexagon@vger.kernel.org
6583S: Supported
6584F: arch/hexagon/
6585
Hans Verkuil35e35402012-11-23 07:02:29 -03006586QUICKCAM PARALLEL PORT WEBCAMS
6587M: Hans Verkuil <hverkuil@xs4all.nl>
6588L: linux-media@vger.kernel.org
6589T: git git://linuxtv.org/media_tree.git
6590W: http://linuxtv.org
6591S: Odd Fixes
6592F: drivers/media/parport/*-qcam*
6593
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006594RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006595M: Yehuda Sadeh <yehuda@inktank.com>
6596M: Sage Weil <sage@inktank.com>
6597M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006598M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006599W: http://ceph.com/
6600T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006601S: Supported
6602F: drivers/block/rbd.c
6603F: drivers/block/rbd_types.h
6604
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006606M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006607L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006609F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006610F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611
Hans de Goedec6c9b342012-11-04 17:03:58 -03006612RADIOSHARK RADIO DRIVER
6613M: Hans de Goede <hdegoede@redhat.com>
6614L: linux-media@vger.kernel.org
6615T: git git://linuxtv.org/media_tree.git
6616S: Maintained
6617F: drivers/media/radio/radio-shark.c
6618
6619RADIOSHARK2 RADIO DRIVER
6620M: Hans de Goede <hdegoede@redhat.com>
6621L: linux-media@vger.kernel.org
6622T: git git://linuxtv.org/media_tree.git
6623S: Maintained
6624F: drivers/media/radio/radio-shark2.c
6625F: drivers/media/radio/radio-tea5777.c
6626
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006628M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006629L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006631F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632
Randy Dunlape7839f22008-10-12 16:11:45 -07006633RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006634P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006635M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006636M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006637M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006638L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006639L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006640W: http://rt2x00.serialmonkey.com/
6641S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006642T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006643F: drivers/net/wireless/rt2x00/
6644
Nick Piggin9db55792008-02-08 04:19:49 -08006645RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006646M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006648F: Documentation/blockdev/ramdisk.txt
6649F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006650
Matt Mackall9e95ce22005-04-16 15:25:56 -07006651RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006652M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006654F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006655
Matt Porter394b7012005-11-07 01:00:15 -08006656RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006657M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006658M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006660F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006661
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006662RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006663L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006665F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006666
6667RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006668M: Josh Triplett <josh@freedesktop.org>
6669M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006670S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006671T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006672F: Documentation/RCU/torture.txt
6673F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006674
Florian Fainellic1f766b2008-02-06 22:39:44 +01006675RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006676M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006677S: Maintained
6678
Florian Fainellidb17f392007-12-19 11:30:30 +01006679RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006680M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006681L: netdev@vger.kernel.org
6682S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006683F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006684
Andy Grovera09ed662009-02-24 15:30:41 +00006685RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006686M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006687L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006689F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006690
Josh Triplett595182b2006-10-04 02:17:21 -07006691READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006692M: Dipankar Sarma <dipankar@in.ibm.com>
6693M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006694W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006695S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006696T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006697F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006698X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006699F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006700F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006701X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006702
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006703REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006704M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006705L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006706Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006708F: Documentation/rtc.txt
6709F: drivers/rtc/
6710F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006711F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006712
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006714L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006716F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717
Mark Brownb83a3132011-05-11 19:59:58 +02006718REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006719M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006720T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6721S: Supported
6722F: drivers/base/regmap/
6723F: include/linux/regmap.h
6724
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006725REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6726M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006727T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006728S: Maintained
6729F: drivers/remoteproc/
6730F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006731F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006732
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03006733REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
6734M: Ohad Ben-Cohen <ohad@wizery.com>
6735T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
6736S: Maintained
6737F: drivers/rpmsg/
6738F: Documentation/rpmsg.txt
6739F: include/linux/rpmsg.h
6740
Ivo van Doorne08976452008-04-12 19:23:55 +02006741RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006742M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006743L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006744W: http://wireless.kernel.org/
6745T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6746T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006747S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006748F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006749F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006750
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006751RICOH SMARTMEDIA/XD DRIVER
6752M: Maxim Levitsky <maximlevitsky@gmail.com>
6753S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006754F: drivers/mtd/nand/r852.c
6755F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006756
Maxim Levitsky92634122011-03-25 01:56:59 -07006757RICOH R5C592 MEMORYSTICK DRIVER
6758M: Maxim Levitsky <maximlevitsky@gmail.com>
6759S: Maintained
6760F: drivers/memstick/host/r592.*
6761
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762ROCKETPORT DRIVER
6763P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764W: http://www.comtrol.com
6765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006766F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006767F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768
6769ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006770M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006772W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006774F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006775F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006776F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777
Antti Palosaari91952bc2012-10-01 12:28:46 -03006778RTL2830 MEDIA DRIVER
6779M: Antti Palosaari <crope@iki.fi>
6780L: linux-media@vger.kernel.org
6781W: http://linuxtv.org/
6782W: http://palosaari.fi/linux/
6783Q: http://patchwork.linuxtv.org/project/linux-media/list/
6784T: git git://linuxtv.org/anttip/media_tree.git
6785S: Maintained
6786F: drivers/media/dvb-frontends/rtl2830*
6787
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006788RTL2832 MEDIA DRIVER
6789M: Antti Palosaari <crope@iki.fi>
6790L: linux-media@vger.kernel.org
6791W: http://linuxtv.org/
6792W: http://palosaari.fi/linux/
6793Q: http://patchwork.linuxtv.org/project/linux-media/list/
6794T: git git://linuxtv.org/anttip/media_tree.git
6795S: Maintained
6796F: drivers/media/dvb-frontends/rtl2832*
6797
Larry Finger59840482008-11-12 17:13:09 -06006798RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006799M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006800L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006801W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006802T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006803S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006804F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006805
Larry Finger59840482008-11-12 17:13:09 -06006806RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006807M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006808M: Hin-Tak Leung <htl10@users.sourceforge.net>
6809M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006810L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006811W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006812T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006813S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006814F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006815
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006816RTL8192CE WIRELESS DRIVER
6817M: Larry Finger <Larry.Finger@lwfinger.net>
6818M: Chaoming Li <chaoming_li@realsil.com.cn>
6819L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006820W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006821T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6822S: Maintained
6823F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006824F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006825
6826S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006827M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006828L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006830F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006831
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832S390
Joe Perches8b58be82009-07-29 15:04:30 -07006833M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6834M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006836L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006837W: http://www.ibm.com/developerworks/linux/linux390/
6838S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006839F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006840F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006841F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006842F: Documentation/s390/
6843F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006844
6845S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006846M: Ursula Braun <ursula.braun@de.ibm.com>
6847M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006848M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006849L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006850W: http://www.ibm.com/developerworks/linux/linux390/
6851S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006852F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006853
Felix Beckfeed9b62009-03-26 15:24:23 +01006854S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006855M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006856M: linux390@de.ibm.com
6857L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006858W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006859S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006860F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006861
Heiko Carstens5238da42006-02-11 17:56:01 -08006862S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006863M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006864M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006865L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006866W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006868F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869
Ursula Braundd96df22007-09-19 13:09:02 +02006870S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006871M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006872M: linux390@de.ibm.com
6873L: linux-s390@vger.kernel.org
6874W: http://www.ibm.com/developerworks/linux/linux390/
6875S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006876F: drivers/s390/net/*iucv*
6877F: include/net/iucv/
6878F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006879
Ben Dooks4dde7f72008-06-30 22:40:38 +01006880S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006881M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006883S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006884F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006885
Hans Verkuil1f15a222012-11-23 07:45:29 -03006886SAA6588 RDS RECEIVER DRIVER
6887M: Hans Verkuil <hverkuil@xs4all.nl>
6888L: linux-media@vger.kernel.org
6889T: git git://linuxtv.org/media_tree.git
6890W: http://linuxtv.org
6891S: Odd Fixes
6892F: drivers/media/i2c/saa6588*
6893
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006894SAA7134 VIDEO4LINUX DRIVER
6895M: Mauro Carvalho Chehab <mchehab@redhat.com>
6896L: linux-media@vger.kernel.org
6897W: http://linuxtv.org
6898T: git git://linuxtv.org/media_tree.git
6899S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006900F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006901F: drivers/media/pci/saa7134/
6902
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006904M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006905L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006906T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006908F: drivers/media/common/saa7146/
6909F: drivers/media/pci/saa7146/
6910F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911
Corentin Chary92304a42011-12-05 12:38:35 -05006912SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006913M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006914L: platform-driver-x86@vger.kernel.org
6915S: Maintained
6916F: drivers/platform/x86/samsung-laptop.c
6917
Mark Brown4a109cc2010-09-24 10:50:46 +01006918SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006919M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006920L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6921S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006922F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006923
Jingoo Han0d89a282011-12-19 11:09:35 +09006924SAMSUNG FRAMEBUFFER DRIVER
6925M: Jingoo Han <jg1.han@samsung.com>
6926L: linux-fbdev@vger.kernel.org
6927S: Maintained
6928F: drivers/video/s3c-fb.c
6929
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006930SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6931M: Sangbeom Kim <sbkim73@samsung.com>
6932L: linux-kernel@vger.kernel.org
6933S: Supported
6934F: drivers/mfd/sec*.c
6935F: drivers/regulator/s2m*.c
6936F: drivers/regulator/s5m*.c
6937F: drivers/rtc/rtc-sec.c
6938F: include/linux/mfd/samsung/
6939
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006940SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6941M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6942L: linux-media@vger.kernel.org
6943L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6944S: Maintained
6945F: drivers/media/platform/s3c-camif/
6946F: include/media/s3c_camif.h
6947
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006948SAMSUNG S5C73M3 CAMERA DRIVER
6949M: Kyungmin Park <kyungmin.park@samsung.com>
6950M: Andrzej Hajda <a.hajda@samsung.com>
6951L: linux-media@vger.kernel.org
6952S: Supported
6953F: drivers/media/i2c/s5c73m3/*
6954
Alan Coxca749e22011-03-18 13:56:14 +00006955SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006956M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006957L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006958S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006959F: drivers/tty/serial
6960
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306961SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006962M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306963S: Maintained
6964F: include/linux/dw_dmac.h
6965F: drivers/dma/dw_dmac_regs.h
6966F: drivers/dma/dw_dmac.c
6967
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006968SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6969M: Seungwon Jeon <tgih.jun@samsung.com>
6970M: Jaehoon Chung <jh80.chung@samsung.com>
6971L: linux-mmc@vger.kernel.org
6972S: Maintained
6973F: include/linux/mmc/dw_mmc.h
6974F: drivers/mmc/host/dw_mmc*
6975
Thomas Gleixner88606e82010-12-14 21:37:13 +01006976TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006977M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006978M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006979T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006980S: Supported
6981F: include/linux/clocksource.h
6982F: include/linux/time.h
6983F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006984F: include/uapi/linux/time.h
6985F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006986F: kernel/time/clocksource.c
6987F: kernel/time/time*.c
6988F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006989F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006990
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006991TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006992M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006993M: Hans Verkuil <hverkuil@xs4all.nl>
6994S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006995F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006996
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006998M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007000F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001
7002SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01007003M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007004M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007005T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09007007F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07007008F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007009F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010
Chen Liqin6bcf6732009-06-13 15:24:33 +08007011SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07007012M: Chen Liqin <liqin.chen@sunplusct.com>
7013M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08007014W: http://www.sunplusct.com
7015S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07007016F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08007017
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007019M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020L: linux-scsi@vger.kernel.org
7021W: http://www.kernel.dk
7022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007023F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024
Roland Dreierfb50a832010-10-07 09:54:53 -07007025SCSI RDMA PROTOCOL (SRP) INITIATOR
7026M: David Dillow <dillowda@ornl.gov>
7027L: linux-rdma@vger.kernel.org
7028S: Supported
7029W: http://www.openfabrics.org
7030Q: http://patchwork.kernel.org/project/linux-rdma/list/
7031T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7032F: drivers/infiniband/ulp/srp/
7033F: include/scsi/srp.h
7034
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007036M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037L: linux-scsi@vger.kernel.org
7038W: http://www.torque.net/sg
7039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007040F: drivers/scsi/sg.c
7041F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042
7043SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007044M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007046T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7047T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7048T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007050F: drivers/scsi/
7051F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
7053SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007054M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055L: linux-scsi@vger.kernel.org
7056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007057F: Documentation/scsi/st.txt
7058F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059
7060SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007061M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007062M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007063L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007064W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007066F: Documentation/networking/sctp.txt
7067F: include/linux/sctp.h
7068F: include/net/sctp/
7069F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070
7071SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007072M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007073S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007074F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007075F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007076F: drivers/watchdog/scx200_wdt.c
7077F: drivers/i2c/busses/scx200*
7078F: drivers/mtd/maps/scx200_docflash.c
7079F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007080
7081SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007082M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007084F: drivers/char/scx200_gpio.c
7085F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007086
7087SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007088M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007090F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091
Sascha Sommer6a369132008-07-15 14:21:29 +02007092SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007093M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007094L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007096F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007097
Randy Dunlape7839f22008-10-12 16:11:45 -07007098SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007099M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007100L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007101T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7102S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007103F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007104F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007105
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007106SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007107M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007108L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007109L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007111F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112
Ben Dooks0d1bb412009-06-14 13:52:37 +01007113SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007114M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007115L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007116S: Maintained
7117F: drivers/mmc/host/sdhci-s3c.c
7118
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007119SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007120M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007121L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007122L: linux-mmc@vger.kernel.org
7123S: Maintained
7124F: drivers/mmc/host/sdhci-spear.c
7125
James Morris8711cca2008-12-04 03:19:45 +11007126SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007127M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007128L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007129T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007130W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007131S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007132F: security/
James Morris8711cca2008-12-04 03:19:45 +11007133
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007135M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136S: Supported
7137
7138SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007139M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007140M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007141M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007142L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007143W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007144T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007146F: include/linux/selinux*
7147F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007148F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149
John Johansenc1c124e2010-07-29 14:48:09 -07007150APPARMOR SECURITY MODULE
7151M: John Johansen <john.johansen@canonical.com>
7152L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7153W: apparmor.wiki.kernel.org
7154T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7155S: Supported
7156F: security/apparmor/
7157
Jiri Slabycef2cf02007-05-08 00:31:45 -07007158SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007159M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007161F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007162F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007163
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007164SERIAL ATA (SATA) SUBSYSTEM
Tejun Heo3d9b9352013-05-07 10:09:27 -07007165M: Tejun Heo <tj@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166L: linux-ide@vger.kernel.org
Tejun Heo3d9b9352013-05-07 10:09:27 -07007167T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007169F: drivers/ata/
7170F: include/linux/ata.h
7171F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307173SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007174M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007175L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007176W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007177S: Supported
7178F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307179
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007180SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007181M: Sathya Perla <sathya.perla@emulex.com>
7182M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7183M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007184L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007185W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007186S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007187F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007188
Ben Hutchings8ceee662008-04-27 12:55:59 +01007189SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007190M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007191M: Ben Hutchings <bhutchings@solarflare.com>
7192L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007193S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007194F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007195
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007196SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007197M: Dimitri Sivanich <sivanich@sgi.com>
7198M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007200F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007201
7202SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007203M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007204L: linux-ia64@vger.kernel.org
7205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007206F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007207F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007208F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007209
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007211M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212L: linux-visws-devel@lists.sf.net
7213W: http://linux-visws.sf.net
7214S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007215F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216
Jack Steiner75312612008-08-15 00:40:42 -07007217SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007218M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007220F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007221
Hans Verkuil49cc6292012-11-30 07:13:29 -03007222SI470X FM RADIO RECEIVER I2C DRIVER
7223M: Hans Verkuil <hverkuil@xs4all.nl>
7224L: linux-media@vger.kernel.org
7225T: git git://linuxtv.org/media_tree.git
7226W: http://linuxtv.org
7227S: Odd Fixes
7228F: drivers/media/radio/si470x/radio-si470x-i2c.c
7229
7230SI470X FM RADIO RECEIVER USB DRIVER
7231M: Hans Verkuil <hverkuil@xs4all.nl>
7232L: linux-media@vger.kernel.org
7233T: git git://linuxtv.org/media_tree.git
7234W: http://linuxtv.org
7235S: Maintained
7236F: drivers/media/radio/si470x/radio-si470x-common.c
7237F: drivers/media/radio/si470x/radio-si470x.h
7238F: drivers/media/radio/si470x/radio-si470x-usb.c
7239
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007240SI4713 FM RADIO TRANSMITTER I2C DRIVER
7241M: Eduardo Valentin <edubezval@gmail.com>
7242L: linux-media@vger.kernel.org
7243T: git git://linuxtv.org/media_tree.git
7244W: http://linuxtv.org
7245S: Odd Fixes
7246F: drivers/media/radio/si4713-i2c.?
7247
7248SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7249M: Eduardo Valentin <edubezval@gmail.com>
7250L: linux-media@vger.kernel.org
7251T: git git://linuxtv.org/media_tree.git
7252W: http://linuxtv.org
7253S: Odd Fixes
7254F: drivers/media/radio/radio-si4713.h
7255
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007256SIANO DVB DRIVER
7257M: Mauro Carvalho Chehab <mchehab@redhat.com>
7258L: linux-media@vger.kernel.org
7259W: http://linuxtv.org
7260T: git git://linuxtv.org/media_tree.git
7261S: Odd fixes
7262F: drivers/media/common/siano/
7263F: drivers/media/dvb/siano/
7264F: drivers/media/usb/siano/
7265F: drivers/media/mmc/siano
7266
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007267SH_VEU V4L2 MEM2MEM DRIVER
7268M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7269L: linux-media@vger.kernel.org
7270S: Maintained
7271F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007272
7273SH_VOU V4L2 OUTPUT DRIVER
7274M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7275L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007276S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007277F: drivers/media/platform/sh_vou.c
7278F: include/media/sh_vou.h
7279
Len Brown6349d992009-08-14 15:07:14 -04007280SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007281M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007282L: sfi-devel@simplefirmware.org
7283W: http://simplefirmware.org/
7284T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007285S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007286F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007287F: drivers/sfi/
7288F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007289
Linus Torvalds1da177e2005-04-16 15:20:36 -07007290SIMTEC EB110ATX (Chalice CATS)
7291P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007292P: Vincent Sanders <vince@simtec.co.uk>
7293M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294W: http://www.simtec.co.uk/products/EB110ATX/
7295S: Supported
7296
7297SIMTEC EB2410ITX (BAST)
7298P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007299P: Vincent Sanders <vince@simtec.co.uk>
7300M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007301W: http://www.simtec.co.uk/products/EB2410ITX/
7302S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007303F: arch/arm/mach-s3c2410/mach-bast.c
7304F: arch/arm/mach-s3c2410/bast-ide.c
7305F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007307TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007308M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007309M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307310L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307311T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007312Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007313S: Supported
7314F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007315F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007316
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007317TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007318M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007319L: linux-media@vger.kernel.org
7320L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7321W: http://linuxtv.org/
7322Q: http://patchwork.linuxtv.org/project/linux-media/list/
7323T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007324S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007325F: drivers/media/platform/davinci/
7326F: include/media/davinci/
7327
Francois Romieu92aab3c2005-07-30 13:11:18 +02007328SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007329M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007330L: netdev@vger.kernel.org
7331S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007332F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007333
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007335M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007337L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007339F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340
7341SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007342M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007345F: Documentation/fb/sisfb.txt
7346F: drivers/video/sis/
7347F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348
7349SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007350M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351W: http://www.winischhofer.at/linuxsisusbvga.shtml
7352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007353F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007355SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007356M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007357M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007358M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007359L: linux-mm@kvack.org
7360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007361F: include/linux/sl?b*.h
7362F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007363
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007364SLEEPABLE READ-COPY UPDATE (SRCU)
7365M: Lai Jiangshan <laijs@cn.fujitsu.com>
7366M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7367W: http://www.rdrop.com/users/paulmck/RCU/
7368S: Supported
7369T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7370F: include/linux/srcu*
7371F: kernel/srcu*
7372
Casey Schaufler66372842012-05-23 18:34:52 -07007373SMACK SECURITY MODULE
7374M: Casey Schaufler <casey@schaufler-ca.com>
7375L: linux-security-module@vger.kernel.org
7376W: http://schaufler-ca.com
7377T: git git://git.gitorious.org/smack-next/kernel.git
7378S: Maintained
7379F: Documentation/security/Smack.txt
7380F: security/smack/
7381
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007383M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007384S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007385F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386
Sakari Ailuse8e31622012-11-12 18:14:39 -03007387SMIA AND SMIA++ IMAGE SENSOR DRIVER
7388M: Sakari Ailus <sakari.ailus@iki.fi>
7389L: linux-media@vger.kernel.org
7390S: Maintained
7391F: drivers/media/i2c/smiapp
7392F: include/media/smiapp.h
7393F: drivers/media/i2c/smiapp-pll.c
7394F: drivers/media/i2c/smiapp-pll.h
7395
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007396SMM665 HARDWARE MONITOR DRIVER
7397M: Guenter Roeck <linux@roeck-us.net>
7398L: lm-sensors@lm-sensors.org
7399S: Maintained
7400F: Documentation/hwmon/smm665
7401F: drivers/hwmon/smm665.c
7402
Steve Glendinning9df73052010-08-14 21:08:54 +02007403SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007404M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007405L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007406S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007407F: Documentation/hwmon/emc2103
7408F: drivers/hwmon/emc2103.c
7409
Hans de Goedea98d5062011-03-21 17:59:36 +01007410SMSC SCH5627 HARDWARE MONITOR DRIVER
7411M: Hans de Goede <hdegoede@redhat.com>
7412L: lm-sensors@lm-sensors.org
7413S: Supported
7414F: Documentation/hwmon/sch5627
7415F: drivers/hwmon/sch5627.c
7416
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007417SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007418M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007419L: lm-sensors@lm-sensors.org
7420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007421F: Documentation/hwmon/smsc47b397
7422F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007423
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007424SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007425M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007426L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007428F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007429F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007430
Steve Glendinning2cb37722008-12-11 20:54:30 -08007431SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007432M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007433L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007434S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007435F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007436
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007437SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007438M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007439L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007440S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007441F: drivers/video/smscufx.c
7442
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007443SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007444M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007445L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007446T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007447S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007448F: include/media/soc*
7449F: drivers/media/i2c/soc_camera/
7450F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007452SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007453M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007455F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007456
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007458M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007461F: drivers/md/
7462F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007463F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007466M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007467L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007469F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470
Michael Buesch61e115a2007-09-18 15:12:50 -04007471SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007472M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007473L: netdev@vger.kernel.org
7474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007475F: drivers/ssb/
7476F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007477
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007479M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007480L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007481W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007483F: Documentation/laptops/sony-laptop.txt
7484F: drivers/char/sonypi.c
7485F: drivers/platform/x86/sony-laptop.c
7486F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487
Alex Dubovbaf85322008-02-09 10:20:54 -08007488SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007489M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007490W: http://tifmxx.berlios.de/
7491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007492F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007493
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007495M: Jaroslav Kysela <perex@perex.cz>
7496M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007497L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007498W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007499T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007500T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007502F: Documentation/sound/
7503F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007504F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007505F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506
Mark Brownbd903bd2008-11-19 19:16:05 +00007507SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007508M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007509M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007510T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007511L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007512W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007514F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007515F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007516
Sam Ravnborg473321f2009-01-04 15:47:49 -08007517SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007518M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007520Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007521T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7522T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007524F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007525F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526
David S. Miller6404fcc2010-03-16 01:00:17 -07007527SPARC SERIAL DRIVERS
7528M: "David S. Miller" <davem@davemloft.net>
7529L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007530T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7531T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007532S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007533F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007534F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007535F: drivers/tty/serial/sunhv.c
7536F: drivers/tty/serial/sunsab.c
7537F: drivers/tty/serial/sunsab.h
7538F: drivers/tty/serial/sunsu.c
7539F: drivers/tty/serial/sunzilog.c
7540F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007541
Christopher Li389325b2012-04-05 14:25:14 -07007542SPARSE CHECKER
7543M: "Christopher Li" <sparse@chrisli.org>
7544L: linux-sparse@vger.kernel.org
7545W: https://sparse.wiki.kernel.org/
7546T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7547T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7548S: Maintained
7549F: include/linux/compiler.h
7550
viresh kumarfc0c1952010-04-01 12:31:21 +01007551SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007552M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307553M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007554L: spear-devel@list.st.com
7555L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007556W: http://www.st.com/spear
7557S: Maintained
7558F: arch/arm/plat-spear/
7559
Viresh Kumar71e09a92012-04-20 22:39:48 +05307560SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007561M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307562M: Shiraz Hashim <shiraz.hashim@st.com>
7563L: spear-devel@list.st.com
7564L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7565W: http://www.st.com/spear
7566S: Maintained
7567F: arch/arm/mach-spear13xx/
7568
viresh kumarfc0c1952010-04-01 12:31:21 +01007569SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007570M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307571M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007572L: spear-devel@list.st.com
7573L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007574W: http://www.st.com/spear
7575S: Maintained
7576F: arch/arm/mach-spear3xx/
7577
7578SPEAR6XX MACHINE SUPPORT
7579M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307580M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007581M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007582L: spear-devel@list.st.com
7583L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007584W: http://www.st.com/spear
7585S: Maintained
7586F: arch/arm/mach-spear6xx/
7587
7588SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007589M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007590L: spear-devel@list.st.com
7591L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007592W: http://www.st.com/spear
7593S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307594F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007595
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007596SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007597M: Mark Brown <broonie@kernel.org>
Grant Likely19624232013-04-08 11:51:42 +01007598M: Grant Likely <grant.likely@linaro.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007599L: spi-devel-general@lists.sourceforge.net
Mark Browne7e4e132013-04-18 18:18:47 +01007600T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007601Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007603F: Documentation/spi/
7604F: drivers/spi/
7605F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007606F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007607
Jim Lewis2752e402006-09-29 02:01:19 -07007608SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007609M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7610M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007611L: netdev@vger.kernel.org
7612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007613F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007614F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007615
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007616SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007617M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007618L: linuxppc-dev@lists.ozlabs.org
7619L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007620W: http://www.ibm.com/developerworks/power/cell/
7621S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007622F: Documentation/filesystems/spufs.txt
7623F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007624
Phillip Lougherfc555842009-01-05 08:46:29 +00007625SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007626M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007627L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7628W: http://squashfs.org.uk
7629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007630F: Documentation/filesystems/squashfs.txt
7631F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007632
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007634M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007636F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637
Linus Torvalds26e9a392008-10-17 09:50:12 -07007638STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007639M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007640L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007641S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007642
Linus Torvalds26e9a392008-10-17 09:50:12 -07007643STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007644M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007645T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007646L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007648F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007649
Joe Perchesc8c8b102011-07-05 09:42:12 -07007650STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7651M: Henk de Groot <pe1dnn@amsat.org>
7652S: Odd Fixes
7653F: drivers/staging/wlags49_h2/
7654F: drivers/staging/wlags49_h25/
7655
Joe Perchesc9555152011-07-05 09:42:01 -07007656STAGING - ASUS OLED
7657M: Jakub Schmidtke <sjakub@gmail.com>
7658S: Odd Fixes
7659F: drivers/staging/asus_oled/
7660
Joe Perchesebd3d012011-07-05 09:42:02 -07007661STAGING - COMEDI
7662M: Ian Abbott <abbotti@mev.co.uk>
7663M: Mori Hess <fmhess@users.sourceforge.net>
7664S: Odd Fixes
7665F: drivers/staging/comedi/
7666
Joe Perches8ca572c2011-07-05 09:42:03 -07007667STAGING - CRYSTAL HD VIDEO DECODER
7668M: Naren Sankar <nsankar@broadcom.com>
7669M: Jarod Wilson <jarod@wilsonet.com>
7670M: Scott Davilla <davilla@4pi.com>
7671M: Manu Abraham <abraham.manu@gmail.com>
7672S: Odd Fixes
7673F: drivers/staging/crystalhd/
7674
Joe Perches0f16ffc2011-07-05 09:42:04 -07007675STAGING - ECHO CANCELLER
7676M: Steve Underwood <steveu@coppice.org>
7677M: David Rowe <david@rowetel.com>
7678S: Odd Fixes
7679F: drivers/staging/echo/
7680
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007681STAGING - ET131X NETWORK DRIVER
7682M: Mark Einon <mark.einon@gmail.com>
7683S: Odd Fixes
7684F: drivers/staging/et131x/
7685
Joe Perchesa0138162011-07-05 15:21:34 -07007686STAGING - FLARION FT1000 DRIVERS
7687M: Marek Belisko <marek.belisko@gmail.com>
7688S: Odd Fixes
7689F: drivers/staging/ft1000/
7690
Joe Perchesec3fab92011-07-05 09:42:05 -07007691STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7692M: David Täht <d@teklibre.com>
7693S: Odd Fixes
7694F: drivers/staging/frontier/
7695
Hans Verkuil98ded592013-03-09 12:59:44 -03007696STAGING - GO7007 MPEG CODEC
7697M: Hans Verkuil <hans.verkuil@cisco.com>
7698S: Maintained
7699F: drivers/staging/media/go7007/
7700
Joe Perches6c1bb422011-07-05 09:42:07 -07007701STAGING - INDUSTRIAL IO
7702M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007703L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007704S: Odd Fixes
7705F: drivers/staging/iio/
7706
Joe Perchesa0138162011-07-05 15:21:34 -07007707STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7708M: Jarod Wilson <jarod@wilsonet.com>
7709W: http://www.lirc.org/
7710S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007711F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007712
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007713STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007714M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007715M: Marc Dietrich <marvin24@gmx.de>
7716L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007717L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007718S: Maintained
7719F: drivers/staging/nvec/
7720
Joe Perchesa0138162011-07-05 15:21:34 -07007721STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7722M: Andres Salomon <dilinger@queued.net>
7723M: Chris Ball <cjb@laptop.org>
7724M: Jon Nettleton <jon.nettleton@gmail.com>
7725W: http://wiki.laptop.org/go/DCON
7726S: Odd Fixes
7727F: drivers/staging/olpc_dcon/
7728
Chris Kelly94cfdd12012-03-14 10:55:42 +00007729STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007730M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007731S: Maintained
7732F: drivers/staging/ozwpan/
7733
Joe Perchesa0138162011-07-05 15:21:34 -07007734STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007735M: Willy Tarreau <willy@meta-x.org>
7736S: Odd Fixes
7737F: drivers/staging/panel/
7738
Joe Perchesa0138162011-07-05 15:21:34 -07007739STAGING - REALTEK RTL8712U DRIVERS
7740M: Larry Finger <Larry.Finger@lwfinger.net>
7741M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7742S: Odd Fixes
7743F: drivers/staging/rtl8712/
7744
Joe Perches9629fa82011-07-05 09:42:09 -07007745STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7746M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7747S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007748F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007749
Joe Perchesa0138162011-07-05 15:21:34 -07007750STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007751M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7752S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007753F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007754
7755STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7756M: William Hubbs <w.d.hubbs@gmail.com>
7757M: Chris Brannon <chris@the-brannons.com>
7758M: Kirk Reiser <kirk@braille.uwo.ca>
7759M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7760L: speakup@braille.uwo.ca
7761W: http://www.linux-speakup.org/
7762S: Odd Fixes
7763F: drivers/staging/speakup/
7764
7765STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007766M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007767S: Odd Fixes
7768F: drivers/staging/tidspbridge/
7769
Joe Perchesa0138162011-07-05 15:21:34 -07007770STAGING - USB ENE SM/MS CARD READER DRIVER
7771M: Al Cho <acho@novell.com>
7772S: Odd Fixes
7773F: drivers/staging/keucr/
7774
Joe Perchesb3e871c2011-07-05 09:42:10 -07007775STAGING - VIA VT665X DRIVERS
7776M: Forest Bond <forest@alittletooquiet.net>
7777S: Odd Fixes
7778F: drivers/staging/vt665?/
7779
Joe Perches81a9a522011-07-05 09:42:11 -07007780STAGING - WINBOND IS89C35 WLAN USB DRIVER
7781M: Pavel Machek <pavel@ucw.cz>
7782S: Odd Fixes
7783F: drivers/staging/winbond/
7784
Joe Perches709bcb02011-07-05 09:42:13 -07007785STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007786M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007787S: Odd Fixes
7788F: drivers/staging/xgifb/
7789
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007791M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007792S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007793F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007795SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007796M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007797W: http://sammy.net/sun3/
7798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007799F: arch/m68k/kernel/*sun3*
7800F: arch/m68k/sun3*/
7801F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007802F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007803
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007804SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007805M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007806L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007808Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007809T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007810S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007811F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007812F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007813F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007815SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007816M: Len Brown <len.brown@intel.com>
7817M: Pavel Machek <pavel@ucw.cz>
7818M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007819L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007821F: Documentation/power/
7822F: arch/x86/kernel/acpi/
7823F: drivers/base/power/
7824F: kernel/power/
7825F: include/linux/suspend.h
7826F: include/linux/freezer.h
7827F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828
7829SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007830M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831L: linux-video@atrey.karlin.mff.cuni.cz
7832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007833F: Documentation/svga.txt
7834F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007836SWIOTLB SUBSYSTEM
7837M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7838L: linux-kernel@vger.kernel.org
7839S: Supported
7840F: lib/swiotlb.c
7841F: arch/*/kernel/pci-swiotlb.c
7842F: include/linux/swiotlb.h
7843
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307844SYNOPSYS ARC ARCHITECTURE
7845M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307846S: Supported
7847F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307848F: Documentation/devicetree/bindings/arc/
7849F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307850
Linus Torvalds1da177e2005-04-16 15:20:36 -07007851SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007852M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007854F: Documentation/filesystems/sysv-fs.txt
7855F: fs/sysv/
7856F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007858TARGET SUBSYSTEM
7859M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7860L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007861L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007862L: http://groups.google.com/group/linux-iscsi-target-dev
7863W: http://www.linux-iscsi.org
Nicholas Bellinger452cf322013-05-11 16:27:56 -07007864T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007865S: Supported
7866F: drivers/target/
7867F: include/target/
7868F: Documentation/target/
7869
Alan Cox4e688522008-04-30 00:52:11 -07007870TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007871M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007873F: Documentation/accounting/taskstats*
7874F: include/linux/taskstats*
7875F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007876
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007877TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007878M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007879L: netdev@vger.kernel.org
7880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007881F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007882F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007883F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007884
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007885TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007886M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7887M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007888W: http://tcp-lp-mod.sourceforge.net/
7889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007890F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007891
Antti Palosaari91952bc2012-10-01 12:28:46 -03007892TDA10071 MEDIA DRIVER
7893M: Antti Palosaari <crope@iki.fi>
7894L: linux-media@vger.kernel.org
7895W: http://linuxtv.org/
7896W: http://palosaari.fi/linux/
7897Q: http://patchwork.linuxtv.org/project/linux-media/list/
7898T: git git://linuxtv.org/anttip/media_tree.git
7899S: Maintained
7900F: drivers/media/dvb-frontends/tda10071*
7901
7902TDA18212 MEDIA DRIVER
7903M: Antti Palosaari <crope@iki.fi>
7904L: linux-media@vger.kernel.org
7905W: http://linuxtv.org/
7906W: http://palosaari.fi/linux/
7907Q: http://patchwork.linuxtv.org/project/linux-media/list/
7908T: git git://linuxtv.org/anttip/media_tree.git
7909S: Maintained
7910F: drivers/media/tuners/tda18212*
7911
7912TDA18218 MEDIA DRIVER
7913M: Antti Palosaari <crope@iki.fi>
7914L: linux-media@vger.kernel.org
7915W: http://linuxtv.org/
7916W: http://palosaari.fi/linux/
7917Q: http://patchwork.linuxtv.org/project/linux-media/list/
7918T: git git://linuxtv.org/anttip/media_tree.git
7919S: Maintained
7920F: drivers/media/tuners/tda18218*
7921
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007922TDA18271 MEDIA DRIVER
7923M: Michael Krufky <mkrufky@linuxtv.org>
7924L: linux-media@vger.kernel.org
7925W: http://linuxtv.org/
7926W: http://github.com/mkrufky
7927Q: http://patchwork.linuxtv.org/project/linux-media/list/
7928T: git git://linuxtv.org/mkrufky/tuners.git
7929S: Maintained
7930F: drivers/media/tuners/tda18271*
7931
Michael Krufkye48307a2012-10-02 00:56:33 -03007932TDA827x MEDIA DRIVER
7933M: Michael Krufky <mkrufky@linuxtv.org>
7934L: linux-media@vger.kernel.org
7935W: http://linuxtv.org/
7936W: http://github.com/mkrufky
7937Q: http://patchwork.linuxtv.org/project/linux-media/list/
7938T: git git://linuxtv.org/mkrufky/tuners.git
7939S: Maintained
7940F: drivers/media/tuners/tda8290.*
7941
Michael Krufky66cf9212012-10-02 00:56:28 -03007942TDA8290 MEDIA DRIVER
7943M: Michael Krufky <mkrufky@linuxtv.org>
7944L: linux-media@vger.kernel.org
7945W: http://linuxtv.org/
7946W: http://github.com/mkrufky
7947Q: http://patchwork.linuxtv.org/project/linux-media/list/
7948T: git git://linuxtv.org/mkrufky/tuners.git
7949S: Maintained
7950F: drivers/media/tuners/tda8290.*
7951
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007952TDA9840 MEDIA DRIVER
7953M: Hans Verkuil <hverkuil@xs4all.nl>
7954L: linux-media@vger.kernel.org
7955T: git git://linuxtv.org/media_tree.git
7956W: http://linuxtv.org
7957S: Maintained
7958F: drivers/media/i2c/tda9840*
7959
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007960TEA5761 TUNER DRIVER
7961M: Mauro Carvalho Chehab <mchehab@redhat.com>
7962L: linux-media@vger.kernel.org
7963W: http://linuxtv.org
7964T: git git://linuxtv.org/media_tree.git
7965S: Odd fixes
7966F: drivers/media/tuners/tea5761.*
7967
7968TEA5767 TUNER DRIVER
7969M: Mauro Carvalho Chehab <mchehab@redhat.com>
7970L: linux-media@vger.kernel.org
7971W: http://linuxtv.org
7972T: git git://linuxtv.org/media_tree.git
7973S: Maintained
7974F: drivers/media/tuners/tea5767.*
7975
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007976TEA6415C MEDIA DRIVER
7977M: Hans Verkuil <hverkuil@xs4all.nl>
7978L: linux-media@vger.kernel.org
7979T: git git://linuxtv.org/media_tree.git
7980W: http://linuxtv.org
7981S: Maintained
7982F: drivers/media/i2c/tea6415c*
7983
7984TEA6420 MEDIA DRIVER
7985M: Hans Verkuil <hverkuil@xs4all.nl>
7986L: linux-media@vger.kernel.org
7987T: git git://linuxtv.org/media_tree.git
7988W: http://linuxtv.org
7989S: Maintained
7990F: drivers/media/i2c/tea6420*
7991
Jiri Pirko3d249d42011-11-11 22:16:48 +00007992TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007993M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007994L: netdev@vger.kernel.org
7995S: Supported
7996F: drivers/net/team/
7997F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007998F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007999
Vivien Didelot7d029122013-01-04 16:18:14 -05008000TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8001M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8002S: Maintained
8003F: arch/x86/platform/ts5500/
8004
Sean Young40ad4a32012-11-19 10:32:53 -03008005TECHNOTREND USB IR RECEIVER
8006M: Sean Young <sean@mess.org>
8007L: linux-media@vger.kernel.org
8008S: Maintained
8009F: drivers/media/rc/ttusbir.c
8010
Erik Gilling84b94142010-06-09 15:35:53 -07008011TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07008012M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07008013L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07008014Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8015T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07008016S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07008017N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07008018
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008019TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008020M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008021L: netdev@vger.kernel.org
8022S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008023F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008024
Alan Cox4e688522008-04-30 00:52:11 -07008025Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008026M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008028F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008029
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008030TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008031M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008032M: Max Filippov <jcmvbkbc@gmail.com>
8033L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008035F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008036
Zhang Ruid3fb6952012-11-15 08:58:27 +08008037THERMAL
8038M: Zhang Rui <rui.zhang@intel.com>
Eduardo Valentinfa3031d2013-04-10 14:44:08 +00008039M: Eduardo Valentin <eduardo.valentin@ti.com>
Zhang Ruid3fb6952012-11-15 08:58:27 +08008040L: linux-pm@vger.kernel.org
8041T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
Eduardo Valentin2f99a472013-04-10 14:44:09 +00008042Q: https://patchwork.kernel.org/project/linux-pm/list/
Zhang Ruid3fb6952012-11-15 08:58:27 +08008043S: Supported
8044F: drivers/thermal/
8045F: include/linux/thermal.h
Eduardo Valentincfaf7172013-04-17 17:12:21 +00008046F: include/linux/cpu_cooling.h
Zhang Ruid3fb6952012-11-15 08:58:27 +08008047
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008048THINGM BLINK(1) USB RGB LED DRIVER
8049M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8050S: Maintained
8051F: drivers/hid/hid-thingm.c
8052
Alan Cox4e688522008-04-30 00:52:11 -07008053THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008054M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008055L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008056L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008057W: http://ibm-acpi.sourceforge.net
8058W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008059T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008061F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008062
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008063TI BANDGAP AND THERMAL DRIVER
8064M: Eduardo Valentin <eduardo.valentin@ti.com>
8065L: linux-pm@vger.kernel.org
8066S: Maintained
8067F: drivers/staging/omap-thermal/
8068
Alex Dubov4020f2d2006-10-04 02:15:37 -07008069TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008070M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008072F: drivers/misc/tifm*
8073F: drivers/mmc/host/tifm_sd.c
8074F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008075
M R Swami Reddy152ad442012-04-02 20:02:31 +05308076TI LM49xxx FAMILY ASoC CODEC DRIVERS
8077M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308078M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308079L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8080S: Maintained
8081F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308082F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308083
Kim, Milo0edd8072012-12-17 16:01:17 -08008084TI LP855x BACKLIGHT DRIVER
8085M: Milo Kim <milo.kim@ti.com>
8086S: Maintained
8087F: Documentation/backlight/lp855x-driver.txt
8088F: drivers/video/backlight/lp855x_bl.c
8089F: include/linux/platform_data/lp855x.h
8090
Kim, Milofaf13f62012-12-10 05:27:03 +00008091TI LP8727 CHARGER DRIVER
8092M: Milo Kim <milo.kim@ti.com>
8093S: Maintained
8094F: drivers/power/lp8727_charger.c
8095F: include/linux/platform_data/lp8727.h
8096
Kim, Milo22f12292012-12-10 05:27:55 +00008097TI LP8788 MFD DRIVER
8098M: Milo Kim <milo.kim@ti.com>
8099S: Maintained
8100F: drivers/iio/adc/lp8788_adc.c
8101F: drivers/leds/leds-lp8788.c
8102F: drivers/mfd/lp8788*.c
8103F: drivers/power/lp8788-charger.c
8104F: drivers/regulator/lp8788-*.c
8105F: include/linux/mfd/lp8788*.h
8106
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008107TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008108M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008109L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8110S: Maintained
8111F: sound/soc/codecs/twl4030*
8112
Luciano Coelho90921012011-11-20 21:40:41 +02008113TI WILINK WIRELESS DRIVERS
8114M: Luciano Coelho <coelho@ti.com>
8115L: linux-wireless@vger.kernel.org
8116W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8117W: http://wireless.kernel.org/en/users/Drivers/wl1251
8118T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8119S: Maintained
8120F: drivers/net/wireless/ti/
8121F: include/linux/wl12xx.h
8122
Per Lidene86eaa32006-01-12 16:45:18 +01008123TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008124M: Jon Maloy <jon.maloy@ericsson.com>
8125M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008126L: netdev@vger.kernel.org (core kernel code)
8127L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008128W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008129S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008130F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008131F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008132
Chris Metcalf867e3592010-05-28 23:09:12 -04008133TILE ARCHITECTURE
8134M: Chris Metcalf <cmetcalf@tilera.com>
8135W: http://www.tilera.com/scm/
8136S: Supported
8137F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008138F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008139F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008140F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008141
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008143M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008144L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145W: http://sourceforge.net/projects/tlan/
8146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008147F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008148F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008150TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008151M: Kentaro Takeda <takedakn@nttdata.co.jp>
8152M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008153L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8154L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008155L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8156L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8157W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008158T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008160F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008161
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008162TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008163M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008164L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008165S: Maintained
8166F: drivers/platform/x86/topstar-laptop.c
8167
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008169L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008170S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008171F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172
8173TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008174M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008175L: tlinux-users@tce.toshiba-dme.co.jp
8176W: http://www.buzzard.org.uk/toshiba/
8177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008178F: drivers/char/toshiba.c
8179F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008180F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181
Pierre Ossmand719f902009-03-24 21:06:09 +01008182TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008183M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008184M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008185L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008186S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008187F: drivers/mmc/host/tmio_mmc*
8188F: drivers/mmc/host/sh_mobile_sdhi.c
8189F: include/linux/mmc/tmio.h
8190F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008191
Guenter Roeck917cc4e2013-05-19 20:44:27 -07008192TMP401 HARDWARE MONITOR DRIVER
8193M: Guenter Roeck <linux@roeck-us.net>
8194L: lm-sensors@lm-sensors.org
8195S: Maintained
8196F: Documentation/hwmon/tmp401
8197F: drivers/hwmon/tmp401.c
8198
Hugh Dickins98f32602009-05-21 20:33:58 +01008199TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008200M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008201L: linux-mm@kvack.org
8202S: Maintained
8203F: include/linux/shmem_fs.h
8204F: mm/shmem.c
8205
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008206TM6000 VIDEO4LINUX DRIVER
8207M: Mauro Carvalho Chehab <mchehab@redhat.com>
8208L: linux-media@vger.kernel.org
8209W: http://linuxtv.org
8210T: git git://linuxtv.org/media_tree.git
8211S: Odd fixes
8212F: drivers/media/usb/tm6000/
8213
Alan Cox4e688522008-04-30 00:52:11 -07008214TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008215M: Kent Yoder <key@linux.vnet.ibm.com>
8216M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008217W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008218M: Marcel Selhorst <tpmdd@selhorst.net>
8219M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008220W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008221L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008223F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008224
Joe Perchesd6f005a2009-10-26 16:49:40 -07008225TRACING
8226M: Steven Rostedt <rostedt@goodmis.org>
8227M: Frederic Weisbecker <fweisbec@gmail.com>
8228M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008229T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008230S: Maintained
8231F: Documentation/trace/ftrace.txt
8232F: arch/*/*/*/ftrace.h
8233F: arch/*/kernel/ftrace.c
8234F: include/*/ftrace.h
8235F: include/linux/trace*.h
8236F: include/trace/
8237F: kernel/trace/
8238
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008240M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008241T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008243K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244
Alan Cox4e688522008-04-30 00:52:11 -07008245TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008246M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008247M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008248S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008249T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008250F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008251F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008252F: include/linux/serial_core.h
8253F: include/linux/serial.h
8254F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008255F: include/uapi/linux/serial_core.h
8256F: include/uapi/linux/serial.h
8257F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008258
Antti Palosaari91952bc2012-10-01 12:28:46 -03008259TUA9001 MEDIA DRIVER
8260M: Antti Palosaari <crope@iki.fi>
8261L: linux-media@vger.kernel.org
8262W: http://linuxtv.org/
8263W: http://palosaari.fi/linux/
8264Q: http://patchwork.linuxtv.org/project/linux-media/list/
8265T: git git://linuxtv.org/anttip/media_tree.git
8266S: Maintained
8267F: drivers/media/tuners/tua9001*
8268
Grant Grundler740db6d2008-02-17 11:53:49 -07008269TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008270M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008271L: netdev@vger.kernel.org
8272S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008273F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008274
8275TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008276M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277W: http://vtun.sourceforge.net/tun
8278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008279F: Documentation/networking/tuntap.txt
8280F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008282TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008283M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008285F: drivers/tc/
8286F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008287
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008289M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008290L: linux-scsi@vger.kernel.org
8291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008292F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008294UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008295M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008296M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008297L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008298T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008299W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008301F: Documentation/filesystems/ubifs.txt
8302F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008303
Alan Coxcc2020e2008-05-19 14:21:51 +01008304UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008305M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008306W: http://www.uclinux.org/
8307L: uclinux-dev@uclinux.org (subscribers-only)
8308S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008309F: arch/m68k/*/*_no.*
8310F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008311
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008312UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008313M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008314W: http://uclinux-h8.sourceforge.jp/
8315S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008316F: arch/h8300/
8317F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008318F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008319
Linus Torvalds1da177e2005-04-16 15:20:36 -07008320UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008321M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008323F: Documentation/filesystems/udf.txt
8324F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325
Alan Coxcc2020e2008-05-19 14:21:51 +01008326UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008327M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008329F: Documentation/filesystems/ufs.txt
8330F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008331
David Herrmann0a09d3a2012-06-10 15:16:28 +02008332UHID USERSPACE HID IO DRIVER:
8333M: David Herrmann <dh.herrmann@googlemail.com>
8334L: linux-input@vger.kernel.org
8335S: Maintained
8336F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008337F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008338
David Vrabel18332a82008-09-17 16:34:44 +01008339ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008340L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008341S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008342F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008343F: include/linux/uwb.h
8344F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008345
GuanXuetaob31d8272011-01-16 00:35:49 +08008346UNICORE32 ARCHITECTURE:
8347M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8348W: http://mprc.pku.edu.cn/~guanxuetao/linux
8349S: Maintained
8350T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8351F: arch/unicore32/
8352
Tony Finchd8379ab2009-11-27 15:50:30 +00008353UNIFDEF
8354M: Tony Finch <dot@dotat.at>
8355W: http://dotat.at/prog/unifdef
8356S: Maintained
8357F: scripts/unifdef.c
8358
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008360M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361W: http://www.kernel.dk
8362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008363F: Documentation/cdrom/
8364F: drivers/cdrom/cdrom.c
8365F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008366F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008367
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308368UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8369M: Vinayak Holikatti <vinholikatti@gmail.com>
8370M: Santosh Y <santoshsy@gmail.com>
8371L: linux-scsi@vger.kernel.org
8372S: Supported
8373F: Documentation/scsi/ufs.txt
8374F: drivers/scsi/ufs/
8375
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008376UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008377M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008378W: http://www.linux-mtd.infradead.org/
8379L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008380T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008381S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008382F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008383F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008384F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008385
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008386UNSORTED BLOCK IMAGES (UBI) Fastmap
8387M: Richard Weinberger <richard@nod.at>
8388L: linux-mtd@lists.infradead.org
8389S: Maintained
8390F: drivers/mtd/ubi/fastmap.c
8391
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008393M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008394L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008396F: Documentation/usb/acm.txt
8397F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008399USB AR5523 WIRELESS DRIVER
8400M: Pontus Fuchs <pontus.fuchs@gmail.com>
8401L: linux-wireless@vger.kernel.org
8402S: Maintained
8403F: drivers/net/wireless/ath/ar5523/
8404
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008405USB ATTACHED SCSI
8406M: Matthew Wilcox <willy@linux.intel.com>
8407M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008408M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008409L: linux-usb@vger.kernel.org
8410L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008411S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008412F: drivers/usb/storage/uas.c
8413
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008415M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008416L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008418F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008419F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008421USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008422M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008423L: linux-usb@vger.kernel.org
8424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008425F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008426
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008427USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008428M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008429L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008430W: http://www.linux-usb.org/usbnet
8431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008432F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008433
Alan Coxcc2020e2008-05-19 14:21:51 +01008434USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008435M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008436L: rio500-users@lists.sourceforge.net
8437W: http://rio500.sourceforge.net
8438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008439F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008440
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008442M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008443L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008445F: Documentation/usb/ehci.txt
8446F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008447
David Brownell69ae9e32006-11-14 02:03:31 -08008448USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008449M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008450L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008451W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008452T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008454F: drivers/usb/gadget/
8455F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008456
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008457USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008458M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008459L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008460T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008461S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008462F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008463F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464
matt mooney857aab32011-06-17 15:50:46 -07008465USB/IP DRIVERS
8466M: Matt Mooney <mfm@muteddisk.com>
8467L: linux-usb@vger.kernel.org
8468S: Maintained
8469F: drivers/staging/usbip/
8470
Olav Kongas959eea22005-11-03 17:38:14 +02008471USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008472M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008473L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008475F: drivers/usb/host/isp116x*
8476F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008477
Linus Torvalds1da177e2005-04-16 15:20:36 -07008478USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008479M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008480L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008482F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483
8484USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008485M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008486L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008487L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488S: Maintained
8489W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008490F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008491
Clemens Ladischaf399172011-01-10 16:32:54 +01008492USB MIDI DRIVER
8493M: Clemens Ladisch <clemens@ladisch.de>
8494L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8495T: git git://git.alsa-project.org/alsa-kernel.git
8496S: Maintained
8497F: sound/usb/midi.*
8498
Linus Torvalds1da177e2005-04-16 15:20:36 -07008499USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008500M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008501L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008503F: Documentation/usb/ohci.txt
8504F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008505
Matthias Urlichsba460e42005-07-14 00:33:47 -07008506USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008507M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008508L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008510F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008511
Linus Torvalds1da177e2005-04-16 15:20:36 -07008512USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008513M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008514L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008515L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008516T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008517W: http://pegasus2.sourceforge.net/
8518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008519F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520
Felipe Balbid3ad5582012-05-21 16:24:49 +03008521USB PHY LAYER
8522M: Felipe Balbi <balbi@ti.com>
8523L: linux-usb@vger.kernel.org
8524T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8525S: Maintained
8526F: drivers/usb/phy/
8527F: drivers/usb/otg/
8528
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008529USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008530M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008531L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008533F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534
8535USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008536M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008537L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008538L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008539T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540W: http://pegasus2.sourceforge.net/
8541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008542F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543
Alan Cox4e688522008-04-30 00:52:11 -07008544USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008545M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008546L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008548F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008549
8550USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008551M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008552L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008553S: Maintained
8554W: http://geocities.com/i0xox0i
8555W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008556F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008557
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008559M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008560W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008562F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563
8564USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008565M: Peter Berger <pberger@brimson.com>
8566M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008567L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008569F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570
8571USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008572M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008573L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008574S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008575F: Documentation/usb/usb-serial.txt
8576F: drivers/usb/serial/generic.c
8577F: drivers/usb/serial/usb-serial.c
8578F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008579
Linus Torvalds1da177e2005-04-16 15:20:36 -07008580USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008581M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008582L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008584F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008585
8586USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008587M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008588L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008590F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591
8592USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008593M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008594L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595W: http://www.connecttech.com
8596S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008597F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008598
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008599USB SMSC75XX ETHERNET DRIVER
8600M: Steve Glendinning <steve.glendinning@shawell.net>
8601L: netdev@vger.kernel.org
8602S: Maintained
8603F: drivers/net/usb/smsc75xx.*
8604
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008605USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008606M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008607L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008609F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008610
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008611USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008612M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008613L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008614L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008615T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008616W: http://www.linux-projects.org
8617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008618F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008619F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008620
8621USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008622M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008623L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008625T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008627F: Documentation/usb/
8628F: drivers/net/usb/
8629F: drivers/usb/
8630F: include/linux/usb.h
8631F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632
8633USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008634M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008635L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008637F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638
David Brownell69ae9e32006-11-14 02:03:31 -08008639USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008640M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008641L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008642W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008644F: drivers/net/usb/usbnet.c
8645F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008647USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008648M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008649L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008650L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008651T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008652W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008653S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008654F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008655F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008656
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008657USB VISION DRIVER
8658M: Hans Verkuil <hverkuil@xs4all.nl>
8659L: linux-media@vger.kernel.org
8660T: git git://linuxtv.org/media_tree.git
8661W: http://linuxtv.org
8662S: Odd Fixes
8663F: drivers/media/usb/usbvision/
8664
Laurent Pinchart8282da42012-10-04 02:32:42 +02008665USB WEBCAM GADGET
8666M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8667L: linux-usb@vger.kernel.org
8668S: Maintained
8669F: drivers/usb/gadget/*uvc*.c
8670F: drivers/usb/gadget/webcam.c
8671
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008672USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008673M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008674L: linux-wireless@vger.kernel.org
8675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008676F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008677
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008678USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008679M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008680L: linux-usb@vger.kernel.org
8681S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008682F: drivers/usb/host/xhci*
8683F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008684
Linus Torvalds1da177e2005-04-16 15:20:36 -07008685USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008686L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008688S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008689F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008690
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008691USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008692M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008693L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008694L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008695T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008696W: http://royale.zerezo.com/zr364xx/
8697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008698F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008699F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008700
Randy Dunlape7839f22008-10-12 16:11:45 -07008701USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008702M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008703M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704L: user-mode-linux-devel@lists.sourceforge.net
8705L: user-mode-linux-user@lists.sourceforge.net
8706W: http://user-mode-linux.sourceforge.net
8707S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008708F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008709F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008710F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008711F: fs/hostfs/
8712F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008713
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008714USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008715M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008716M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008718F: Documentation/DocBook/uio-howto.tmpl
8719F: drivers/uio/
8720F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008721
Karel Zak256cccb2012-06-01 10:13:09 +02008722UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008723M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008724L: util-linux@vger.kernel.org
8725W: http://en.wikipedia.org/wiki/Util-linux
8726T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008727S: Maintained
8728
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008729UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008730M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008731L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008732W: http://dev.gentoo.org/~spock/projects/uvesafb/
8733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008734F: Documentation/fb/uvesafb.txt
8735F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008736
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008737VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008738M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008740F: Documentation/filesystems/vfat.txt
8741F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008742
Alex Williamsoncba33452012-07-31 08:16:22 -06008743VFIO DRIVER
8744M: Alex Williamson <alex.williamson@redhat.com>
8745L: kvm@vger.kernel.org
8746S: Maintained
8747F: Documentation/vfio.txt
8748F: drivers/vfio/
8749F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008750F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008751
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008752VIDEOBUF2 FRAMEWORK
8753M: Pawel Osciak <pawel@osciak.com>
8754M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008755M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008756L: linux-media@vger.kernel.org
8757S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008758F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008759F: include/media/videobuf2-*
8760
Amit Shah9a824462010-03-23 18:23:09 +05308761VIRTIO CONSOLE DRIVER
8762M: Amit Shah <amit.shah@redhat.com>
8763L: virtualization@lists.linux-foundation.org
8764S: Maintained
8765F: drivers/char/virtio_console.c
8766F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008767F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308768
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308769VIRTIO CORE, NET AND BLOCK DRIVERS
8770M: Rusty Russell <rusty@rustcorp.com.au>
8771M: "Michael S. Tsirkin" <mst@redhat.com>
8772L: virtualization@lists.linux-foundation.org
8773S: Maintained
8774F: drivers/virtio/
8775F: drivers/net/virtio_net.c
8776F: drivers/block/virtio_blk.c
8777F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308778F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308779
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008780VIRTIO HOST (VHOST)
8781M: "Michael S. Tsirkin" <mst@redhat.com>
8782L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008783L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008784L: netdev@vger.kernel.org
8785S: Maintained
8786F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008787F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008788
Linus Torvalds1da177e2005-04-16 15:20:36 -07008789VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008790M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008791S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008792F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008793
Harald Weltef0bf7f62009-06-17 20:22:39 +02008794VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008795M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008796M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008797S: Maintained
8798F: drivers/mmc/host/via-sdmmc.c
8799
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008800VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008801M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008802L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008803S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008804F: include/linux/via-core.h
8805F: include/linux/via-gpio.h
8806F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008807F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008808
Francois Romieu01f20732007-01-26 00:57:17 -08008809VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008810M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008811L: netdev@vger.kernel.org
8812S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008813F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008814
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008815VIVI VIRTUAL VIDEO DRIVER
8816M: Hans Verkuil <hverkuil@xs4all.nl>
8817L: linux-media@vger.kernel.org
8818T: git git://linuxtv.org/media_tree.git
8819W: http://linuxtv.org
8820S: Maintained
8821F: drivers/media/platform/vivi*
8822
Patrick McHardybe7f8272007-10-23 20:26:36 -07008823VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008824M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008825L: netdev@vger.kernel.org
8826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008827F: drivers/net/macvlan.c
8828F: include/linux/if_*vlan.h
8829F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008830
Florian Fainelli55e331c2009-06-16 15:33:53 -07008831VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008832M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008833L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008834S: Maintained
8835F: drivers/vlynq/vlynq.c
8836F: include/linux/vlynq.h
8837
Martyn Welch390beae2012-05-03 17:52:36 +01008838VME SUBSYSTEM
8839M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008840M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008841M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8842L: devel@driverdev.osuosl.org
8843S: Maintained
8844T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8845F: Documentation/vme_api.txt
8846F: drivers/staging/vme/
8847F: drivers/vme/
8848F: include/linux/vme*
8849
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008850VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008851M: Shreyas Bhatewara <sbhatewara@vmware.com>
8852M: "VMware, Inc." <pv-drivers@vmware.com>
8853L: netdev@vger.kernel.org
8854S: Maintained
8855F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008856
Alok Kataria851b1642009-10-13 14:51:05 -07008857VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008858M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008859M: VMware PV-Drivers <pv-drivers@vmware.com>
8860L: linux-scsi@vger.kernel.org
8861S: Maintained
8862F: drivers/scsi/vmw_pvscsi.c
8863F: drivers/scsi/vmw_pvscsi.h
8864
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008865VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08008866M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008867M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008868W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008869W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008870T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008871S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008872F: drivers/regulator/
8873F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008874
Juerg Haefligerab413192006-09-24 20:54:04 +02008875VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008876M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008877L: lm-sensors@lm-sensors.org
8878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008879F: Documentation/hwmon/vt1211
8880F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008881
Roger Lucas1de9e372005-11-26 20:20:05 +01008882VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008883M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008884L: lm-sensors@lm-sensors.org
8885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008886F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008887
Tony Olech88095e72011-05-14 16:48:13 -04008888VUB300 USB to SDIO/SD/MMC bridge chip
8889M: Tony Olech <tony.olech@elandigitalsystems.com>
8890L: linux-mmc@vger.kernel.org
8891L: linux-usb@vger.kernel.org
8892S: Supported
8893F: drivers/mmc/host/vub300.c
8894
Linus Torvalds1da177e2005-04-16 15:20:36 -07008895W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008896M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008898F: Documentation/w1/
8899F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900
Charles Spirakis13927072006-07-05 18:05:15 +02008901W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008902M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008903L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008905F: Documentation/hwmon/w83791d
8906F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008907
Rudolf Marek61db0112006-12-12 18:18:30 +01008908W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008909M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008910L: lm-sensors@lm-sensors.org
8911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008912F: Documentation/hwmon/w83793
8913F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008914
Jean Delvaree3760b42010-10-28 20:31:49 +02008915W83795 HARDWARE MONITORING DRIVER
8916M: Jean Delvare <khali@linux-fr.org>
8917L: lm-sensors@lm-sensors.org
8918S: Maintained
8919F: drivers/hwmon/w83795.c
8920
Linus Torvalds1da177e2005-04-16 15:20:36 -07008921W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008922M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008924F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008926WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008927M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008928L: linux-watchdog@vger.kernel.org
8929W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008930T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008932F: Documentation/watchdog/
8933F: drivers/watchdog/
8934F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008935F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008936
Linus Torvalds1da177e2005-04-16 15:20:36 -07008937WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008938M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008939L: linux-scsi@vger.kernel.org
8940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008941F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008942
David Herrmannb22e00f2011-09-06 13:50:40 +02008943WIIMOTE HID DRIVER
8944M: David Herrmann <dh.herrmann@googlemail.com>
8945L: linux-input@vger.kernel.org
8946S: Maintained
8947F: drivers/hid/hid-wiimote*
8948
David Härdemane258b802009-09-21 17:04:53 -07008949WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008950M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008951S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008952F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008953
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008954WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008955M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008956M: linux-wimax@intel.com
8957L: wimax@linuxwimax.org
8958S: Supported
8959W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008960F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008961F: include/linux/wimax/debug.h
8962F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008963F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008964F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008965
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008966WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008967M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008969F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008970
Linus Torvalds1da177e2005-04-16 15:20:36 -07008971WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008972M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008973L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008974W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008976F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008977
Mark Brownfebf1df2008-04-02 00:51:09 -04008978WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008979M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8980M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008981L: linux-input@vger.kernel.org
8982T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8983W: http://opensource.wolfsonmicro.com/node/7
8984S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008985F: drivers/input/touchscreen/*wm97*
8986F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008987
Mark Brown055bcbc2010-08-13 14:18:12 +01008988WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008989M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008990L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008991T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008992T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008993W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008994S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008995F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008996F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008997F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008998F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008999F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01009000F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009001F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05009002F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09009003F: drivers/input/misc/wm831x-on.c
9004F: drivers/input/touchscreen/wm831x-ts.c
9005F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009006F: drivers/mfd/arizona*
9007F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01009008F: drivers/power/wm83*.c
9009F: drivers/rtc/rtc-wm83*.c
9010F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01009011F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01009012F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01009013F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01009014F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01009015F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08009016F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09009017F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01009018F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01009019F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01009020F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01009021
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009022WORKQUEUE
9023M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009024T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9025S: Maintained
9026F: include/linux/workqueue.h
9027F: kernel/workqueue.c
9028F: Documentation/workqueue.txt
9029
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009031M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009032L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009033S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009034F: Documentation/networking/x25*
9035F: include/net/x25*
9036F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009037
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009038X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009039M: Thomas Gleixner <tglx@linutronix.de>
9040M: Ingo Molnar <mingo@redhat.com>
9041M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009042M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009043T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009045F: Documentation/x86/
9046F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009047
Matthew Garrettd0944852010-02-11 10:40:13 -05009048X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009049M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009050L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009051T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009052S: Maintained
9053F: drivers/platform/x86
9054
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009055X86 MCE INFRASTRUCTURE
9056M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009057M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009058L: linux-edac@vger.kernel.org
9059S: Maintained
9060F: arch/x86/kernel/cpu/mcheck/*
9061
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009062XC2028/3028 TUNER DRIVER
9063M: Mauro Carvalho Chehab <mchehab@redhat.com>
9064L: linux-media@vger.kernel.org
9065W: http://linuxtv.org
9066T: git git://linuxtv.org/media_tree.git
9067S: Maintained
9068F: drivers/media/tuners/tuner-xc2028.*
9069
Ian Campbellc4468082011-04-27 15:26:46 -07009070XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009071M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009072M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009073L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9074L: virtualization@lists.linux-foundation.org
9075S: Supported
9076F: arch/x86/xen/
9077F: drivers/*/xen-*front.c
9078F: drivers/xen/
9079F: arch/x86/include/asm/xen/
9080F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009081F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009082
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009083XEN HYPERVISOR ARM
9084M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9085L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9086S: Supported
9087F: arch/arm/xen/
9088F: arch/arm/include/asm/xen/
9089
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009090XEN NETWORK BACKEND DRIVER
9091M: Ian Campbell <ian.campbell@citrix.com>
9092L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9093L: netdev@vger.kernel.org
9094S: Supported
9095F: drivers/net/xen-netback/*
9096
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009097XEN PCI SUBSYSTEM
9098M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009099L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009100S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009101F: arch/x86/pci/*xen*
9102F: drivers/pci/*xen*
9103
9104XEN SWIOTLB SUBSYSTEM
9105M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009106L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009107S: Supported
9108F: arch/x86/xen/*swiotlb*
9109F: drivers/xen/*swiotlb*
9110
Linus Torvalds1da177e2005-04-16 15:20:36 -07009111XFS FILESYSTEM
9112P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009113M: Ben Myers <bpm@sgi.com>
9114M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009115M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009116L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009117W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009118T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009120F: Documentation/filesystems/xfs.txt
9121F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009122
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009123XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009124M: Anirudha Sarangi <anirudh@xilinx.com>
9125M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009126S: Maintained
9127F: drivers/net/ethernet/xilinx/xilinx_axienet*
9128
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009129XILINX SYSTEMACE DRIVER
Grant Likely19624232013-04-08 11:51:42 +01009130S: Unmaintained
Joe Perches679655d2009-04-07 20:44:32 -07009131F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009132
Peter Korsgaard238b8722006-12-06 20:35:17 -08009133XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009134M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009135L: linux-serial@vger.kernel.org
9136S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009137F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009138
Linus Torvalds1da177e2005-04-16 15:20:36 -07009139YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009140M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009141L: linux-hams@vger.kernel.org
9142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009143F: drivers/net/hamradio/yam*
9144F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009145
Henkaf64a5e2005-10-12 15:02:56 +02009146YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009147M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009148L: usbb2k-api-dev@nongnu.org
9149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009150F: Documentation/input/yealink.txt
9151F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009152
Linus Torvalds1da177e2005-04-16 15:20:36 -07009153Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009154M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009155W: http://yaina.de/jreuter/
9156W: http://www.qsl.net/dl1bke/
9157L: linux-hams@vger.kernel.org
9158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009159F: Documentation/networking/z8530drv.txt
9160F: drivers/net/hamradio/*scc.c
9161F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009163ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009164M: Daniel Drake <dsd@gentoo.org>
9165M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009166W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009167L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009168L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009170F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009171
Linus Torvalds1da177e2005-04-16 15:20:36 -07009172ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009173L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009174L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009176T: Mercurial http://linuxtv.org/hg/v4l-dvb
9177S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009178F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009179
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009180ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009181M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009182S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009183F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009184
Linus Torvalds1da177e2005-04-16 15:20:36 -07009185THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009186M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009187L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009188Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009189T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009190S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009191F: *
9192F: */