blob: 3d7782b9f90d80d171c97e1d15371a9e2ec51ddc [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
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004979LME2510 MEDIA DRIVER
4980M: Malcolm Priestley <tvboxspy@gmail.com>
4981L: linux-media@vger.kernel.org
4982W: http://linuxtv.org/
4983Q: http://patchwork.linuxtv.org/project/linux-media/list/
4984S: Maintained
4985F: drivers/media/usb/dvb-usb-v2/lmedm04*
4986
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004987LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004988M: Peter Zijlstra <peterz@infradead.org>
4989M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004990T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004992F: Documentation/lockdep*.txt
4993F: Documentation/lockstat.txt
4994F: include/linux/lockdep.h
4995F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004996
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004997LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004998M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004999L: linux-ntfs-dev@lists.sourceforge.net
5000W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005002F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08005003F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
Joern Engelef6ada32009-11-20 22:17:12 +01005005LogFS
5006M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305007M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005008L: logfs@logfs.org
5009W: logfs.org
5010S: Maintained
5011F: fs/logfs/
5012
Roland Stiggeb62d7942013-04-02 19:37:11 +02005013LPC32XX MACHINE SUPPORT
5014M: Roland Stigge <stigge@antcom.de>
5015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5016S: Maintained
5017F: arch/arm/mach-lpc32xx/
5018
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005019LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305020M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5021M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005022M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005023L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005024L: linux-scsi@vger.kernel.org
5025W: http://www.lsilogic.com/support
5026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005027F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305028F: drivers/scsi/mpt2sas/
5029F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005032M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033L: linux-scsi@vger.kernel.org
5034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005035F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
Guenter Roecke5f5c992010-06-25 11:59:54 -07005037LTC4261 HARDWARE MONITOR DRIVER
5038M: Guenter Roeck <linux@roeck-us.net>
5039L: lm-sensors@lm-sensors.org
5040S: Maintained
5041F: Documentation/hwmon/ltc4261
5042F: drivers/hwmon/ltc4261.c
5043
Mike Frysinger81365c32008-10-29 14:01:12 -07005044LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005045M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005046M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005047M: Cyril Hrubis <chrubis@suse.cz>
5048M: Caspar Zhang <caspar@casparzhang.com>
5049M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005050L: ltp-list@lists.sourceforge.net (subscribers-only)
5051W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005052T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005053T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005054S: Maintained
5055
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005056M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005057M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005058L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005059L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5060W: http://www.linux-m32r.org/
5061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005063
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005065M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066L: linux-m68k@lists.linux-m68k.org
5067W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005068T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005070F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005071F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072
5073M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005074M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005076L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005078F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005081M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082W: http://www.tazenda.demon.co.uk/phil/linux-hp
5083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005084F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005086M88RS2000 MEDIA DRIVER
5087M: Malcolm Priestley <tvboxspy@gmail.com>
5088L: linux-media@vger.kernel.org
5089W: http://linuxtv.org/
5090Q: http://patchwork.linuxtv.org/project/linux-media/list/
5091S: Maintained
5092F: drivers/media/dvb-frontends/m88rs2000*
5093
Alexey Klimov07a092f2012-11-12 02:57:32 -03005094MA901 MASTERKIT USB FM RADIO DRIVER
5095M: Alexey Klimov <klimov.linux@gmail.com>
5096L: linux-media@vger.kernel.org
5097T: git git://linuxtv.org/media_tree.git
5098S: Maintained
5099F: drivers/media/radio/radio-ma901.c
5100
Jiri Benc64a327a2007-05-05 11:47:08 -07005101MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005102M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005103L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005104W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005105T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5106T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005108F: Documentation/networking/mac80211-injection.txt
5109F: include/net/mac80211.h
5110F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005111
Stefano Brivio1036d862007-12-23 04:46:27 +01005112MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005113M: Stefano Brivio <stefano.brivio@polimi.it>
5114M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005115L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005116W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005117T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5118T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005120F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005121
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005122MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005124L: netdev@vger.kernel.org
5125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005126F: drivers/net/macvlan.c
5127F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005128
Michael Kerriskfaf16682005-07-31 22:34:47 -07005129MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005130M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005131W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005132L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005133S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005134
stephen hemminger44c14c12012-04-02 12:59:47 +00005135MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5136M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005137M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005138L: netdev@vger.kernel.org
5139S: Maintained
5140F: drivers/net/ethernet/marvell/sk*
5141
Stefano Brivio74cda162007-11-19 20:27:46 +01005142MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005143L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005144S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005145F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005146
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005147MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005148M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005149L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005150S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005151F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005152F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005154MARVELL MVNETA ETHERNET DRIVER
5155M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5156L: netdev@vger.kernel.org
5157S: Maintained
5158F: drivers/net/ethernet/marvell/mvneta.*
5159
Bing Zhaofcad5842011-07-13 13:11:58 -07005160MARVELL MWIFIEX WIRELESS DRIVER
5161M: Bing Zhao <bzhao@marvell.com>
5162L: linux-wireless@vger.kernel.org
5163S: Maintained
5164F: drivers/net/wireless/mwifiex/
5165
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005166MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005167M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005168L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005169S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005170F: drivers/net/wireless/mwl8k.c
5171
Pierre Ossman2a695672009-03-16 19:52:26 +01005172MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005173M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005174S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005175F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005176
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005178L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005179S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005180F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005181F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182
Guenter Roeckca462082012-06-01 23:28:23 -07005183MAX16065 HARDWARE MONITOR DRIVER
5184M: Guenter Roeck <linux@roeck-us.net>
5185L: lm-sensors@lm-sensors.org
5186S: Maintained
5187F: Documentation/hwmon/max16065
5188F: drivers/hwmon/max16065.c
5189
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005190MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005191M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005192L: lm-sensors@lm-sensors.org
5193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005194F: Documentation/hwmon/max6650
5195F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005196
Guenter Roecke89ab512013-03-08 08:13:09 -08005197MAX6697 HARDWARE MONITOR DRIVER
5198M: Guenter Roeck <linux@roeck-us.net>
5199L: lm-sensors@lm-sensors.org
5200S: Maintained
5201F: Documentation/hwmon/max6697
5202F: Documentation/devicetree/bindings/i2c/max6697.txt
5203F: drivers/hwmon/max6697.c
5204F: include/linux/platform_data/max6697.h
5205
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005206MAXIRADIO FM RADIO RECEIVER DRIVER
5207M: Hans Verkuil <hverkuil@xs4all.nl>
5208L: linux-media@vger.kernel.org
5209T: git git://linuxtv.org/media_tree.git
5210W: http://linuxtv.org
5211S: Maintained
5212F: drivers/media/radio/radio-maxiradio*
5213
Joe Perches127c49a2009-04-08 08:34:04 -07005214MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005215M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005216P: LinuxTV.org Project
5217L: linux-media@vger.kernel.org
5218W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005219Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005220T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005221S: Maintained
5222F: Documentation/dvb/
5223F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005224F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005225F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005226F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005227F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005228F: include/uapi/linux/dvb/
5229F: include/uapi/linux/videodev2.h
5230F: include/uapi/linux/media.h
5231F: include/uapi/linux/v4l2-*
5232F: include/uapi/linux/meye.h
5233F: include/uapi/linux/ivtv*
5234F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005235
Hans Verkuil6149a932012-11-23 07:21:19 -03005236MEDIAVISION PRO MOVIE STUDIO DRIVER
5237M: Hans Verkuil <hverkuil@xs4all.nl>
5238L: linux-media@vger.kernel.org
5239T: git git://linuxtv.org/media_tree.git
5240W: http://linuxtv.org
5241S: Odd Fixes
5242F: drivers/media/parport/pms*
5243
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005244MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005245M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005246L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005247W: http://megaraid.lsilogic.com
5248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005249F: Documentation/scsi/megaraid.txt
5250F: drivers/scsi/megaraid.*
5251F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005252
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005253MELLANOX ETHERNET DRIVER (mlx4_en)
5254M: Amir Vadai <amirv@mellanox.com>
5255L: netdev@vger.kernel.org
5256S: Supported
5257W: http://www.mellanox.com
5258Q: http://patchwork.ozlabs.org/project/netdev/list/
5259F: drivers/net/ethernet/mellanox/mlx4/en_*
5260
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005261MEMORY MANAGEMENT
5262L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005263W: http://www.linux-mm.org
5264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005265F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005266F: include/linux/gfp.h
5267F: include/linux/mmzone.h
5268F: include/linux/memory_hotplug.h
5269F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005270F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005271
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005272MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005273M: Johannes Weiner <hannes@cmpxchg.org>
5274M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005275M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005276M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005277L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005278L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005281F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005282
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005283MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005286W: http://www.linux-mtd.infradead.org/
5287Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005288T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005290F: drivers/mtd/
5291F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005292F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293
James Hogan12285942012-10-10 12:59:49 +01005294METAG ARCHITECTURE
5295M: James Hogan <james.hogan@imgtec.com>
5296S: Supported
5297F: arch/metag/
5298F: Documentation/metag/
5299F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005300F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005301F: drivers/irqchip/irq-metag.c
5302F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005303F: drivers/tty/metag_da.c
5304F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005305
Michal Simekc6375b02009-03-27 14:25:52 +01005306MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005307M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005308L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005309W: http://www.monstr.eu/fdt/
5310T: git git://git.monstr.eu/linux-2.6-microblaze.git
5311S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005312F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
5314MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005315M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005317F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
5319MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005320M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005322W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005323T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005324Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005326F: Documentation/mips/
5327F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328
Hans Verkuil08b76202012-11-23 07:15:42 -03005329MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5330M: Hans Verkuil <hverkuil@xs4all.nl>
5331L: linux-media@vger.kernel.org
5332T: git git://linuxtv.org/media_tree.git
5333W: http://linuxtv.org
5334S: Odd Fixes
5335F: drivers/media/radio/radio-miropcm20*
5336
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005338M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005340F: include/linux/module.h
5341F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342
5343MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005345S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005346F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005347F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005348F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
Jiri Slabyb9705b62008-04-30 00:53:48 -07005350MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005351M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005353F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005354F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005355
Alexey Klimov889b2f82012-11-16 17:43:59 -03005356MR800 AVERMEDIA USB FM RADIO DRIVER
5357M: Alexey Klimov <klimov.linux@gmail.com>
5358L: linux-media@vger.kernel.org
5359T: git git://linuxtv.org/media_tree.git
5360S: Maintained
5361F: drivers/media/radio/radio-mr800.c
5362
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005363MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005364M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005365L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005367F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005368
Anisse Astier0f1006b2009-12-17 11:28:49 +01005369MSI WMI SUPPORT
5370M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005371L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005372S: Supported
5373F: drivers/platform/x86/msi-wmi.c
5374
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005375MT9M032 SENSOR DRIVER
5376M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5377L: linux-media@vger.kernel.org
5378T: git git://linuxtv.org/media_tree.git
5379S: Maintained
5380F: drivers/media/i2c/mt9m032.c
5381F: include/media/mt9m032.h
5382
5383MT9P031 SENSOR DRIVER
5384M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5385L: linux-media@vger.kernel.org
5386T: git git://linuxtv.org/media_tree.git
5387S: Maintained
5388F: drivers/media/i2c/mt9p031.c
5389F: include/media/mt9p031.h
5390
5391MT9T001 SENSOR DRIVER
5392M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5393L: linux-media@vger.kernel.org
5394T: git git://linuxtv.org/media_tree.git
5395S: Maintained
5396F: drivers/media/i2c/mt9t001.c
5397F: include/media/mt9t001.h
5398
5399MT9V032 SENSOR DRIVER
5400M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5401L: linux-media@vger.kernel.org
5402T: git git://linuxtv.org/media_tree.git
5403S: Maintained
5404F: drivers/media/i2c/mt9v032.c
5405F: include/media/mt9v032.h
5406
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005407MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005408M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005409T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005410S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005411F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005412
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005413MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005414M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005415L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005416T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005418F: drivers/mmc/
5419F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005420F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005421
David Brownell15a05802007-08-08 09:12:54 -07005422MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005423S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005424F: drivers/mmc/host/mmc_spi.c
5425F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005426
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005428M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005430F: Documentation/sound/oss/MultiSound
5431F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Jiri Slabyd7354102006-12-08 02:38:35 -08005433MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005434S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005435F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005436F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005437
Felipe Balbi550a7372008-07-24 12:27:36 +03005438MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005439M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005440L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005441T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005443F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005444
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005445MXL5007T MEDIA DRIVER
5446M: Michael Krufky <mkrufky@linuxtv.org>
5447L: linux-media@vger.kernel.org
5448W: http://linuxtv.org/
5449W: http://github.com/mkrufky
5450Q: http://patchwork.linuxtv.org/project/linux-media/list/
5451T: git git://linuxtv.org/mkrufky/tuners.git
5452S: Maintained
5453F: drivers/media/tuners/mxl5007t.*
5454
Brice Goglin2d3cf582008-05-17 12:45:36 +02005455MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005456M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005457L: netdev@vger.kernel.org
5458W: http://www.myri.com/scs/download-Myri10GE.html
5459S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005460F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005461
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005463S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005464F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465
Daniel Mack23dc05a2011-05-18 11:28:38 +02005466NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5467M: Daniel Mack <zonque@gmail.com>
5468S: Maintained
5469L: alsa-devel@alsa-project.org
5470W: http://www.native-instruments.com
5471F: sound/usb/caiaq/
5472
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005474M: Petr Vandrovec <petr@vandrovec.name>
5475S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005476F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477
5478NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005479M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480L: linux-scsi@vger.kernel.org
5481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005482F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005484NCT6775 HARDWARE MONITOR DRIVER
5485M: Guenter Roeck <linux@roeck-us.net>
5486L: lm-sensors@lm-sensors.org
5487S: Maintained
5488F: Documentation/hwmon/nct6775
5489F: drivers/hwmon/nct6775.c
5490
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005491NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005492M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005493L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005494W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005495S: Supported
5496F: drivers/infiniband/hw/nes/
5497
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005498NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005499M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005500L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005502F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005503
Jon Masonb2f5a052010-07-15 08:47:27 +00005504NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005505M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005506L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005508F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005509F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005510F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005511
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513P: Harald Welte
5514P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005515M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005516M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005517L: netfilter-devel@vger.kernel.org
5518L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005519L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520W: http://www.netfilter.org/
5521W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005522T: git git://1984.lsi.us.es/nf
5523T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005525F: include/linux/netfilter*
5526F: include/linux/netfilter/
5527F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005528F: include/uapi/linux/netfilter*
5529F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005530F: net/*/netfilter.c
5531F: net/*/netfilter/
5532F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533
Paul Moore4cc67732006-09-25 15:57:13 -07005534NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005535M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005536W: http://netlabel.sf.net
5537L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005538S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005539F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005540F: include/net/netlabel.h
5541F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005542
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005544M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005546W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005548F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005549F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005550F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005552NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005553M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005555L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005556F: Documentation/blockdev/nbd.txt
5557F: drivers/block/nbd.c
5558F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005559F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Neil Horman6e436502009-10-05 03:56:55 +00005561NETWORK DROP MONITOR
5562M: Neil Horman <nhorman@tuxdriver.com>
5563L: netdev@vger.kernel.org
5564S: Maintained
5565W: https://fedorahosted.org/dropwatch/
5566F: net/core/drop_monitor.c
5567
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005569M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005570L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005571W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005572Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005573T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5574T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005576F: net/
5577F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005578F: include/linux/in.h
5579F: include/linux/net.h
5580F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005581F: include/uapi/linux/in.h
5582F: include/uapi/linux/net.h
5583F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
5585NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005586M: "David S. Miller" <davem@davemloft.net>
5587M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005588M: James Morris <jmorris@namei.org>
5589M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5590M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005591L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005592T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005594F: net/ipv4/
5595F: net/ipv6/
5596F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005597F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
David S. Miller73b76562012-10-16 14:08:40 -04005599NETWORKING [IPSEC]
5600M: Steffen Klassert <steffen.klassert@secunet.com>
5601M: Herbert Xu <herbert@gondor.apana.org.au>
5602M: "David S. Miller" <davem@davemloft.net>
5603L: netdev@vger.kernel.org
5604T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5605S: Maintained
5606F: net/xfrm/
5607F: net/key/
5608F: net/ipv4/xfrm*
5609F: net/ipv6/xfrm*
5610F: include/uapi/linux/xfrm.h
5611F: include/net/xfrm.h
5612
James Morris10e2ff12007-08-25 14:41:28 -07005613NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005614M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005615L: netdev@vger.kernel.org
5616S: Maintained
5617
John W. Linville29f8f632006-01-18 14:52:48 -08005618NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005619M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005620L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005621Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005622T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005623S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005624F: net/mac80211/
5625F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005626F: net/wireless/
5627F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005628F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005629F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005630F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005631F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005632
Joe Perches788873a2009-04-16 09:38:45 +00005633NETWORKING DRIVERS
5634L: netdev@vger.kernel.org
5635W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005636Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005637T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5638T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005639S: Odd Fixes
5640F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005641F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005642F: include/linux/netdevice.h
5643F: include/linux/arcdevice.h
5644F: include/linux/etherdevice.h
5645F: include/linux/fcdevice.h
5646F: include/linux/fddidevice.h
5647F: include/linux/hippidevice.h
5648F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005649F: include/uapi/linux/if_*
5650F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005651
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005652NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005653M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005654M: Sony Chacko <sony.chacko@qlogic.com>
5655M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005656L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005657W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005658S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005659F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005660
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005661NFC SUBSYSTEM
5662M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5663M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5664M: Samuel Ortiz <sameo@linux.intel.com>
5665L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005666L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005667S: Maintained
5668F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005669F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005670F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005671F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005672F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005674NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005675M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005676L: linux-nfs@vger.kernel.org
5677W: http://client.linux-nfs.org
5678T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: fs/lockd/
5681F: fs/nfs/
5682F: fs/nfs_common/
5683F: net/sunrpc/
5684F: include/linux/lockd/
5685F: include/linux/nfs*
5686F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005687F: include/uapi/linux/nfs*
5688F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005690NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005691M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005692L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005693W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005694T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005695S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005696F: Documentation/filesystems/nilfs2.txt
5697F: fs/nilfs2/
5698F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005699
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005701M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: Documentation/scsi/NinjaSCSI.txt
5705F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706
5707NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005708M: GOTO Masanori <gotom@debian.or.jp>
5709M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005712F: Documentation/scsi/NinjaSCSI.txt
5713F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
Jon Masonfce8a7b2012-11-16 19:27:12 -07005715NTB DRIVER
5716M: Jon Mason <jon.mason@intel.com>
5717S: Supported
5718F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005719F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005720F: include/linux/ntb.h
5721
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005723M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005725W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005726T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005727S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005728F: Documentation/filesystems/ntfs.txt
5729F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005731NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005732M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005733L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005735F: drivers/video/riva/
5736F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737
Matthew Wilcox79461682012-11-10 08:54:53 -05005738NVM EXPRESS DRIVER
5739M: Matthew Wilcox <willy@linux.intel.com>
5740L: linux-nvme@lists.infradead.org
5741T: git git://git.infradead.org/users/willy/linux-nvme.git
5742S: Supported
5743F: drivers/block/nvme.c
5744F: include/linux/nvme.h
5745
Tony Lindgrenf5525782009-05-28 13:23:53 -07005746OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005747M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005748L: linux-omap@vger.kernel.org
5749W: http://www.muru.com/linux/omap/
5750W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005751Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005752T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005753S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005754F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005755F: drivers/i2c/busses/i2c-omap.c
5756F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005757
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005758OMAP DEVICE TREE SUPPORT
5759M: Benoît Cousson <b-cousson@ti.com>
5760M: Tony Lindgren <tony@atomide.com>
5761L: linux-omap@vger.kernel.org
5762L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5763S: Maintained
5764F: arch/arm/boot/dts/*omap*
5765F: arch/arm/boot/dts/*am3*
5766
Tony Lindgrenf5525782009-05-28 13:23:53 -07005767OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005768M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005769L: linux-omap@vger.kernel.org
5770S: Maintained
5771F: arch/arm/*omap*/*clock*
5772
5773OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005774M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005775L: linux-omap@vger.kernel.org
5776S: Maintained
5777F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005778F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005779
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005780OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5781M: Rajendra Nayak <rnayak@ti.com>
5782M: Paul Walmsley <paul@pwsan.com>
5783L: linux-omap@vger.kernel.org
5784S: Maintained
5785F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5786F: arch/arm/mach-omap2/powerdomain44xx.c
5787F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5788F: arch/arm/mach-omap2/clockdomain44xx.c
5789
Tony Lindgrenf5525782009-05-28 13:23:53 -07005790OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005791M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005792M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005793L: alsa-devel@alsa-project.org (subscribers-only)
5794L: linux-omap@vger.kernel.org
5795S: Maintained
5796F: sound/soc/omap/
5797
5798OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005799M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005800L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005801L: linux-omap@vger.kernel.org
5802S: Maintained
5803F: drivers/video/omap/
5804
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005805OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005806M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005807L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005808L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005809S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005810F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005811F: Documentation/arm/OMAP/DSS
5812
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005813OMAP HARDWARE SPINLOCK SUPPORT
5814M: Ohad Ben-Cohen <ohad@wizery.com>
5815L: linux-omap@vger.kernel.org
5816S: Maintained
5817F: drivers/hwspinlock/omap_hwspinlock.c
5818F: arch/arm/mach-omap2/hwspinlock.c
5819
Tony Lindgrenf5525782009-05-28 13:23:53 -07005820OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005821M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005822L: linux-omap@vger.kernel.org
5823S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005824F: drivers/mmc/host/omap.c
5825
5826OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305827M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305828L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005829L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305830S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005831F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005832
5833OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005834M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005835S: Maintained
5836F: drivers/char/hw_random/omap-rng.c
5837
Paul Walmsleyf400c822010-12-06 19:08:54 -07005838OMAP HWMOD SUPPORT
5839M: Benoît Cousson <b-cousson@ti.com>
5840M: Paul Walmsley <paul@pwsan.com>
5841L: linux-omap@vger.kernel.org
5842S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005843F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005844
5845OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5846M: Benoît Cousson <b-cousson@ti.com>
5847L: linux-omap@vger.kernel.org
5848S: Maintained
5849F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5850
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005851OMAP IMAGE SIGNAL PROCESSOR (ISP)
5852M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5853L: linux-media@vger.kernel.org
5854S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005855F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005856
Tony Lindgrenf5525782009-05-28 13:23:53 -07005857OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005858M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005859L: linux-usb@vger.kernel.org
5860L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005861T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005862S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005863F: drivers/usb/*/*omap*
5864F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005865
Kevin Hilman6d994712012-07-16 10:05:07 -07005866OMAP GPIO DRIVER
5867M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005868M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005869L: linux-omap@vger.kernel.org
5870S: Maintained
5871F: drivers/gpio/gpio-omap.c
5872
Bob Copeland0ad122d2008-07-25 19:45:18 -07005873OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005874M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005875L: linux-karma-devel@lists.sourceforge.net
5876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005877F: Documentation/filesystems/omfs.txt
5878F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005879
Harald Weltec1986ee2005-11-13 16:06:29 -08005880OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005881M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005883F: drivers/char/pcmcia/cm4000_cs.c
5884F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005885F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005886
Harald Welte77c44ab2005-11-13 16:06:26 -08005887OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005888M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005890F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005891
Jonathan Corbet77d51402007-03-22 19:44:17 -03005892OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005893M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005894L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005895T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005896S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005897F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005898
Thomas Gleixner431bca72007-05-02 09:31:35 +02005899ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005901L: linux-mtd@lists.infradead.org
5902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005903F: drivers/mtd/onenand/
5904F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005905
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005907M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908L: osst-users@lists.sourceforge.net
5909L: linux-scsi@vger.kernel.org
5910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005911F: drivers/scsi/osst*
5912F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005914OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005915M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005916L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005918F: Documentation/i2c/busses/i2c-ocores
5919F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005920
Grant Likely860c44c2009-10-26 16:49:49 -07005921OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01005922M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05005923M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005924L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005925W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005926T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005927S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005928F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005929F: drivers/of
5930F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005931F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005932K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005933K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005934
Jonas Bonn19f9d392011-06-04 22:00:38 +03005935OPENRISC ARCHITECTURE
5936M: Jonas Bonn <jonas@southpole.se>
5937W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005938L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005939S: Maintained
5940T: git git://openrisc.net/~jonas/linux
5941F: arch/openrisc
5942
Jesse Grossccb13522011-10-25 19:26:31 -07005943OPENVSWITCH
5944M: Jesse Gross <jesse@nicira.com>
5945L: dev@openvswitch.org
5946W: http://openvswitch.org
5947T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5948S: Maintained
5949F: net/openvswitch/
5950
Clemens Ladischaf399172011-01-10 16:32:54 +01005951OPL4 DRIVER
5952M: Clemens Ladisch <clemens@ladisch.de>
5953L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5954T: git git://git.alsa-project.org/alsa-kernel.git
5955S: Maintained
5956F: sound/drivers/opl4/
5957
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005959M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960L: oprofile-list@lists.sf.net
5961S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005962F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005963F: arch/*/oprofile/
5964F: drivers/oprofile/
5965F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005967ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005968M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005969M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005970L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5971W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005972T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005974F: Documentation/filesystems/ocfs2.txt
5975F: Documentation/filesystems/dlmfs.txt
5976F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005977
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005979L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005980W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005981W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005982S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005983F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005985OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005986M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005987M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005988L: osd-dev@open-osd.org
5989W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005990T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005991S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005992F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005993F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005994F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005995
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005996P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005997M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005998L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005999W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006001F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006002
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006003PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006004M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006005L: netdev@vger.kernel.org
6006S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006007F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006008
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006009PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006010M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006011L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006013F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006014
Steffen Klassert48fc2672010-08-13 10:10:46 -04006015PADATA PARALLEL EXECUTION MECHANISM
6016M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006017L: linux-crypto@vger.kernel.org
6018S: Maintained
6019F: kernel/padata.c
6020F: include/linux/padata.h
6021F: Documentation/padata.txt
6022
Harald Welte709ee532008-09-23 17:46:57 +02006023PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006024M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006025L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006027F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006028
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006029PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006030M: David Howells <dhowells@redhat.com>
6031M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006032L: linux-am33-list@redhat.com (moderated for non-subscribers)
6033W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006035F: Documentation/mn10300/
6036F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006037
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006039L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006040S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006041F: drivers/parport/
6042F: include/linux/parport*.h
6043F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006044F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006046PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006047M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006048M: Chris Wright <chrisw@sous-sol.org>
6049M: Alok Kataria <akataria@vmware.com>
6050M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006051L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006052S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006053F: Documentation/ia64/paravirt_ops.txt
6054F: arch/*/kernel/paravirt*
6055F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006056
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006058M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006059L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060W: http://www.torque.net/linux-pp.html
6061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006062F: Documentation/blockdev/paride.txt
6063F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064
6065PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006066M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006067M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006068L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006070Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006071T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006073F: arch/parisc/
6074F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075
Jim Cromie1662d322006-10-06 00:43:59 -07006076PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006077M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006078L: lm-sensors@lm-sensors.org
6079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006080F: Documentation/hwmon/pc87360
6081F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006082
6083PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006084M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006086F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006087
Jean Delvare1ad107f2010-08-14 21:09:00 +02006088PC87427 HARDWARE MONITORING DRIVER
6089M: Jean Delvare <khali@linux-fr.org>
6090L: lm-sensors@lm-sensors.org
6091S: Maintained
6092F: Documentation/hwmon/pc87427
6093F: drivers/hwmon/pc87427.c
6094
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006095PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006096M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006097S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006098F: drivers/leds/leds-pca9532.c
6099F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006100
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006101PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006102M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006103L: linux-i2c@vger.kernel.org
6104S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006105F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006106
Khalid Aziz3971dae2012-04-12 12:49:13 -07006107PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006108M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006109S: Maintained
6110F: drivers/firmware/pcdp.*
6111
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006112PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006113M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006114L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006116F: Documentation/PCI/pci-error-recovery.txt
6117F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006118
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006120M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006121L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006122Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006123T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006125F: Documentation/PCI/
6126F: drivers/pci/
6127F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006130P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006131L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006132W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006133T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006135F: Documentation/pcmcia/
6136F: drivers/pcmcia/
6137F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138
6139PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006140M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006141L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006143F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144
Steffen Klassert48fc2672010-08-13 10:10:46 -04006145PCRYPT PARALLEL CRYPTO ENGINE
6146M: Steffen Klassert <steffen.klassert@secunet.com>
6147L: linux-crypto@vger.kernel.org
6148S: Maintained
6149F: crypto/pcrypt.c
6150F: include/crypto/pcrypt.h
6151
Tejun Heoe72df0b2010-12-10 17:02:49 +01006152PER-CPU MEMORY ALLOCATOR
6153M: Tejun Heo <tj@kernel.org>
6154M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006155T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6156S: Maintained
6157F: include/linux/percpu*.h
6158F: mm/percpu*.c
6159F: arch/*/include/asm/percpu.h
6160
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006161PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006162M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006164F: include/linux/delayacct.h
6165F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006166
Ingo Molnar57c0c152009-09-21 12:20:38 +02006167PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006168M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6169M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006170M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006171M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006172T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006173S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006174F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006175F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006176F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006177F: arch/*/kernel/perf_event*.c
6178F: arch/*/kernel/*/perf_event*.c
6179F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006180F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006181F: arch/*/kernel/perf_callchain.c
6182F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006183
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006184PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006185M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006186L: linux-abi-devel@lists.sourceforge.net
6187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006188F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006189F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006190
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006191PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006192M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006193S: Supported
6194F: Documentation/networking/phonet.txt
6195F: include/linux/phonet.h
6196F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006197F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006198F: net/phonet/
6199
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006201M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202L: linux-mtd@lists.infradead.org
6203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006204F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205
Bruno Prémontefdbb102012-07-30 21:39:03 +02006206PICOLCD HID DRIVER
6207M: Bruno Prémont <bonbons@linux-vserver.org>
6208L: linux-input@vger.kernel.org
6209S: Maintained
6210F: drivers/hid/hid-picolcd*
6211
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006212PICOXCELL SUPPORT
6213M: Jamie Iles <jamie@jamieiles.com>
6214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6215T: git git://github.com/jamieiles/linux-2.6-ji.git
6216S: Supported
6217F: arch/arm/mach-picoxcell
6218F: drivers/*/picoxcell*
6219F: drivers/*/*/picoxcell*
6220
Linus Walleij2744e8a2011-05-02 20:50:54 +02006221PIN CONTROL SUBSYSTEM
6222M: Linus Walleij <linus.walleij@linaro.org>
6223S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006224F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006225F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006226
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006227PIN CONTROLLER - ATMEL AT91
6228M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6230S: Maintained
6231F: drivers/pinctrl/pinctrl-at91.c
6232
Viresh Kumardeda8282012-03-28 22:27:07 +05306233PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006234M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306235L: spear-devel@list.st.com
6236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6237W: http://www.st.com/spear
6238S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006239F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306240
Peter Osterlund249a6772005-09-27 21:45:30 -07006241PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006242M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006244F: drivers/block/pktcdvd.c
6245F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006246F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006247
GuanXuetaob31d8272011-01-16 00:35:49 +08006248PKUNITY SOC DRIVERS
6249M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6250W: http://mprc.pku.edu.cn/~guanxuetao/linux
6251S: Maintained
6252T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6253F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006254F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006255F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006256F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006257
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006258PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006259M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006260L: lm-sensors@lm-sensors.org
6261W: http://www.lm-sensors.org/
6262W: http://www.roeck-us.net/linux/drivers/
6263T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6264S: Maintained
6265F: Documentation/hwmon/pmbus
6266F: drivers/hwmon/pmbus/
6267F: include/linux/i2c/pmbus.h
6268
Anil Ravindranath89a36812009-08-25 17:35:18 -07006269PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006270M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006271L: linux-scsi@vger.kernel.org
6272W: http://www.pmc-sierra.com/
6273S: Supported
6274F: drivers/scsi/pmcraid.*
6275
jack wangdbf9bfe2009-10-14 16:19:21 +08006276PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006277M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006278M: lindar_liu@usish.com
6279L: linux-scsi@vger.kernel.org
6280S: Supported
6281F: drivers/scsi/pm8001/
6282
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006284M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006285T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006287F: fs/timerfd.c
6288F: include/linux/timer*
6289F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290
Anton Vorontsov3be86142007-07-15 04:43:36 +04006291POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006292M: Anton Vorontsov <cbou@mail.ru>
6293M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006294T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006296F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006297F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006298
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006300M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006301M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006303F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304
Vitaly Wool999445d2007-01-04 13:07:03 +01006305PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006306M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006307L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006309F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006310
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006312M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313L: linux-ppp@vger.kernel.org
6314S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006315F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316
6317PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006318M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006321F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
6323PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006324M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006326F: drivers/net/ppp/pppoe.c
6327F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328
James Chapmana6d23702007-06-27 15:53:17 -07006329PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006330M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006331S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006332F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006333F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006334F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006335
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006336PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006337M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006338W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6339L: linuxpps@ml.enneenne.com (subscribers-only)
6340S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006341F: Documentation/pps/
6342F: drivers/pps/
6343F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006344
Harry Wei71a6d0a2011-05-11 15:13:33 -07006345PPTP DRIVER
6346M: Dmitry Kozlov <xeb@mail.ru>
6347L: netdev@vger.kernel.org
6348S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006349F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006350W: http://sourceforge.net/projects/accel-pptp
6351
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006353M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354L: kpreempt-tech@lists.sourceforge.net
6355W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006357F: Documentation/preempt-locking.txt
6358F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359
6360PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006361M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006362L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006363W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006364S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006365F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006367PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006368M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006369L: linux-ide@vger.kernel.org
6370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006371F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006372
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006373PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006374M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006375L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006376L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006377S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006378F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006379
Geoff Levandf58a9d12006-11-23 00:46:51 +01006380PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006381M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006382L: linuxppc-dev@lists.ozlabs.org
6383L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006385F: arch/powerpc/boot/ps3*
6386F: arch/powerpc/include/asm/lv1call.h
6387F: arch/powerpc/include/asm/ps3*.h
6388F: arch/powerpc/platforms/ps3/
6389F: drivers/*/ps3*
6390F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006391F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006392F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006393F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006394
Jim Pariscffb4add2009-01-06 11:32:10 +00006395PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006396M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006397L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006398S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006399F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006400
Anton Vorontsov8defe592012-08-03 18:07:20 -07006401PSTORE FILESYSTEM
6402M: Anton Vorontsov <cbouatmailru@gmail.com>
6403M: Colin Cross <ccross@android.com>
6404M: Kees Cook <keescook@chromium.org>
6405M: Tony Luck <tony.luck@intel.com>
6406S: Maintained
6407T: git git://git.infradead.org/users/cbou/linux-pstore.git
6408F: fs/pstore/
6409F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006410F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006411F: drivers/acpi/apei/erst.c
6412
Richard Cochran7fbc4152012-03-10 01:55:53 +00006413PTP HARDWARE CLOCK SUPPORT
6414M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006415L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006416S: Maintained
6417W: http://linuxptp.sourceforge.net/
6418F: Documentation/ABI/testing/sysfs-ptp
6419F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006420F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006421F: drivers/net/phy/dp83640*
6422F: drivers/ptp/*
6423F: include/linux/ptp_cl*
6424
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006425PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006426M: Roland McGrath <roland@redhat.com>
6427M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006428S: Maintained
6429F: include/asm-generic/syscall.h
6430F: include/linux/ptrace.h
6431F: include/linux/regset.h
6432F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006433F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006434F: kernel/ptrace.c
6435
Michael Krufky83202042006-07-03 00:24:18 -07006436PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006437M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006438L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006439L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006440W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006441T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006443F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006444F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006445
Hans de Goede39532e62012-11-04 17:05:59 -03006446PWC WEBCAM DRIVER
6447M: Hans de Goede <hdegoede@redhat.com>
6448L: linux-media@vger.kernel.org
6449T: git git://linuxtv.org/media_tree.git
6450S: Maintained
6451F: drivers/media/usb/pwc/*
6452
Thierry Reding200efed2012-03-27 13:16:18 +02006453PWM SUBSYSTEM
6454M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006455L: linux-kernel@vger.kernel.org
6456S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006457W: http://gitorious.org/linux-pwm
6458T: git git://gitorious.org/linux-pwm/linux-pwm.git
6459F: Documentation/pwm.txt
6460F: Documentation/devicetree/bindings/pwm/
6461F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006462F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006463F: drivers/video/backlight/pwm_bl.c
6464F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006465
Eric Miao30ec2612008-06-12 15:21:41 -07006466PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006467M: Eric Miao <eric.y.miao@gmail.com>
6468M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006469M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006470L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006471T: git git://github.com/hzhuang1/linux.git
6472T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006474F: arch/arm/mach-pxa/
6475F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006476F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006477F: drivers/usb/gadget/pxa2*
6478F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006479F: sound/arm/pxa*
6480F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006482MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006483M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006484M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006485L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006486T: git git://github.com/hzhuang1/linux.git
6487T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006488S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006489F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006490
Pierre Ossman272f1332007-05-14 21:25:26 +02006491PXA MMCI DRIVER
6492S: Orphan
6493
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006494PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006495M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006496L: rtc-linux@googlegroups.com
6497S: Maintained
6498
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006499QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006500M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006501L: linux-rdma@vger.kernel.org
6502S: Supported
6503F: drivers/infiniband/hw/qib/
6504
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006505QLOGIC QLA1280 SCSI DRIVER
6506M: Michael Reed <mdr@sgi.com>
6507L: linux-scsi@vger.kernel.org
6508S: Maintained
6509F: drivers/scsi/qla1280.[ch]
6510
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006512M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006513M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514L: linux-scsi@vger.kernel.org
6515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006516F: Documentation/scsi/LICENSE.qla2xxx
6517F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518
Ravi Anand883c98f2010-04-28 11:45:49 +05306519QLOGIC QLA4XXX iSCSI DRIVER
6520M: Ravi Anand <ravi.anand@qlogic.com>
6521M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6522M: iscsi-driver@qlogic.com
6523L: linux-scsi@vger.kernel.org
6524S: Supported
6525F: drivers/scsi/qla4xxx/
6526
Ron Mercer5a4faa872006-07-25 00:40:21 -07006527QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006528M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006529M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006530M: linux-driver@qlogic.com
6531L: netdev@vger.kernel.org
6532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006533F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006534F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006535
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006536QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006537M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6538M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006539M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006540M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006541M: linux-driver@qlogic.com
6542L: netdev@vger.kernel.org
6543S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006544F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006545
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006546QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006547M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006548M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006549M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006550M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006551L: netdev@vger.kernel.org
6552S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006553F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006554
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006556M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557W: http://www.alarsen.net/linux/qnx4fs/
6558S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006559F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006560F: include/uapi/linux/qnx4_fs.h
6561F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562
Antti Palosaari91952bc2012-10-01 12:28:46 -03006563QT1010 MEDIA DRIVER
6564M: Antti Palosaari <crope@iki.fi>
6565L: linux-media@vger.kernel.org
6566W: http://linuxtv.org/
6567W: http://palosaari.fi/linux/
6568Q: http://patchwork.linuxtv.org/project/linux-media/list/
6569T: git git://linuxtv.org/anttip/media_tree.git
6570S: Maintained
6571F: drivers/media/tuners/qt1010*
6572
Richard Kuo4f4567c2011-10-31 18:56:38 -05006573QUALCOMM HEXAGON ARCHITECTURE
6574M: Richard Kuo <rkuo@codeaurora.org>
6575L: linux-hexagon@vger.kernel.org
6576S: Supported
6577F: arch/hexagon/
6578
Hans Verkuil35e35402012-11-23 07:02:29 -03006579QUICKCAM PARALLEL PORT WEBCAMS
6580M: Hans Verkuil <hverkuil@xs4all.nl>
6581L: linux-media@vger.kernel.org
6582T: git git://linuxtv.org/media_tree.git
6583W: http://linuxtv.org
6584S: Odd Fixes
6585F: drivers/media/parport/*-qcam*
6586
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006587RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006588M: Yehuda Sadeh <yehuda@inktank.com>
6589M: Sage Weil <sage@inktank.com>
6590M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006591M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006592W: http://ceph.com/
6593T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006594S: Supported
6595F: drivers/block/rbd.c
6596F: drivers/block/rbd_types.h
6597
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006599M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006600L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006602F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006603F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604
Hans de Goedec6c9b342012-11-04 17:03:58 -03006605RADIOSHARK RADIO DRIVER
6606M: Hans de Goede <hdegoede@redhat.com>
6607L: linux-media@vger.kernel.org
6608T: git git://linuxtv.org/media_tree.git
6609S: Maintained
6610F: drivers/media/radio/radio-shark.c
6611
6612RADIOSHARK2 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-shark2.c
6618F: drivers/media/radio/radio-tea5777.c
6619
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006621M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006622L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006624F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625
Randy Dunlape7839f22008-10-12 16:11:45 -07006626RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006627P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006628M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006629M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006630M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006631L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006632L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006633W: http://rt2x00.serialmonkey.com/
6634S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006635T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006636F: drivers/net/wireless/rt2x00/
6637
Nick Piggin9db55792008-02-08 04:19:49 -08006638RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006639M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006641F: Documentation/blockdev/ramdisk.txt
6642F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006643
Matt Mackall9e95ce22005-04-16 15:25:56 -07006644RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006645M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006647F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006648
Matt Porter394b7012005-11-07 01:00:15 -08006649RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006650M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006651M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006653F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006654
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006655RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006656L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006657S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006658F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006659
6660RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006661M: Josh Triplett <josh@freedesktop.org>
6662M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006663S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006664T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006665F: Documentation/RCU/torture.txt
6666F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006667
Florian Fainellic1f766b2008-02-06 22:39:44 +01006668RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006669M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006670S: Maintained
6671
Florian Fainellidb17f392007-12-19 11:30:30 +01006672RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006673M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006674L: netdev@vger.kernel.org
6675S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006676F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006677
Andy Grovera09ed662009-02-24 15:30:41 +00006678RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006679M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006680L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006681S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006682F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006683
Josh Triplett595182b2006-10-04 02:17:21 -07006684READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006685M: Dipankar Sarma <dipankar@in.ibm.com>
6686M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006687W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006688S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006689T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006690F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006691X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006692F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006693F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006694X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006695
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006696REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006697M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006698L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006699Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006701F: Documentation/rtc.txt
6702F: drivers/rtc/
6703F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006704F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006705
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006707L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006709F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710
Mark Brownb83a3132011-05-11 19:59:58 +02006711REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006712M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006713T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6714S: Supported
6715F: drivers/base/regmap/
6716F: include/linux/regmap.h
6717
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006718REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6719M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006720T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006721S: Maintained
6722F: drivers/remoteproc/
6723F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006724F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006725
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03006726REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
6727M: Ohad Ben-Cohen <ohad@wizery.com>
6728T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
6729S: Maintained
6730F: drivers/rpmsg/
6731F: Documentation/rpmsg.txt
6732F: include/linux/rpmsg.h
6733
Ivo van Doorne08976452008-04-12 19:23:55 +02006734RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006735M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006736L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006737W: http://wireless.kernel.org/
6738T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6739T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006740S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006741F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006742F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006743
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006744RICOH SMARTMEDIA/XD DRIVER
6745M: Maxim Levitsky <maximlevitsky@gmail.com>
6746S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006747F: drivers/mtd/nand/r852.c
6748F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006749
Maxim Levitsky92634122011-03-25 01:56:59 -07006750RICOH R5C592 MEMORYSTICK DRIVER
6751M: Maxim Levitsky <maximlevitsky@gmail.com>
6752S: Maintained
6753F: drivers/memstick/host/r592.*
6754
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755ROCKETPORT DRIVER
6756P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757W: http://www.comtrol.com
6758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006759F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006760F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761
6762ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006763M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006765W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006767F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006768F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006769F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770
Antti Palosaari91952bc2012-10-01 12:28:46 -03006771RTL2830 MEDIA DRIVER
6772M: Antti Palosaari <crope@iki.fi>
6773L: linux-media@vger.kernel.org
6774W: http://linuxtv.org/
6775W: http://palosaari.fi/linux/
6776Q: http://patchwork.linuxtv.org/project/linux-media/list/
6777T: git git://linuxtv.org/anttip/media_tree.git
6778S: Maintained
6779F: drivers/media/dvb-frontends/rtl2830*
6780
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006781RTL2832 MEDIA DRIVER
6782M: Antti Palosaari <crope@iki.fi>
6783L: linux-media@vger.kernel.org
6784W: http://linuxtv.org/
6785W: http://palosaari.fi/linux/
6786Q: http://patchwork.linuxtv.org/project/linux-media/list/
6787T: git git://linuxtv.org/anttip/media_tree.git
6788S: Maintained
6789F: drivers/media/dvb-frontends/rtl2832*
6790
Larry Finger59840482008-11-12 17:13:09 -06006791RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006792M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006793L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006794W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006795T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006796S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006797F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006798
Larry Finger59840482008-11-12 17:13:09 -06006799RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006800M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006801M: Hin-Tak Leung <htl10@users.sourceforge.net>
6802M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006803L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006804W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006805T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006806S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006807F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006808
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006809RTL8192CE WIRELESS DRIVER
6810M: Larry Finger <Larry.Finger@lwfinger.net>
6811M: Chaoming Li <chaoming_li@realsil.com.cn>
6812L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006813W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006814T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6815S: Maintained
6816F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006817F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006818
6819S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006820M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006821L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006823F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006824
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825S390
Joe Perches8b58be82009-07-29 15:04:30 -07006826M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6827M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006829L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006830W: http://www.ibm.com/developerworks/linux/linux390/
6831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006832F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006833F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006834F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006835F: Documentation/s390/
6836F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006837
6838S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006839M: Ursula Braun <ursula.braun@de.ibm.com>
6840M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006841M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006842L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006843W: http://www.ibm.com/developerworks/linux/linux390/
6844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006845F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006846
Felix Beckfeed9b62009-03-26 15:24:23 +01006847S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006848M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006849M: linux390@de.ibm.com
6850L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006851W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006852S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006853F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006854
Heiko Carstens5238da42006-02-11 17:56:01 -08006855S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006856M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006857M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006858L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006859W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006861F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862
Ursula Braundd96df22007-09-19 13:09:02 +02006863S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006864M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006865M: linux390@de.ibm.com
6866L: linux-s390@vger.kernel.org
6867W: http://www.ibm.com/developerworks/linux/linux390/
6868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006869F: drivers/s390/net/*iucv*
6870F: include/net/iucv/
6871F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006872
Ben Dooks4dde7f72008-06-30 22:40:38 +01006873S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006874M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006876S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006877F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006878
Hans Verkuil1f15a222012-11-23 07:45:29 -03006879SAA6588 RDS RECEIVER DRIVER
6880M: Hans Verkuil <hverkuil@xs4all.nl>
6881L: linux-media@vger.kernel.org
6882T: git git://linuxtv.org/media_tree.git
6883W: http://linuxtv.org
6884S: Odd Fixes
6885F: drivers/media/i2c/saa6588*
6886
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006887SAA7134 VIDEO4LINUX DRIVER
6888M: Mauro Carvalho Chehab <mchehab@redhat.com>
6889L: linux-media@vger.kernel.org
6890W: http://linuxtv.org
6891T: git git://linuxtv.org/media_tree.git
6892S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006893F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006894F: drivers/media/pci/saa7134/
6895
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006897M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006898L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006899T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006901F: drivers/media/common/saa7146/
6902F: drivers/media/pci/saa7146/
6903F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904
Corentin Chary92304a42011-12-05 12:38:35 -05006905SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006906M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006907L: platform-driver-x86@vger.kernel.org
6908S: Maintained
6909F: drivers/platform/x86/samsung-laptop.c
6910
Mark Brown4a109cc2010-09-24 10:50:46 +01006911SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006912M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006913L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6914S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006915F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006916
Jingoo Han0d89a282011-12-19 11:09:35 +09006917SAMSUNG FRAMEBUFFER DRIVER
6918M: Jingoo Han <jg1.han@samsung.com>
6919L: linux-fbdev@vger.kernel.org
6920S: Maintained
6921F: drivers/video/s3c-fb.c
6922
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006923SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6924M: Sangbeom Kim <sbkim73@samsung.com>
6925L: linux-kernel@vger.kernel.org
6926S: Supported
6927F: drivers/mfd/sec*.c
6928F: drivers/regulator/s2m*.c
6929F: drivers/regulator/s5m*.c
6930F: drivers/rtc/rtc-sec.c
6931F: include/linux/mfd/samsung/
6932
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006933SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6934M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6935L: linux-media@vger.kernel.org
6936L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6937S: Maintained
6938F: drivers/media/platform/s3c-camif/
6939F: include/media/s3c_camif.h
6940
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006941SAMSUNG S5C73M3 CAMERA DRIVER
6942M: Kyungmin Park <kyungmin.park@samsung.com>
6943M: Andrzej Hajda <a.hajda@samsung.com>
6944L: linux-media@vger.kernel.org
6945S: Supported
6946F: drivers/media/i2c/s5c73m3/*
6947
Alan Coxca749e22011-03-18 13:56:14 +00006948SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006949M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006950L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006951S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006952F: drivers/tty/serial
6953
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306954SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006955M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306956S: Maintained
6957F: include/linux/dw_dmac.h
6958F: drivers/dma/dw_dmac_regs.h
6959F: drivers/dma/dw_dmac.c
6960
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006961SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6962M: Seungwon Jeon <tgih.jun@samsung.com>
6963M: Jaehoon Chung <jh80.chung@samsung.com>
6964L: linux-mmc@vger.kernel.org
6965S: Maintained
6966F: include/linux/mmc/dw_mmc.h
6967F: drivers/mmc/host/dw_mmc*
6968
Thomas Gleixner88606e82010-12-14 21:37:13 +01006969TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006970M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006971M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006972T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006973S: Supported
6974F: include/linux/clocksource.h
6975F: include/linux/time.h
6976F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006977F: include/uapi/linux/time.h
6978F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006979F: kernel/time/clocksource.c
6980F: kernel/time/time*.c
6981F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006982F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006983
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006984TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006985M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006986M: Hans Verkuil <hverkuil@xs4all.nl>
6987S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006988F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006989
Linus Torvalds1da177e2005-04-16 15:20:36 -07006990SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006991M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006993F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994
6995SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006996M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006997M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006998T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09007000F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07007001F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007002F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003
Chen Liqin6bcf6732009-06-13 15:24:33 +08007004SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07007005M: Chen Liqin <liqin.chen@sunplusct.com>
7006M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08007007W: http://www.sunplusct.com
7008S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07007009F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08007010
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007012M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007013L: linux-scsi@vger.kernel.org
7014W: http://www.kernel.dk
7015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007016F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017
Roland Dreierfb50a832010-10-07 09:54:53 -07007018SCSI RDMA PROTOCOL (SRP) INITIATOR
7019M: David Dillow <dillowda@ornl.gov>
7020L: linux-rdma@vger.kernel.org
7021S: Supported
7022W: http://www.openfabrics.org
7023Q: http://patchwork.kernel.org/project/linux-rdma/list/
7024T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7025F: drivers/infiniband/ulp/srp/
7026F: include/scsi/srp.h
7027
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007029M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030L: linux-scsi@vger.kernel.org
7031W: http://www.torque.net/sg
7032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007033F: drivers/scsi/sg.c
7034F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035
7036SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007037M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007039T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7040T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7041T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007043F: drivers/scsi/
7044F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045
7046SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007047M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048L: linux-scsi@vger.kernel.org
7049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007050F: Documentation/scsi/st.txt
7051F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
7053SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007054M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007055M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007056L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007057W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007059F: Documentation/networking/sctp.txt
7060F: include/linux/sctp.h
7061F: include/net/sctp/
7062F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007063
7064SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007065M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007066S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007067F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007068F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007069F: drivers/watchdog/scx200_wdt.c
7070F: drivers/i2c/busses/scx200*
7071F: drivers/mtd/maps/scx200_docflash.c
7072F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007073
7074SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007075M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007077F: drivers/char/scx200_gpio.c
7078F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007079
7080SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007081M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007083F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084
Sascha Sommer6a369132008-07-15 14:21:29 +02007085SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007086M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007087L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007089F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007090
Randy Dunlape7839f22008-10-12 16:11:45 -07007091SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007092M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007093L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007094T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7095S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007096F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007097F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007098
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007099SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007100M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007101L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007102L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007104F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Ben Dooks0d1bb412009-06-14 13:52:37 +01007106SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007107M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007108L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007109S: Maintained
7110F: drivers/mmc/host/sdhci-s3c.c
7111
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007112SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007113M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007114L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007115L: linux-mmc@vger.kernel.org
7116S: Maintained
7117F: drivers/mmc/host/sdhci-spear.c
7118
James Morris8711cca2008-12-04 03:19:45 +11007119SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007120M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007121L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007122T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007123W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007124S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007125F: security/
James Morris8711cca2008-12-04 03:19:45 +11007126
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007128M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129S: Supported
7130
7131SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007132M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007133M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007134M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007135L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007136W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007137T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007139F: include/linux/selinux*
7140F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007141F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142
John Johansenc1c124e2010-07-29 14:48:09 -07007143APPARMOR SECURITY MODULE
7144M: John Johansen <john.johansen@canonical.com>
7145L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7146W: apparmor.wiki.kernel.org
7147T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7148S: Supported
7149F: security/apparmor/
7150
Jiri Slabycef2cf02007-05-08 00:31:45 -07007151SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007152M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007154F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007155F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007156
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007157SERIAL ATA (SATA) SUBSYSTEM
Tejun Heo3d9b9352013-05-07 10:09:27 -07007158M: Tejun Heo <tj@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159L: linux-ide@vger.kernel.org
Tejun Heo3d9b9352013-05-07 10:09:27 -07007160T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007162F: drivers/ata/
7163F: include/linux/ata.h
7164F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307166SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007167M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007168L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007169W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007170S: Supported
7171F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307172
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007173SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007174M: Sathya Perla <sathya.perla@emulex.com>
7175M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7176M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007177L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007178W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007179S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007180F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007181
Ben Hutchings8ceee662008-04-27 12:55:59 +01007182SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007183M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007184M: Ben Hutchings <bhutchings@solarflare.com>
7185L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007186S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007187F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007188
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007189SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007190M: Dimitri Sivanich <sivanich@sgi.com>
7191M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007193F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007194
7195SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007196M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007197L: linux-ia64@vger.kernel.org
7198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007199F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007200F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007201F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007202
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007204M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205L: linux-visws-devel@lists.sf.net
7206W: http://linux-visws.sf.net
7207S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007208F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209
Jack Steiner75312612008-08-15 00:40:42 -07007210SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007211M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007213F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007214
Hans Verkuil49cc6292012-11-30 07:13:29 -03007215SI470X FM RADIO RECEIVER I2C DRIVER
7216M: Hans Verkuil <hverkuil@xs4all.nl>
7217L: linux-media@vger.kernel.org
7218T: git git://linuxtv.org/media_tree.git
7219W: http://linuxtv.org
7220S: Odd Fixes
7221F: drivers/media/radio/si470x/radio-si470x-i2c.c
7222
7223SI470X FM RADIO RECEIVER USB DRIVER
7224M: Hans Verkuil <hverkuil@xs4all.nl>
7225L: linux-media@vger.kernel.org
7226T: git git://linuxtv.org/media_tree.git
7227W: http://linuxtv.org
7228S: Maintained
7229F: drivers/media/radio/si470x/radio-si470x-common.c
7230F: drivers/media/radio/si470x/radio-si470x.h
7231F: drivers/media/radio/si470x/radio-si470x-usb.c
7232
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007233SI4713 FM RADIO TRANSMITTER I2C DRIVER
7234M: Eduardo Valentin <edubezval@gmail.com>
7235L: linux-media@vger.kernel.org
7236T: git git://linuxtv.org/media_tree.git
7237W: http://linuxtv.org
7238S: Odd Fixes
7239F: drivers/media/radio/si4713-i2c.?
7240
7241SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7242M: Eduardo Valentin <edubezval@gmail.com>
7243L: linux-media@vger.kernel.org
7244T: git git://linuxtv.org/media_tree.git
7245W: http://linuxtv.org
7246S: Odd Fixes
7247F: drivers/media/radio/radio-si4713.h
7248
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007249SIANO DVB DRIVER
7250M: Mauro Carvalho Chehab <mchehab@redhat.com>
7251L: linux-media@vger.kernel.org
7252W: http://linuxtv.org
7253T: git git://linuxtv.org/media_tree.git
7254S: Odd fixes
7255F: drivers/media/common/siano/
7256F: drivers/media/dvb/siano/
7257F: drivers/media/usb/siano/
7258F: drivers/media/mmc/siano
7259
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007260SH_VEU V4L2 MEM2MEM DRIVER
7261M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7262L: linux-media@vger.kernel.org
7263S: Maintained
7264F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007265
7266SH_VOU V4L2 OUTPUT DRIVER
7267M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7268L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007269S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007270F: drivers/media/platform/sh_vou.c
7271F: include/media/sh_vou.h
7272
Len Brown6349d992009-08-14 15:07:14 -04007273SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007274M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007275L: sfi-devel@simplefirmware.org
7276W: http://simplefirmware.org/
7277T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007278S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007279F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007280F: drivers/sfi/
7281F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007282
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283SIMTEC EB110ATX (Chalice CATS)
7284P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007285P: Vincent Sanders <vince@simtec.co.uk>
7286M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287W: http://www.simtec.co.uk/products/EB110ATX/
7288S: Supported
7289
7290SIMTEC EB2410ITX (BAST)
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/EB2410ITX/
7295S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007296F: arch/arm/mach-s3c2410/mach-bast.c
7297F: arch/arm/mach-s3c2410/bast-ide.c
7298F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007299
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007300TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007301M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007302M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307303L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307304T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007305Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007306S: Supported
7307F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007308F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007309
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007310TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007311M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007312L: linux-media@vger.kernel.org
7313L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7314W: http://linuxtv.org/
7315Q: http://patchwork.linuxtv.org/project/linux-media/list/
7316T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007317S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007318F: drivers/media/platform/davinci/
7319F: include/media/davinci/
7320
Francois Romieu92aab3c2005-07-30 13:11:18 +02007321SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007322M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007323L: netdev@vger.kernel.org
7324S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007325F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007326
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007328M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007330L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007332F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333
7334SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007335M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007338F: Documentation/fb/sisfb.txt
7339F: drivers/video/sis/
7340F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341
7342SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007343M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344W: http://www.winischhofer.at/linuxsisusbvga.shtml
7345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007346F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007348SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007349M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007350M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007351M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007352L: linux-mm@kvack.org
7353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007354F: include/linux/sl?b*.h
7355F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007356
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007357SLEEPABLE READ-COPY UPDATE (SRCU)
7358M: Lai Jiangshan <laijs@cn.fujitsu.com>
7359M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7360W: http://www.rdrop.com/users/paulmck/RCU/
7361S: Supported
7362T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7363F: include/linux/srcu*
7364F: kernel/srcu*
7365
Casey Schaufler66372842012-05-23 18:34:52 -07007366SMACK SECURITY MODULE
7367M: Casey Schaufler <casey@schaufler-ca.com>
7368L: linux-security-module@vger.kernel.org
7369W: http://schaufler-ca.com
7370T: git git://git.gitorious.org/smack-next/kernel.git
7371S: Maintained
7372F: Documentation/security/Smack.txt
7373F: security/smack/
7374
Linus Torvalds1da177e2005-04-16 15:20:36 -07007375SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007376M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007377S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007378F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379
Sakari Ailuse8e31622012-11-12 18:14:39 -03007380SMIA AND SMIA++ IMAGE SENSOR DRIVER
7381M: Sakari Ailus <sakari.ailus@iki.fi>
7382L: linux-media@vger.kernel.org
7383S: Maintained
7384F: drivers/media/i2c/smiapp
7385F: include/media/smiapp.h
7386F: drivers/media/i2c/smiapp-pll.c
7387F: drivers/media/i2c/smiapp-pll.h
7388
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007389SMM665 HARDWARE MONITOR DRIVER
7390M: Guenter Roeck <linux@roeck-us.net>
7391L: lm-sensors@lm-sensors.org
7392S: Maintained
7393F: Documentation/hwmon/smm665
7394F: drivers/hwmon/smm665.c
7395
Steve Glendinning9df73052010-08-14 21:08:54 +02007396SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007397M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007398L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007399S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007400F: Documentation/hwmon/emc2103
7401F: drivers/hwmon/emc2103.c
7402
Hans de Goedea98d5062011-03-21 17:59:36 +01007403SMSC SCH5627 HARDWARE MONITOR DRIVER
7404M: Hans de Goede <hdegoede@redhat.com>
7405L: lm-sensors@lm-sensors.org
7406S: Supported
7407F: Documentation/hwmon/sch5627
7408F: drivers/hwmon/sch5627.c
7409
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007410SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007411M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007412L: lm-sensors@lm-sensors.org
7413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007414F: Documentation/hwmon/smsc47b397
7415F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007416
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007417SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007418M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007419L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007421F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007422F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007423
Steve Glendinning2cb37722008-12-11 20:54:30 -08007424SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007425M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007426L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007427S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007428F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007429
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007430SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007431M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007432L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007433S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007434F: drivers/video/smscufx.c
7435
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007436SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007437M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007438L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007439T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007440S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007441F: include/media/soc*
7442F: drivers/media/i2c/soc_camera/
7443F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007444
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007445SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007446M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007448F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007449
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007451M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007454F: drivers/md/
7455F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007456F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007459M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007460L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007462F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463
Michael Buesch61e115a2007-09-18 15:12:50 -04007464SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007465M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007466L: netdev@vger.kernel.org
7467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007468F: drivers/ssb/
7469F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007470
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007472M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007473L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007474W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007476F: Documentation/laptops/sony-laptop.txt
7477F: drivers/char/sonypi.c
7478F: drivers/platform/x86/sony-laptop.c
7479F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480
Alex Dubovbaf85322008-02-09 10:20:54 -08007481SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007482M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007483W: http://tifmxx.berlios.de/
7484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007485F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007486
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007488M: Jaroslav Kysela <perex@perex.cz>
7489M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007490L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007491W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007492T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007493T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007495F: Documentation/sound/
7496F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007497F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007498F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
Mark Brownbd903bd2008-11-19 19:16:05 +00007500SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007501M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007502M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007503T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007504L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007505W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007507F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007508F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007509
Sam Ravnborg473321f2009-01-04 15:47:49 -08007510SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007511M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007513Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007514T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7515T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007517F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007518F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519
David S. Miller6404fcc2010-03-16 01:00:17 -07007520SPARC SERIAL DRIVERS
7521M: "David S. Miller" <davem@davemloft.net>
7522L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007523T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7524T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007525S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007526F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007527F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007528F: drivers/tty/serial/sunhv.c
7529F: drivers/tty/serial/sunsab.c
7530F: drivers/tty/serial/sunsab.h
7531F: drivers/tty/serial/sunsu.c
7532F: drivers/tty/serial/sunzilog.c
7533F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007534
Christopher Li389325b2012-04-05 14:25:14 -07007535SPARSE CHECKER
7536M: "Christopher Li" <sparse@chrisli.org>
7537L: linux-sparse@vger.kernel.org
7538W: https://sparse.wiki.kernel.org/
7539T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7540T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7541S: Maintained
7542F: include/linux/compiler.h
7543
viresh kumarfc0c1952010-04-01 12:31:21 +01007544SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007545M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307546M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007547L: spear-devel@list.st.com
7548L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007549W: http://www.st.com/spear
7550S: Maintained
7551F: arch/arm/plat-spear/
7552
Viresh Kumar71e09a92012-04-20 22:39:48 +05307553SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007554M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307555M: Shiraz Hashim <shiraz.hashim@st.com>
7556L: spear-devel@list.st.com
7557L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7558W: http://www.st.com/spear
7559S: Maintained
7560F: arch/arm/mach-spear13xx/
7561
viresh kumarfc0c1952010-04-01 12:31:21 +01007562SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007563M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307564M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007565L: spear-devel@list.st.com
7566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007567W: http://www.st.com/spear
7568S: Maintained
7569F: arch/arm/mach-spear3xx/
7570
7571SPEAR6XX MACHINE SUPPORT
7572M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307573M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007574M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007575L: spear-devel@list.st.com
7576L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007577W: http://www.st.com/spear
7578S: Maintained
7579F: arch/arm/mach-spear6xx/
7580
7581SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007582M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007583L: spear-devel@list.st.com
7584L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007585W: http://www.st.com/spear
7586S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307587F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007588
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007589SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007590M: Mark Brown <broonie@kernel.org>
Grant Likely19624232013-04-08 11:51:42 +01007591M: Grant Likely <grant.likely@linaro.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007592L: spi-devel-general@lists.sourceforge.net
Mark Browne7e4e132013-04-18 18:18:47 +01007593T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007594Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007596F: Documentation/spi/
7597F: drivers/spi/
7598F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007599F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007600
Jim Lewis2752e402006-09-29 02:01:19 -07007601SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007602M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7603M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007604L: netdev@vger.kernel.org
7605S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007606F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007607F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007608
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007609SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007610M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007611L: linuxppc-dev@lists.ozlabs.org
7612L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007613W: http://www.ibm.com/developerworks/power/cell/
7614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007615F: Documentation/filesystems/spufs.txt
7616F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007617
Phillip Lougherfc555842009-01-05 08:46:29 +00007618SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007619M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007620L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7621W: http://squashfs.org.uk
7622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007623F: Documentation/filesystems/squashfs.txt
7624F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007625
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007627M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007629F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630
Linus Torvalds26e9a392008-10-17 09:50:12 -07007631STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007632M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007633L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007634S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007635
Linus Torvalds26e9a392008-10-17 09:50:12 -07007636STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007637M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007638T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007639L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007641F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007642
Joe Perchesc8c8b102011-07-05 09:42:12 -07007643STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7644M: Henk de Groot <pe1dnn@amsat.org>
7645S: Odd Fixes
7646F: drivers/staging/wlags49_h2/
7647F: drivers/staging/wlags49_h25/
7648
Joe Perchesc9555152011-07-05 09:42:01 -07007649STAGING - ASUS OLED
7650M: Jakub Schmidtke <sjakub@gmail.com>
7651S: Odd Fixes
7652F: drivers/staging/asus_oled/
7653
Joe Perchesebd3d012011-07-05 09:42:02 -07007654STAGING - COMEDI
7655M: Ian Abbott <abbotti@mev.co.uk>
7656M: Mori Hess <fmhess@users.sourceforge.net>
7657S: Odd Fixes
7658F: drivers/staging/comedi/
7659
Joe Perches8ca572c2011-07-05 09:42:03 -07007660STAGING - CRYSTAL HD VIDEO DECODER
7661M: Naren Sankar <nsankar@broadcom.com>
7662M: Jarod Wilson <jarod@wilsonet.com>
7663M: Scott Davilla <davilla@4pi.com>
7664M: Manu Abraham <abraham.manu@gmail.com>
7665S: Odd Fixes
7666F: drivers/staging/crystalhd/
7667
Joe Perches0f16ffc2011-07-05 09:42:04 -07007668STAGING - ECHO CANCELLER
7669M: Steve Underwood <steveu@coppice.org>
7670M: David Rowe <david@rowetel.com>
7671S: Odd Fixes
7672F: drivers/staging/echo/
7673
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007674STAGING - ET131X NETWORK DRIVER
7675M: Mark Einon <mark.einon@gmail.com>
7676S: Odd Fixes
7677F: drivers/staging/et131x/
7678
Joe Perchesa0138162011-07-05 15:21:34 -07007679STAGING - FLARION FT1000 DRIVERS
7680M: Marek Belisko <marek.belisko@gmail.com>
7681S: Odd Fixes
7682F: drivers/staging/ft1000/
7683
Joe Perchesec3fab92011-07-05 09:42:05 -07007684STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7685M: David Täht <d@teklibre.com>
7686S: Odd Fixes
7687F: drivers/staging/frontier/
7688
Hans Verkuil98ded592013-03-09 12:59:44 -03007689STAGING - GO7007 MPEG CODEC
7690M: Hans Verkuil <hans.verkuil@cisco.com>
7691S: Maintained
7692F: drivers/staging/media/go7007/
7693
Joe Perches6c1bb422011-07-05 09:42:07 -07007694STAGING - INDUSTRIAL IO
7695M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007696L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007697S: Odd Fixes
7698F: drivers/staging/iio/
7699
Joe Perchesa0138162011-07-05 15:21:34 -07007700STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7701M: Jarod Wilson <jarod@wilsonet.com>
7702W: http://www.lirc.org/
7703S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007704F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007705
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007706STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007707M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007708M: Marc Dietrich <marvin24@gmx.de>
7709L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007710L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007711S: Maintained
7712F: drivers/staging/nvec/
7713
Joe Perchesa0138162011-07-05 15:21:34 -07007714STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7715M: Andres Salomon <dilinger@queued.net>
7716M: Chris Ball <cjb@laptop.org>
7717M: Jon Nettleton <jon.nettleton@gmail.com>
7718W: http://wiki.laptop.org/go/DCON
7719S: Odd Fixes
7720F: drivers/staging/olpc_dcon/
7721
Chris Kelly94cfdd12012-03-14 10:55:42 +00007722STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007723M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007724S: Maintained
7725F: drivers/staging/ozwpan/
7726
Joe Perchesa0138162011-07-05 15:21:34 -07007727STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007728M: Willy Tarreau <willy@meta-x.org>
7729S: Odd Fixes
7730F: drivers/staging/panel/
7731
Joe Perchesa0138162011-07-05 15:21:34 -07007732STAGING - REALTEK RTL8712U DRIVERS
7733M: Larry Finger <Larry.Finger@lwfinger.net>
7734M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7735S: Odd Fixes
7736F: drivers/staging/rtl8712/
7737
Joe Perches9629fa82011-07-05 09:42:09 -07007738STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7739M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7740S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007741F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007742
Joe Perchesa0138162011-07-05 15:21:34 -07007743STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007744M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7745S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007746F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007747
7748STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7749M: William Hubbs <w.d.hubbs@gmail.com>
7750M: Chris Brannon <chris@the-brannons.com>
7751M: Kirk Reiser <kirk@braille.uwo.ca>
7752M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7753L: speakup@braille.uwo.ca
7754W: http://www.linux-speakup.org/
7755S: Odd Fixes
7756F: drivers/staging/speakup/
7757
7758STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007759M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007760S: Odd Fixes
7761F: drivers/staging/tidspbridge/
7762
Joe Perchesa0138162011-07-05 15:21:34 -07007763STAGING - USB ENE SM/MS CARD READER DRIVER
7764M: Al Cho <acho@novell.com>
7765S: Odd Fixes
7766F: drivers/staging/keucr/
7767
Joe Perchesb3e871c2011-07-05 09:42:10 -07007768STAGING - VIA VT665X DRIVERS
7769M: Forest Bond <forest@alittletooquiet.net>
7770S: Odd Fixes
7771F: drivers/staging/vt665?/
7772
Joe Perches81a9a522011-07-05 09:42:11 -07007773STAGING - WINBOND IS89C35 WLAN USB DRIVER
7774M: Pavel Machek <pavel@ucw.cz>
7775S: Odd Fixes
7776F: drivers/staging/winbond/
7777
Joe Perches709bcb02011-07-05 09:42:13 -07007778STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007779M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007780S: Odd Fixes
7781F: drivers/staging/xgifb/
7782
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007784M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007785S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007786F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007788SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007789M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007790W: http://sammy.net/sun3/
7791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007792F: arch/m68k/kernel/*sun3*
7793F: arch/m68k/sun3*/
7794F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007795F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007796
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007797SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007798M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007799L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007801Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007802T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007803S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007804F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007805F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007806F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007808SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007809M: Len Brown <len.brown@intel.com>
7810M: Pavel Machek <pavel@ucw.cz>
7811M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007812L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007813S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007814F: Documentation/power/
7815F: arch/x86/kernel/acpi/
7816F: drivers/base/power/
7817F: kernel/power/
7818F: include/linux/suspend.h
7819F: include/linux/freezer.h
7820F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821
7822SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007823M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824L: linux-video@atrey.karlin.mff.cuni.cz
7825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007826F: Documentation/svga.txt
7827F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007829SWIOTLB SUBSYSTEM
7830M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7831L: linux-kernel@vger.kernel.org
7832S: Supported
7833F: lib/swiotlb.c
7834F: arch/*/kernel/pci-swiotlb.c
7835F: include/linux/swiotlb.h
7836
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307837SYNOPSYS ARC ARCHITECTURE
7838M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307839S: Supported
7840F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307841F: Documentation/devicetree/bindings/arc/
7842F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307843
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007845M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007847F: Documentation/filesystems/sysv-fs.txt
7848F: fs/sysv/
7849F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007851TARGET SUBSYSTEM
7852M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7853L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007854L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007855L: http://groups.google.com/group/linux-iscsi-target-dev
7856W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007857T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007858S: Supported
7859F: drivers/target/
7860F: include/target/
7861F: Documentation/target/
7862
Alan Cox4e688522008-04-30 00:52:11 -07007863TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007864M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007866F: Documentation/accounting/taskstats*
7867F: include/linux/taskstats*
7868F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007869
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007870TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007871M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007872L: netdev@vger.kernel.org
7873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007874F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007875F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007876F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007877
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007878TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007879M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7880M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007881W: http://tcp-lp-mod.sourceforge.net/
7882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007883F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007884
Antti Palosaari91952bc2012-10-01 12:28:46 -03007885TDA10071 MEDIA DRIVER
7886M: Antti Palosaari <crope@iki.fi>
7887L: linux-media@vger.kernel.org
7888W: http://linuxtv.org/
7889W: http://palosaari.fi/linux/
7890Q: http://patchwork.linuxtv.org/project/linux-media/list/
7891T: git git://linuxtv.org/anttip/media_tree.git
7892S: Maintained
7893F: drivers/media/dvb-frontends/tda10071*
7894
7895TDA18212 MEDIA DRIVER
7896M: Antti Palosaari <crope@iki.fi>
7897L: linux-media@vger.kernel.org
7898W: http://linuxtv.org/
7899W: http://palosaari.fi/linux/
7900Q: http://patchwork.linuxtv.org/project/linux-media/list/
7901T: git git://linuxtv.org/anttip/media_tree.git
7902S: Maintained
7903F: drivers/media/tuners/tda18212*
7904
7905TDA18218 MEDIA DRIVER
7906M: Antti Palosaari <crope@iki.fi>
7907L: linux-media@vger.kernel.org
7908W: http://linuxtv.org/
7909W: http://palosaari.fi/linux/
7910Q: http://patchwork.linuxtv.org/project/linux-media/list/
7911T: git git://linuxtv.org/anttip/media_tree.git
7912S: Maintained
7913F: drivers/media/tuners/tda18218*
7914
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007915TDA18271 MEDIA DRIVER
7916M: Michael Krufky <mkrufky@linuxtv.org>
7917L: linux-media@vger.kernel.org
7918W: http://linuxtv.org/
7919W: http://github.com/mkrufky
7920Q: http://patchwork.linuxtv.org/project/linux-media/list/
7921T: git git://linuxtv.org/mkrufky/tuners.git
7922S: Maintained
7923F: drivers/media/tuners/tda18271*
7924
Michael Krufkye48307a2012-10-02 00:56:33 -03007925TDA827x MEDIA DRIVER
7926M: Michael Krufky <mkrufky@linuxtv.org>
7927L: linux-media@vger.kernel.org
7928W: http://linuxtv.org/
7929W: http://github.com/mkrufky
7930Q: http://patchwork.linuxtv.org/project/linux-media/list/
7931T: git git://linuxtv.org/mkrufky/tuners.git
7932S: Maintained
7933F: drivers/media/tuners/tda8290.*
7934
Michael Krufky66cf9212012-10-02 00:56:28 -03007935TDA8290 MEDIA DRIVER
7936M: Michael Krufky <mkrufky@linuxtv.org>
7937L: linux-media@vger.kernel.org
7938W: http://linuxtv.org/
7939W: http://github.com/mkrufky
7940Q: http://patchwork.linuxtv.org/project/linux-media/list/
7941T: git git://linuxtv.org/mkrufky/tuners.git
7942S: Maintained
7943F: drivers/media/tuners/tda8290.*
7944
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007945TDA9840 MEDIA DRIVER
7946M: Hans Verkuil <hverkuil@xs4all.nl>
7947L: linux-media@vger.kernel.org
7948T: git git://linuxtv.org/media_tree.git
7949W: http://linuxtv.org
7950S: Maintained
7951F: drivers/media/i2c/tda9840*
7952
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007953TEA5761 TUNER DRIVER
7954M: Mauro Carvalho Chehab <mchehab@redhat.com>
7955L: linux-media@vger.kernel.org
7956W: http://linuxtv.org
7957T: git git://linuxtv.org/media_tree.git
7958S: Odd fixes
7959F: drivers/media/tuners/tea5761.*
7960
7961TEA5767 TUNER DRIVER
7962M: Mauro Carvalho Chehab <mchehab@redhat.com>
7963L: linux-media@vger.kernel.org
7964W: http://linuxtv.org
7965T: git git://linuxtv.org/media_tree.git
7966S: Maintained
7967F: drivers/media/tuners/tea5767.*
7968
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007969TEA6415C MEDIA DRIVER
7970M: Hans Verkuil <hverkuil@xs4all.nl>
7971L: linux-media@vger.kernel.org
7972T: git git://linuxtv.org/media_tree.git
7973W: http://linuxtv.org
7974S: Maintained
7975F: drivers/media/i2c/tea6415c*
7976
7977TEA6420 MEDIA DRIVER
7978M: Hans Verkuil <hverkuil@xs4all.nl>
7979L: linux-media@vger.kernel.org
7980T: git git://linuxtv.org/media_tree.git
7981W: http://linuxtv.org
7982S: Maintained
7983F: drivers/media/i2c/tea6420*
7984
Jiri Pirko3d249d42011-11-11 22:16:48 +00007985TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007986M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007987L: netdev@vger.kernel.org
7988S: Supported
7989F: drivers/net/team/
7990F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007991F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007992
Vivien Didelot7d029122013-01-04 16:18:14 -05007993TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7994M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7995S: Maintained
7996F: arch/x86/platform/ts5500/
7997
Sean Young40ad4a32012-11-19 10:32:53 -03007998TECHNOTREND USB IR RECEIVER
7999M: Sean Young <sean@mess.org>
8000L: linux-media@vger.kernel.org
8001S: Maintained
8002F: drivers/media/rc/ttusbir.c
8003
Erik Gilling84b94142010-06-09 15:35:53 -07008004TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07008005M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07008006L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07008007Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8008T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07008009S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07008010N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07008011
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008012TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008013M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008014L: netdev@vger.kernel.org
8015S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008016F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008017
Alan Cox4e688522008-04-30 00:52:11 -07008018Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008019M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008020S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008021F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008022
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008023TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008024M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008025M: Max Filippov <jcmvbkbc@gmail.com>
8026L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008028F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008029
Zhang Ruid3fb6952012-11-15 08:58:27 +08008030THERMAL
8031M: Zhang Rui <rui.zhang@intel.com>
Eduardo Valentinfa3031d2013-04-10 14:44:08 +00008032M: Eduardo Valentin <eduardo.valentin@ti.com>
Zhang Ruid3fb6952012-11-15 08:58:27 +08008033L: linux-pm@vger.kernel.org
8034T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
Eduardo Valentin2f99a472013-04-10 14:44:09 +00008035Q: https://patchwork.kernel.org/project/linux-pm/list/
Zhang Ruid3fb6952012-11-15 08:58:27 +08008036S: Supported
8037F: drivers/thermal/
8038F: include/linux/thermal.h
Eduardo Valentincfaf7172013-04-17 17:12:21 +00008039F: include/linux/cpu_cooling.h
Zhang Ruid3fb6952012-11-15 08:58:27 +08008040
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008041THINGM BLINK(1) USB RGB LED DRIVER
8042M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8043S: Maintained
8044F: drivers/hid/hid-thingm.c
8045
Alan Cox4e688522008-04-30 00:52:11 -07008046THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008047M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008048L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008049L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008050W: http://ibm-acpi.sourceforge.net
8051W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008052T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008054F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008055
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008056TI BANDGAP AND THERMAL DRIVER
8057M: Eduardo Valentin <eduardo.valentin@ti.com>
8058L: linux-pm@vger.kernel.org
8059S: Maintained
8060F: drivers/staging/omap-thermal/
8061
Alex Dubov4020f2d2006-10-04 02:15:37 -07008062TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008063M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008065F: drivers/misc/tifm*
8066F: drivers/mmc/host/tifm_sd.c
8067F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008068
M R Swami Reddy152ad442012-04-02 20:02:31 +05308069TI LM49xxx FAMILY ASoC CODEC DRIVERS
8070M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308071M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308072L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8073S: Maintained
8074F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308075F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308076
Kim, Milo0edd8072012-12-17 16:01:17 -08008077TI LP855x BACKLIGHT DRIVER
8078M: Milo Kim <milo.kim@ti.com>
8079S: Maintained
8080F: Documentation/backlight/lp855x-driver.txt
8081F: drivers/video/backlight/lp855x_bl.c
8082F: include/linux/platform_data/lp855x.h
8083
Kim, Milofaf13f62012-12-10 05:27:03 +00008084TI LP8727 CHARGER DRIVER
8085M: Milo Kim <milo.kim@ti.com>
8086S: Maintained
8087F: drivers/power/lp8727_charger.c
8088F: include/linux/platform_data/lp8727.h
8089
Kim, Milo22f12292012-12-10 05:27:55 +00008090TI LP8788 MFD DRIVER
8091M: Milo Kim <milo.kim@ti.com>
8092S: Maintained
8093F: drivers/iio/adc/lp8788_adc.c
8094F: drivers/leds/leds-lp8788.c
8095F: drivers/mfd/lp8788*.c
8096F: drivers/power/lp8788-charger.c
8097F: drivers/regulator/lp8788-*.c
8098F: include/linux/mfd/lp8788*.h
8099
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008100TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008101M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008102L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8103S: Maintained
8104F: sound/soc/codecs/twl4030*
8105
Luciano Coelho90921012011-11-20 21:40:41 +02008106TI WILINK WIRELESS DRIVERS
8107M: Luciano Coelho <coelho@ti.com>
8108L: linux-wireless@vger.kernel.org
8109W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8110W: http://wireless.kernel.org/en/users/Drivers/wl1251
8111T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8112S: Maintained
8113F: drivers/net/wireless/ti/
8114F: include/linux/wl12xx.h
8115
Per Lidene86eaa32006-01-12 16:45:18 +01008116TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008117M: Jon Maloy <jon.maloy@ericsson.com>
8118M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008119L: netdev@vger.kernel.org (core kernel code)
8120L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008121W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008122S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008123F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008124F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008125
Chris Metcalf867e3592010-05-28 23:09:12 -04008126TILE ARCHITECTURE
8127M: Chris Metcalf <cmetcalf@tilera.com>
8128W: http://www.tilera.com/scm/
8129S: Supported
8130F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008131F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008132F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008133F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008134
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008136M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008137L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138W: http://sourceforge.net/projects/tlan/
8139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008140F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008141F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008143TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008144M: Kentaro Takeda <takedakn@nttdata.co.jp>
8145M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008146L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8147L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008148L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8149L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8150W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008151T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008153F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008154
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008155TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008156M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008157L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008158S: Maintained
8159F: drivers/platform/x86/topstar-laptop.c
8160
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008162L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008163S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008164F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008165
8166TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008167M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168L: tlinux-users@tce.toshiba-dme.co.jp
8169W: http://www.buzzard.org.uk/toshiba/
8170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008171F: drivers/char/toshiba.c
8172F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008173F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174
Pierre Ossmand719f902009-03-24 21:06:09 +01008175TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008176M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008177M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008178L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008179S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008180F: drivers/mmc/host/tmio_mmc*
8181F: drivers/mmc/host/sh_mobile_sdhi.c
8182F: include/linux/mmc/tmio.h
8183F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008184
Hugh Dickins98f32602009-05-21 20:33:58 +01008185TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008186M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008187L: linux-mm@kvack.org
8188S: Maintained
8189F: include/linux/shmem_fs.h
8190F: mm/shmem.c
8191
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008192TM6000 VIDEO4LINUX DRIVER
8193M: Mauro Carvalho Chehab <mchehab@redhat.com>
8194L: linux-media@vger.kernel.org
8195W: http://linuxtv.org
8196T: git git://linuxtv.org/media_tree.git
8197S: Odd fixes
8198F: drivers/media/usb/tm6000/
8199
Alan Cox4e688522008-04-30 00:52:11 -07008200TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008201M: Kent Yoder <key@linux.vnet.ibm.com>
8202M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008203W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008204M: Marcel Selhorst <tpmdd@selhorst.net>
8205M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008206W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008207L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008209F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008210
Joe Perchesd6f005a2009-10-26 16:49:40 -07008211TRACING
8212M: Steven Rostedt <rostedt@goodmis.org>
8213M: Frederic Weisbecker <fweisbec@gmail.com>
8214M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008215T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008216S: Maintained
8217F: Documentation/trace/ftrace.txt
8218F: arch/*/*/*/ftrace.h
8219F: arch/*/kernel/ftrace.c
8220F: include/*/ftrace.h
8221F: include/linux/trace*.h
8222F: include/trace/
8223F: kernel/trace/
8224
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008226M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008227T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008229K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230
Alan Cox4e688522008-04-30 00:52:11 -07008231TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008232M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008233M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008234S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008235T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008236F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008237F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008238F: include/linux/serial_core.h
8239F: include/linux/serial.h
8240F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008241F: include/uapi/linux/serial_core.h
8242F: include/uapi/linux/serial.h
8243F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008244
Antti Palosaari91952bc2012-10-01 12:28:46 -03008245TUA9001 MEDIA DRIVER
8246M: Antti Palosaari <crope@iki.fi>
8247L: linux-media@vger.kernel.org
8248W: http://linuxtv.org/
8249W: http://palosaari.fi/linux/
8250Q: http://patchwork.linuxtv.org/project/linux-media/list/
8251T: git git://linuxtv.org/anttip/media_tree.git
8252S: Maintained
8253F: drivers/media/tuners/tua9001*
8254
Grant Grundler740db6d2008-02-17 11:53:49 -07008255TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008256M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008257L: netdev@vger.kernel.org
8258S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008259F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008260
8261TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008262M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263W: http://vtun.sourceforge.net/tun
8264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008265F: Documentation/networking/tuntap.txt
8266F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008268TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008269M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008271F: drivers/tc/
8272F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008273
Linus Torvalds1da177e2005-04-16 15:20:36 -07008274U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008275M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276L: linux-scsi@vger.kernel.org
8277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008278F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008280UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008281M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008282M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008283L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008284T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008285W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008287F: Documentation/filesystems/ubifs.txt
8288F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008289
Alan Coxcc2020e2008-05-19 14:21:51 +01008290UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008291M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008292W: http://www.uclinux.org/
8293L: uclinux-dev@uclinux.org (subscribers-only)
8294S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008295F: arch/m68k/*/*_no.*
8296F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008297
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008298UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008299M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008300W: http://uclinux-h8.sourceforge.jp/
8301S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008302F: arch/h8300/
8303F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008304F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008305
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008307M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008309F: Documentation/filesystems/udf.txt
8310F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311
Alan Coxcc2020e2008-05-19 14:21:51 +01008312UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008313M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008315F: Documentation/filesystems/ufs.txt
8316F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008317
David Herrmann0a09d3a2012-06-10 15:16:28 +02008318UHID USERSPACE HID IO DRIVER:
8319M: David Herrmann <dh.herrmann@googlemail.com>
8320L: linux-input@vger.kernel.org
8321S: Maintained
8322F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008323F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008324
David Vrabel18332a82008-09-17 16:34:44 +01008325ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008326L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008327S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008328F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008329F: include/linux/uwb.h
8330F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008331
GuanXuetaob31d8272011-01-16 00:35:49 +08008332UNICORE32 ARCHITECTURE:
8333M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8334W: http://mprc.pku.edu.cn/~guanxuetao/linux
8335S: Maintained
8336T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8337F: arch/unicore32/
8338
Tony Finchd8379ab2009-11-27 15:50:30 +00008339UNIFDEF
8340M: Tony Finch <dot@dotat.at>
8341W: http://dotat.at/prog/unifdef
8342S: Maintained
8343F: scripts/unifdef.c
8344
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008346M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347W: http://www.kernel.dk
8348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008349F: Documentation/cdrom/
8350F: drivers/cdrom/cdrom.c
8351F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008352F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308354UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8355M: Vinayak Holikatti <vinholikatti@gmail.com>
8356M: Santosh Y <santoshsy@gmail.com>
8357L: linux-scsi@vger.kernel.org
8358S: Supported
8359F: Documentation/scsi/ufs.txt
8360F: drivers/scsi/ufs/
8361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008362UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008363M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008364W: http://www.linux-mtd.infradead.org/
8365L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008366T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008367S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008368F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008369F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008370F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008371
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008372UNSORTED BLOCK IMAGES (UBI) Fastmap
8373M: Richard Weinberger <richard@nod.at>
8374L: linux-mtd@lists.infradead.org
8375S: Maintained
8376F: drivers/mtd/ubi/fastmap.c
8377
Linus Torvalds1da177e2005-04-16 15:20:36 -07008378USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008379M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008380L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008382F: Documentation/usb/acm.txt
8383F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008385USB AR5523 WIRELESS DRIVER
8386M: Pontus Fuchs <pontus.fuchs@gmail.com>
8387L: linux-wireless@vger.kernel.org
8388S: Maintained
8389F: drivers/net/wireless/ath/ar5523/
8390
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008391USB ATTACHED SCSI
8392M: Matthew Wilcox <willy@linux.intel.com>
8393M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008394M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008395L: linux-usb@vger.kernel.org
8396L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008397S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008398F: drivers/usb/storage/uas.c
8399
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008401M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008402L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008404F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008405F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008407USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008408M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008409L: linux-usb@vger.kernel.org
8410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008411F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008412
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008413USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008414M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008415L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008416W: http://www.linux-usb.org/usbnet
8417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008418F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008419
Alan Coxcc2020e2008-05-19 14:21:51 +01008420USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008421M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008422L: rio500-users@lists.sourceforge.net
8423W: http://rio500.sourceforge.net
8424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008425F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008426
Linus Torvalds1da177e2005-04-16 15:20:36 -07008427USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008428M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008429L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008431F: Documentation/usb/ehci.txt
8432F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008433
David Brownell69ae9e32006-11-14 02:03:31 -08008434USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008435M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008436L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008437W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008438T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008440F: drivers/usb/gadget/
8441F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008442
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008443USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008444M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008445L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008446T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008447S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008448F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008449F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450
matt mooney857aab32011-06-17 15:50:46 -07008451USB/IP DRIVERS
8452M: Matt Mooney <mfm@muteddisk.com>
8453L: linux-usb@vger.kernel.org
8454S: Maintained
8455F: drivers/staging/usbip/
8456
Olav Kongas959eea22005-11-03 17:38:14 +02008457USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008458M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008459L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008461F: drivers/usb/host/isp116x*
8462F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008463
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008465M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008466L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008468F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469
8470USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008471M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008472L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008473L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474S: Maintained
8475W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008476F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008477
Clemens Ladischaf399172011-01-10 16:32:54 +01008478USB MIDI DRIVER
8479M: Clemens Ladisch <clemens@ladisch.de>
8480L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8481T: git git://git.alsa-project.org/alsa-kernel.git
8482S: Maintained
8483F: sound/usb/midi.*
8484
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008486M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008487L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008489F: Documentation/usb/ohci.txt
8490F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008491
Matthias Urlichsba460e42005-07-14 00:33:47 -07008492USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008493M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008494L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008496F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008497
Linus Torvalds1da177e2005-04-16 15:20:36 -07008498USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008499M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008500L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008501L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008502T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503W: http://pegasus2.sourceforge.net/
8504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008505F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506
Felipe Balbid3ad5582012-05-21 16:24:49 +03008507USB PHY LAYER
8508M: Felipe Balbi <balbi@ti.com>
8509L: linux-usb@vger.kernel.org
8510T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8511S: Maintained
8512F: drivers/usb/phy/
8513F: drivers/usb/otg/
8514
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008515USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008516M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008517L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008519F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520
8521USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008522M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008523L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008524L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008525T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008526W: http://pegasus2.sourceforge.net/
8527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008528F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008529
Alan Cox4e688522008-04-30 00:52:11 -07008530USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008531M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008532L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008534F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008535
8536USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008537M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008538L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008539S: Maintained
8540W: http://geocities.com/i0xox0i
8541W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008542F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008543
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008545M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008548F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008549
8550USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008551M: Peter Berger <pberger@brimson.com>
8552M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008553L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008555F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008556
8557USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008558M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008559L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008560S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008561F: Documentation/usb/usb-serial.txt
8562F: drivers/usb/serial/generic.c
8563F: drivers/usb/serial/usb-serial.c
8564F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565
Linus Torvalds1da177e2005-04-16 15:20:36 -07008566USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008567M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008568L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008570F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008571
8572USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008573M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008574L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008576F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008577
8578USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008579M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008580L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008581W: http://www.connecttech.com
8582S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008583F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008584
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008585USB SMSC75XX ETHERNET DRIVER
8586M: Steve Glendinning <steve.glendinning@shawell.net>
8587L: netdev@vger.kernel.org
8588S: Maintained
8589F: drivers/net/usb/smsc75xx.*
8590
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008591USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008592M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008593L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008595F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008596
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008597USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008598M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008599L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008600L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008601T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008602W: http://www.linux-projects.org
8603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008604F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008605F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008606
8607USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008608M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008609L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008611T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008613F: Documentation/usb/
8614F: drivers/net/usb/
8615F: drivers/usb/
8616F: include/linux/usb.h
8617F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618
8619USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008620M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008621L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008623F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624
David Brownell69ae9e32006-11-14 02:03:31 -08008625USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008626M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008627L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008628W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008630F: drivers/net/usb/usbnet.c
8631F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008633USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008634M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008635L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008636L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008637T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008638W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008639S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008640F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008641F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008643USB VISION DRIVER
8644M: Hans Verkuil <hverkuil@xs4all.nl>
8645L: linux-media@vger.kernel.org
8646T: git git://linuxtv.org/media_tree.git
8647W: http://linuxtv.org
8648S: Odd Fixes
8649F: drivers/media/usb/usbvision/
8650
Laurent Pinchart8282da42012-10-04 02:32:42 +02008651USB WEBCAM GADGET
8652M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8653L: linux-usb@vger.kernel.org
8654S: Maintained
8655F: drivers/usb/gadget/*uvc*.c
8656F: drivers/usb/gadget/webcam.c
8657
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008658USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008659M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008660L: linux-wireless@vger.kernel.org
8661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008662F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008663
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008664USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008665M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008666L: linux-usb@vger.kernel.org
8667S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008668F: drivers/usb/host/xhci*
8669F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008670
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008672L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008673W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008674S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008675F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008676
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008677USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008678M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008679L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008680L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008681T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008682W: http://royale.zerezo.com/zr364xx/
8683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008684F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008685F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008686
Randy Dunlape7839f22008-10-12 16:11:45 -07008687USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008688M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008689M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008690L: user-mode-linux-devel@lists.sourceforge.net
8691L: user-mode-linux-user@lists.sourceforge.net
8692W: http://user-mode-linux.sourceforge.net
8693S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008694F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008695F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008696F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008697F: fs/hostfs/
8698F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008699
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008700USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008701M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008702M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008704F: Documentation/DocBook/uio-howto.tmpl
8705F: drivers/uio/
8706F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008707
Karel Zak256cccb2012-06-01 10:13:09 +02008708UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008709M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008710L: util-linux@vger.kernel.org
8711W: http://en.wikipedia.org/wiki/Util-linux
8712T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008713S: Maintained
8714
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008715UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008716M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008717L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008718W: http://dev.gentoo.org/~spock/projects/uvesafb/
8719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008720F: Documentation/fb/uvesafb.txt
8721F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008722
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008723VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008724M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008726F: Documentation/filesystems/vfat.txt
8727F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008728
Alex Williamsoncba33452012-07-31 08:16:22 -06008729VFIO DRIVER
8730M: Alex Williamson <alex.williamson@redhat.com>
8731L: kvm@vger.kernel.org
8732S: Maintained
8733F: Documentation/vfio.txt
8734F: drivers/vfio/
8735F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008736F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008737
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008738VIDEOBUF2 FRAMEWORK
8739M: Pawel Osciak <pawel@osciak.com>
8740M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008741M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008742L: linux-media@vger.kernel.org
8743S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008744F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008745F: include/media/videobuf2-*
8746
Amit Shah9a824462010-03-23 18:23:09 +05308747VIRTIO CONSOLE DRIVER
8748M: Amit Shah <amit.shah@redhat.com>
8749L: virtualization@lists.linux-foundation.org
8750S: Maintained
8751F: drivers/char/virtio_console.c
8752F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008753F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308754
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308755VIRTIO CORE, NET AND BLOCK DRIVERS
8756M: Rusty Russell <rusty@rustcorp.com.au>
8757M: "Michael S. Tsirkin" <mst@redhat.com>
8758L: virtualization@lists.linux-foundation.org
8759S: Maintained
8760F: drivers/virtio/
8761F: drivers/net/virtio_net.c
8762F: drivers/block/virtio_blk.c
8763F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308764F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308765
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008766VIRTIO HOST (VHOST)
8767M: "Michael S. Tsirkin" <mst@redhat.com>
8768L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008769L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008770L: netdev@vger.kernel.org
8771S: Maintained
8772F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008773F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008774
Linus Torvalds1da177e2005-04-16 15:20:36 -07008775VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008776M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008777S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008778F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008779
Harald Weltef0bf7f62009-06-17 20:22:39 +02008780VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008781M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008782M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008783S: Maintained
8784F: drivers/mmc/host/via-sdmmc.c
8785
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008786VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008787M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008788L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008789S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008790F: include/linux/via-core.h
8791F: include/linux/via-gpio.h
8792F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008793F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008794
Francois Romieu01f20732007-01-26 00:57:17 -08008795VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008796M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008797L: netdev@vger.kernel.org
8798S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008799F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008800
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008801VIVI VIRTUAL VIDEO DRIVER
8802M: Hans Verkuil <hverkuil@xs4all.nl>
8803L: linux-media@vger.kernel.org
8804T: git git://linuxtv.org/media_tree.git
8805W: http://linuxtv.org
8806S: Maintained
8807F: drivers/media/platform/vivi*
8808
Patrick McHardybe7f8272007-10-23 20:26:36 -07008809VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008810M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008811L: netdev@vger.kernel.org
8812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008813F: drivers/net/macvlan.c
8814F: include/linux/if_*vlan.h
8815F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008816
Florian Fainelli55e331c2009-06-16 15:33:53 -07008817VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008818M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008819L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008820S: Maintained
8821F: drivers/vlynq/vlynq.c
8822F: include/linux/vlynq.h
8823
Martyn Welch390beae2012-05-03 17:52:36 +01008824VME SUBSYSTEM
8825M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008826M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008827M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8828L: devel@driverdev.osuosl.org
8829S: Maintained
8830T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8831F: Documentation/vme_api.txt
8832F: drivers/staging/vme/
8833F: drivers/vme/
8834F: include/linux/vme*
8835
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008836VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008837M: Shreyas Bhatewara <sbhatewara@vmware.com>
8838M: "VMware, Inc." <pv-drivers@vmware.com>
8839L: netdev@vger.kernel.org
8840S: Maintained
8841F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008842
Alok Kataria851b1642009-10-13 14:51:05 -07008843VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008844M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008845M: VMware PV-Drivers <pv-drivers@vmware.com>
8846L: linux-scsi@vger.kernel.org
8847S: Maintained
8848F: drivers/scsi/vmw_pvscsi.c
8849F: drivers/scsi/vmw_pvscsi.h
8850
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008851VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08008852M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008853M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008854W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008855W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008856T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008857S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008858F: drivers/regulator/
8859F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008860
Juerg Haefligerab413192006-09-24 20:54:04 +02008861VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008862M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008863L: lm-sensors@lm-sensors.org
8864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008865F: Documentation/hwmon/vt1211
8866F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008867
Roger Lucas1de9e372005-11-26 20:20:05 +01008868VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008869M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008870L: lm-sensors@lm-sensors.org
8871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008872F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008873
Tony Olech88095e72011-05-14 16:48:13 -04008874VUB300 USB to SDIO/SD/MMC bridge chip
8875M: Tony Olech <tony.olech@elandigitalsystems.com>
8876L: linux-mmc@vger.kernel.org
8877L: linux-usb@vger.kernel.org
8878S: Supported
8879F: drivers/mmc/host/vub300.c
8880
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008882M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008884F: Documentation/w1/
8885F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886
Charles Spirakis13927072006-07-05 18:05:15 +02008887W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008888M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008889L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008891F: Documentation/hwmon/w83791d
8892F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008893
Rudolf Marek61db0112006-12-12 18:18:30 +01008894W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008895M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008896L: lm-sensors@lm-sensors.org
8897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008898F: Documentation/hwmon/w83793
8899F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008900
Jean Delvaree3760b42010-10-28 20:31:49 +02008901W83795 HARDWARE MONITORING DRIVER
8902M: Jean Delvare <khali@linux-fr.org>
8903L: lm-sensors@lm-sensors.org
8904S: Maintained
8905F: drivers/hwmon/w83795.c
8906
Linus Torvalds1da177e2005-04-16 15:20:36 -07008907W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008908M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008910F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008911
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008912WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008913M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008914L: linux-watchdog@vger.kernel.org
8915W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008916T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008918F: Documentation/watchdog/
8919F: drivers/watchdog/
8920F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008921F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008922
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008924M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925L: linux-scsi@vger.kernel.org
8926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008927F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008928
David Herrmannb22e00f2011-09-06 13:50:40 +02008929WIIMOTE HID DRIVER
8930M: David Herrmann <dh.herrmann@googlemail.com>
8931L: linux-input@vger.kernel.org
8932S: Maintained
8933F: drivers/hid/hid-wiimote*
8934
David Härdemane258b802009-09-21 17:04:53 -07008935WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008936M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008937S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008938F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008939
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008940WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008941M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008942M: linux-wimax@intel.com
8943L: wimax@linuxwimax.org
8944S: Supported
8945W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008946F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008947F: include/linux/wimax/debug.h
8948F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008949F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008950F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008951
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008952WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008953M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008955F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008956
Linus Torvalds1da177e2005-04-16 15:20:36 -07008957WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008958M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008959L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008960W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008962F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008963
Mark Brownfebf1df2008-04-02 00:51:09 -04008964WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008965M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8966M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008967L: linux-input@vger.kernel.org
8968T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8969W: http://opensource.wolfsonmicro.com/node/7
8970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008971F: drivers/input/touchscreen/*wm97*
8972F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008973
Mark Brown055bcbc2010-08-13 14:18:12 +01008974WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008975M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008976L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008977T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008978T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008979W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008980S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008981F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008982F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008983F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008984F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008985F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008986F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008987F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008988F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008989F: drivers/input/misc/wm831x-on.c
8990F: drivers/input/touchscreen/wm831x-ts.c
8991F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008992F: drivers/mfd/arizona*
8993F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008994F: drivers/power/wm83*.c
8995F: drivers/rtc/rtc-wm83*.c
8996F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008997F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008998F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008999F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01009000F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01009001F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08009002F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09009003F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01009004F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01009005F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01009006F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01009007
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009008WORKQUEUE
9009M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009010T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9011S: Maintained
9012F: include/linux/workqueue.h
9013F: kernel/workqueue.c
9014F: Documentation/workqueue.txt
9015
Linus Torvalds1da177e2005-04-16 15:20:36 -07009016X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009017M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009018L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009019S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009020F: Documentation/networking/x25*
9021F: include/net/x25*
9022F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009023
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009024X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009025M: Thomas Gleixner <tglx@linutronix.de>
9026M: Ingo Molnar <mingo@redhat.com>
9027M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009028M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009029T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009031F: Documentation/x86/
9032F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009033
Matthew Garrettd0944852010-02-11 10:40:13 -05009034X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009035M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009036L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009037T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009038S: Maintained
9039F: drivers/platform/x86
9040
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009041X86 MCE INFRASTRUCTURE
9042M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009043M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009044L: linux-edac@vger.kernel.org
9045S: Maintained
9046F: arch/x86/kernel/cpu/mcheck/*
9047
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009048XC2028/3028 TUNER DRIVER
9049M: Mauro Carvalho Chehab <mchehab@redhat.com>
9050L: linux-media@vger.kernel.org
9051W: http://linuxtv.org
9052T: git git://linuxtv.org/media_tree.git
9053S: Maintained
9054F: drivers/media/tuners/tuner-xc2028.*
9055
Ian Campbellc4468082011-04-27 15:26:46 -07009056XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009057M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009058M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009059L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9060L: virtualization@lists.linux-foundation.org
9061S: Supported
9062F: arch/x86/xen/
9063F: drivers/*/xen-*front.c
9064F: drivers/xen/
9065F: arch/x86/include/asm/xen/
9066F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009067F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009068
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009069XEN HYPERVISOR ARM
9070M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9071L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9072S: Supported
9073F: arch/arm/xen/
9074F: arch/arm/include/asm/xen/
9075
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009076XEN NETWORK BACKEND DRIVER
9077M: Ian Campbell <ian.campbell@citrix.com>
9078L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9079L: netdev@vger.kernel.org
9080S: Supported
9081F: drivers/net/xen-netback/*
9082
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009083XEN PCI SUBSYSTEM
9084M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009085L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009086S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009087F: arch/x86/pci/*xen*
9088F: drivers/pci/*xen*
9089
9090XEN SWIOTLB SUBSYSTEM
9091M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009092L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009093S: Supported
9094F: arch/x86/xen/*swiotlb*
9095F: drivers/xen/*swiotlb*
9096
Linus Torvalds1da177e2005-04-16 15:20:36 -07009097XFS FILESYSTEM
9098P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009099M: Ben Myers <bpm@sgi.com>
9100M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009101M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009102L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009103W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009104T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009106F: Documentation/filesystems/xfs.txt
9107F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009108
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009109XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009110M: Anirudha Sarangi <anirudh@xilinx.com>
9111M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009112S: Maintained
9113F: drivers/net/ethernet/xilinx/xilinx_axienet*
9114
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009115XILINX SYSTEMACE DRIVER
Grant Likely19624232013-04-08 11:51:42 +01009116S: Unmaintained
Joe Perches679655d2009-04-07 20:44:32 -07009117F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009118
Peter Korsgaard238b8722006-12-06 20:35:17 -08009119XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009120M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009121L: linux-serial@vger.kernel.org
9122S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009123F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009124
Linus Torvalds1da177e2005-04-16 15:20:36 -07009125YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009126M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009127L: linux-hams@vger.kernel.org
9128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009129F: drivers/net/hamradio/yam*
9130F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009131
Henkaf64a5e2005-10-12 15:02:56 +02009132YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009133M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009134L: usbb2k-api-dev@nongnu.org
9135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009136F: Documentation/input/yealink.txt
9137F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009138
Linus Torvalds1da177e2005-04-16 15:20:36 -07009139Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009140M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009141W: http://yaina.de/jreuter/
9142W: http://www.qsl.net/dl1bke/
9143L: linux-hams@vger.kernel.org
9144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009145F: Documentation/networking/z8530drv.txt
9146F: drivers/net/hamradio/*scc.c
9147F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009148
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009149ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009150M: Daniel Drake <dsd@gentoo.org>
9151M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009152W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009153L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009154L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009156F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009157
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009159L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009160L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009161W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009162T: Mercurial http://linuxtv.org/hg/v4l-dvb
9163S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009164F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009165
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009166ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009167M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009168S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009169F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009170
Linus Torvalds1da177e2005-04-16 15:20:36 -07009171THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009172M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009173L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009174Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009175T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009176S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009177F: *
9178F: */