blob: e1f5fac1838efde0cb54741d97bdab8ac1469dda [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
1623BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001624S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001625F: Documentation/filesystems/befs.txt
1626F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001627
1628BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001629M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001631F: Documentation/filesystems/bfs.txt
1632F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001633F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001634
Bryan Wu1394f032007-05-06 14:50:22 -07001635BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001637L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001638W: http://blackfin.uclinux.org
1639S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001640F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001641
Bryan Wue190d6b2007-07-17 14:43:44 +08001642BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001643L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001644W: http://blackfin.uclinux.org
1645S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001646F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001647
Mike Frysinger566da5b2007-06-11 15:31:30 +08001648BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001649M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001650L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001651W: http://blackfin.uclinux.org
1652S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001653F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001654
Mike Frysinger936ed492010-03-10 15:20:38 -08001655BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001656M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001657L: uclinux-dist-devel@blackfin.uclinux.org
1658W: http://blackfin.uclinux.org
1659S: Supported
1660F: drivers/mmc/host/bfin_sdh.c
1661
Bryan Wu1394f032007-05-06 14:50:22 -07001662BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001663M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001664L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001665W: http://blackfin.uclinux.org
1666S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001667F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001668
Bryan Wu1e6d3202007-07-15 02:50:02 +08001669BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001671L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001672W: http://blackfin.uclinux.org
1673S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001674F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001675
Bryan Wud24ecfc2007-05-01 23:26:32 +02001676BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001678L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001679W: http://blackfin.uclinux.org/
1680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001682
Scott Jiang1e204372013-01-18 17:09:47 -03001683BLACKFIN MEDIA DRIVER
1684M: Scott Jiang <scott.jiang.linux@gmail.com>
1685L: uclinux-dist-devel@blackfin.uclinux.org
1686W: http://blackfin.uclinux.org/
1687S: Supported
1688F: drivers/media/platform/blackfin/
1689F: drivers/media/i2c/adv7183*
1690F: drivers/media/i2c/vs6624*
1691
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001692BLINKM RGB LED DRIVER
1693M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1694S: Maintained
1695F: drivers/leds/leds-blinkm.c
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001698M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001699T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001701F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Joern Engel2b54aae2008-02-06 01:38:02 -08001703BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001704M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001705L: linux-mtd@lists.infradead.org
1706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001707F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001708
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001709BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001710M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001711M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001712M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001713L: linux-bluetooth@vger.kernel.org
1714W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001715T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1716T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001718F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001721M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001722M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001723M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001724L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001725W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001726T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1727T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001729F: net/bluetooth/
1730F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001733M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001734M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001735L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001736W: http://sourceforge.net/projects/bonding/
1737S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001738F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001739F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Gary Zambrano39105892006-06-22 17:26:20 -07001741BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001742M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001743L: netdev@vger.kernel.org
1744S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001745F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001746
Michael Chan948c51e2006-06-04 02:51:39 -07001747BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001748M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001749L: netdev@vger.kernel.org
1750S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001751F: drivers/net/ethernet/broadcom/bnx2.*
1752F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001753
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001754BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001755M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001756L: netdev@vger.kernel.org
1757S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001758F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001759
Stephen Warrenf680f252012-09-15 00:18:54 -06001760BROADCOM BCM2835 ARM ARCHICTURE
1761M: Stephen Warren <swarren@wwwdotorg.org>
1762L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1763T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1764S: Maintained
1765F: arch/arm/mach-bcm2835/
1766F: arch/arm/boot/dts/bcm2835*
1767F: arch/arm/configs/bcm2835_defconfig
1768F: drivers/*/*bcm2835*
1769
Michael Chan948c51e2006-06-04 02:51:39 -07001770BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001771M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001772M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001773L: netdev@vger.kernel.org
1774S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001775F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001776
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001777BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1778M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001779M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001780M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001781M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001782L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001783L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001784S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001785F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001786
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001787BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1788M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1789L: linux-scsi@vger.kernel.org
1790S: Supported
1791F: drivers/scsi/bnx2fc/
1792
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001793BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1794M: Rafał Miłecki <zajec5@gmail.com>
1795L: linux-wireless@vger.kernel.org
1796S: Maintained
1797F: drivers/bcma/
1798F: include/linux/bcma/
1799
Jing Huang7725ccf2009-09-23 17:46:15 -07001800BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001801M: Anil Gurumurthy <agurumur@brocade.com>
1802M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001803L: linux-scsi@vger.kernel.org
1804S: Supported
1805F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001806
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001807BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1808M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001809L: netdev@vger.kernel.org
1810S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001811F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001812
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001813BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001814M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001815L: linux-scsi@vger.kernel.org
1816S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001817F: block/bsg.c
1818F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001819F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001820
Clemens Ladischaf399172011-01-10 16:32:54 +01001821BT87X AUDIO DRIVER
1822M: Clemens Ladisch <clemens@ladisch.de>
1823L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1824T: git git://git.alsa-project.org/alsa-kernel.git
1825S: Maintained
1826F: Documentation/sound/alsa/Bt87x.txt
1827F: sound/pci/bt87x.c
1828
Michael Bueschff1d5c22008-07-25 01:46:10 -07001829BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001830M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001831W: http://bu3sch.de/btgpio.php
1832S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001833F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001834
Joe Percheseb1eb042009-01-21 10:49:16 -05001835BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001836M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001837L: linux-btrfs@vger.kernel.org
1838W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001839Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001840T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001842F: Documentation/filesystems/btrfs.txt
1843F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001846M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001847L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001848W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001849T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001850S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001851F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001852F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Clemens Ladischaf399172011-01-10 16:32:54 +01001854C-MEDIA CMI8788 DRIVER
1855M: Clemens Ladisch <clemens@ladisch.de>
1856L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1857T: git git://git.alsa-project.org/alsa-kernel.git
1858S: Maintained
1859F: sound/pci/oxygen/
1860
Mark Salter21413552011-10-04 11:21:42 -04001861C6X ARCHITECTURE
1862M: Mark Salter <msalter@redhat.com>
1863M: Aurelien Jacquiot <a-jacquiot@ti.com>
1864L: linux-c6x-dev@linux-c6x.org
1865W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1866S: Maintained
1867F: arch/c6x/
1868
David Howellsa5432f52009-04-20 15:46:45 +01001869CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001871L: linux-cachefs@redhat.com
1872S: Supported
1873F: Documentation/filesystems/caching/cachefiles.txt
1874F: fs/cachefiles/
1875
Hans Verkuilc815ca32012-11-23 07:05:54 -03001876CADET FM/AM RADIO RECEIVER DRIVER
1877M: Hans Verkuil <hverkuil@xs4all.nl>
1878L: linux-media@vger.kernel.org
1879T: git git://linuxtv.org/media_tree.git
1880W: http://linuxtv.org
1881S: Maintained
1882F: drivers/media/radio/radio-cadet*
1883
Jonathan Corbet77d51402007-03-22 19:44:17 -03001884CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001885M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001886L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001887T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001889F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001890F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001891
Joe Perches201b6ba2010-09-07 20:33:24 +00001892CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001893M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001894L: netdev@vger.kernel.org
1895S: Supported
1896F: Documentation/networking/caif/
1897F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001898F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001899F: include/net/caif/
1900F: net/caif/
1901
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001902CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001903M: Muli Ben-Yehuda <muli@il.ibm.com>
1904M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001905L: discuss@x86-64.org
1906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001907F: arch/x86/kernel/pci-calgary_64.c
1908F: arch/x86/kernel/tce_64.c
1909F: arch/x86/include/asm/calgary.h
1910F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001911
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001912CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001913M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001914L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001915W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001916T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001917S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001918F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001919F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001920F: include/uapi/linux/can.h
1921F: include/uapi/linux/can/bcm.h
1922F: include/uapi/linux/can/raw.h
1923F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001924
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001925CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001926M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001927M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001928L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001929W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001930T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001931S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001932F: drivers/net/can/
1933F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001934F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001935F: include/uapi/linux/can/error.h
1936F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001937
James Morris95d16c72012-03-16 12:05:48 +11001938CAPABILITIES
1939M: Serge Hallyn <serge.hallyn@canonical.com>
1940L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001941S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001942F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001943F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001944F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001945F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001946F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001947
Arnd Bergmannb8154542008-05-16 11:10:59 +02001948CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001949M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001950L: linuxppc-dev@lists.ozlabs.org
1951L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001952W: http://www.ibm.com/developerworks/power/cell/
1953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001954F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001955F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001956F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001957F: arch/powerpc/oprofile/*cell*
1958F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001959
Sage Weil9030aaf2009-10-06 11:31:15 -07001960CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001961M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001962L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001963W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001964T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001965S: Supported
1966F: Documentation/filesystems/ceph.txt
1967F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001968F: net/ceph
1969F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001970F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001971
David Vrabel18332a82008-09-17 16:34:44 +01001972CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001973L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001974S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001975F: Documentation/usb/WUSB-Design-overview.txt
1976F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001977F: drivers/usb/host/hwa-hc.c
1978F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001979F: drivers/usb/wusbcore/
1980F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001981
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001982CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001983M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001984W: http://miguelojeda.es/auxdisplay.htm
1985W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001987F: drivers/auxdisplay/cfag12864b.c
1988F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001989
1990CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001991M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001992W: http://miguelojeda.es/auxdisplay.htm
1993W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001995F: drivers/auxdisplay/cfag12864bfb.c
1996F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001997
Johannes Berg704232c2007-04-23 12:20:05 -07001998CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001999M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002000L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002001W: http://wireless.kernel.org/
2002T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2003T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002004S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002005F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002006F: include/net/cfg80211.h
2007F: net/wireless/*
2008X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002009
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002010CHAR and MISC DRIVERS
2011M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002012M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002013T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002014S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002015F: drivers/char/*
2016F: drivers/misc/*
2017
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002018CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002019M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002020M: Joe Perches <joe@perches.com>
2021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002022F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002023
Harry Weif8407f262011-02-25 14:44:15 -08002024CHINESE DOCUMENTATION
2025M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002026L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002027L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2028S: Maintained
2029F: Documentation/zh_CN/
2030
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002031CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2032M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2033L: linux-usb@vger.kernel.org
2034S: Maintained
2035F: drivers/usb/chipidea/
2036
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002037CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002038M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002039M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002040M: Neel Patel <neepatel@cisco.com>
2041M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002042S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002043F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002044
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002045CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002046M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002047L: netdev@vger.kernel.org
2048S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002049F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002050
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002051CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002052M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002053L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002055F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002056
Timur Tabid9e9d822008-04-24 08:45:26 +10002057CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002058M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002059L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002060S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002061F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002062
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002063CLEANCACHE API
2064M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2065L: linux-kernel@vger.kernel.org
2066S: Maintained
2067F: mm/cleancache.c
2068F: include/linux/cleancache.h
2069
Russell Kingd4275352009-04-16 14:05:27 +01002070CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002072S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002073F: include/linux/clk.h
2074
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002075CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002076M: Hiral Patel <hiralpat@cisco.com>
2077M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002078M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002079L: linux-scsi@vger.kernel.org
2080S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002081F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002082
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002083CMPC ACPI DRIVER
2084M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2085M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002086L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002087S: Supported
2088F: drivers/platform/x86/classmate-laptop.c
2089
Nicolas Palix74425ee2010-06-06 17:15:01 +02002090COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002091M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002092M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002093M: Nicolas Palix <nicolas.palix@imag.fr>
2094L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002095W: http://coccinelle.lip6.fr/
2096S: Supported
2097F: scripts/coccinelle/
2098F: scripts/coccicheck
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002101M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102M: coda@cs.cmu.edu
2103L: codalist@coda.cs.cmu.edu
2104W: http://www.coda.cs.cmu.edu/
2105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002106F: Documentation/filesystems/coda.txt
2107F: fs/coda/
2108F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002109F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Mike Turquette7704add2012-05-02 18:37:45 -07002111COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002112M: Mike Turquette <mturquette@linaro.org>
2113L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2114T: git git://git.linaro.org/people/mturquette/linux.git
2115S: Maintained
2116F: drivers/clk/clk.c
2117F: drivers/clk/clk-*
2118F: include/linux/clk-pr*
2119
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002120COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002121M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002122L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002123L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002124W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002125Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002126T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002128F: Documentation/filesystems/cifs.txt
2129F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002133L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002135F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002138M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002139L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002141F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002144M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002145L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002149COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002150M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002151L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002153F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002154
Simon Arlott949be0f2007-03-06 02:47:46 -08002155CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002156M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002157L: accessrunner-general@lists.sourceforge.net
2158W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002161
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002162CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002163M: Joel Becker <jlbec@evilplan.org>
2164T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002165S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002166F: fs/configfs/
2167F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002168
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002169CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002170M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002171L: netdev@vger.kernel.org
2172S: Maintained
2173F: drivers/connector/
2174
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002175CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002176M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002177M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002178L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002179L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002180T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002182F: include/linux/cgroup*
2183F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002184F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002185
Rudolf Marekbebe4672007-05-08 17:22:02 +02002186CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002187M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002188L: lm-sensors@lm-sensors.org
2189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002190F: Documentation/hwmon/coretemp
2191F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002194M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195W: http://www.fi.muni.cz/~kas/cosa/
2196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002197F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Florian Fainelli4371ee32009-06-01 02:43:17 -07002199CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002200M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002201L: netdev@vger.kernel.org
2202S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002203F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002206M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002207M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002208L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002209L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210S: Maintained
viresh kumar45c009a2013-04-26 12:53:16 +00002211T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perches679655d2009-04-07 20:44:32 -07002212F: drivers/cpufreq/
2213F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002215CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2216M: Viresh Kumar <viresh.kumar@linaro.org>
2217M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2218L: cpufreq@vger.kernel.org
2219L: linux-pm@vger.kernel.org
2220W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2221S: Maintained
2222F: drivers/cpufreq/arm_big_little.h
2223F: drivers/cpufreq/arm_big_little.c
2224F: drivers/cpufreq/arm_big_little_dt.c
2225
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002226CPUIDLE DRIVERS
2227M: Rafael J. Wysocki <rjw@sisk.pl>
2228M: Daniel Lezcano <daniel.lezcano@linaro.org>
2229L: linux-pm@vger.kernel.org
2230S: Maintained
2231T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2232F: drivers/cpuidle/*
2233F: include/linux/cpuidle.h
2234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002236M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002238F: arch/x86/kernel/cpuid.c
2239F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002241CPU POWER MONITORING SUBSYSTEM
2242M: Dominik Brodowski <linux@dominikbrodowski.net>
2243M: Thomas Renninger <trenn@suse.de>
2244S: Maintained
2245F: tools/power/cpupower
2246
Paul Jacksoned90fb42005-09-27 21:45:37 -07002247CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002248M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002249W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002250W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002252F: Documentation/cgroups/cpusets.txt
2253F: include/linux/cpuset.h
2254F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002257W: http://sourceforge.net/projects/cramfs/
2258S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002259F: Documentation/filesystems/cramfs.txt
2260F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002263M: Mikael Starvik <starvik@axis.com>
2264M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002265L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266W: http://developer.axis.com
2267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002268F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002269F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002272M: Herbert Xu <herbert@gondor.apana.org.au>
2273M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002275T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002277F: Documentation/crypto/
2278F: arch/*/crypto/
2279F: crypto/
2280F: drivers/crypto/
2281F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Neil Horman5b07bd52009-02-05 16:03:04 +11002283CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002284M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002285L: linux-crypto@vger.kernel.org
2286S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002287F: crypto/ansi_cprng.c
2288F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002289
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002290CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002291M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002293F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002294
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002295CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002296M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002297L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002298L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002299T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002300W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002301W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002303F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002304F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002305F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002306
Hans Verkuil3f101d92012-11-23 07:00:02 -03002307CX2341X MPEG ENCODER HELPER MODULE
2308M: Hans Verkuil <hverkuil@xs4all.nl>
2309L: linux-media@vger.kernel.org
2310T: git git://linuxtv.org/media_tree.git
2311W: http://linuxtv.org
2312S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002313F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002314F: include/media/cx2341x*
2315
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002316CX88 VIDEO4LINUX DRIVER
2317M: Mauro Carvalho Chehab <mchehab@redhat.com>
2318L: linux-media@vger.kernel.org
2319W: http://linuxtv.org
2320T: git git://linuxtv.org/media_tree.git
2321S: Odd fixes
2322F: Documentation/video4linux/cx88/
2323F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002324
Antti Palosaari91952bc2012-10-01 12:28:46 -03002325CXD2820R MEDIA DRIVER
2326M: Antti Palosaari <crope@iki.fi>
2327L: linux-media@vger.kernel.org
2328W: http://linuxtv.org/
2329W: http://palosaari.fi/linux/
2330Q: http://patchwork.linuxtv.org/project/linux-media/list/
2331T: git git://linuxtv.org/anttip/media_tree.git
2332S: Maintained
2333F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002334
Steve Wisee5ec3782008-05-20 14:06:33 -07002335CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002337L: netdev@vger.kernel.org
2338W: http://www.chelsio.com
2339S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002340F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002341
2342CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002343M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002344L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002345W: http://www.openfabrics.org
2346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002347F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002348
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002349CXGB4 ETHERNET DRIVER (CXGB4)
2350M: Dimitris Michailidis <dm@chelsio.com>
2351L: netdev@vger.kernel.org
2352W: http://www.chelsio.com
2353S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002354F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002355
2356CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2357M: Steve Wise <swise@chelsio.com>
2358L: linux-rdma@vger.kernel.org
2359W: http://www.openfabrics.org
2360S: Supported
2361F: drivers/infiniband/hw/cxgb4/
2362
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002363CXGB4VF ETHERNET DRIVER (CXGB4VF)
2364M: Casey Leedom <leedom@chelsio.com>
2365L: netdev@vger.kernel.org
2366W: http://www.chelsio.com
2367S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002368F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002369
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002370STMMAC ETHERNET DRIVER
2371M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2372L: netdev@vger.kernel.org
2373W: http://www.stlinux.com
2374S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002375F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002378M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002379L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380W: http://www.arm.linux.org.uk/
2381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002382F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002386S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002387F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002388F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002389F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002393S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002394F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002396CYPRESS_FIRMWARE MEDIA DRIVER
2397M: Antti Palosaari <crope@iki.fi>
2398L: linux-media@vger.kernel.org
2399W: http://linuxtv.org/
2400W: http://palosaari.fi/linux/
2401Q: http://patchwork.linuxtv.org/project/linux-media/list/
2402T: git git://linuxtv.org/anttip/media_tree.git
2403S: Maintained
2404F: drivers/media/common/cypress_firmware*
2405
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002406CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002407M: Javier Martinez Canillas <javier@dowhile0.org>
2408L: linux-input@vger.kernel.org
2409S: Maintained
2410F: drivers/input/touchscreen/cyttsp*
2411F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002414M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415W: http://yaina.de/jreuter/
2416W: http://www.qsl.net/dl1bke/
2417L: linux-hams@vger.kernel.org
2418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002419F: net/ax25/af_ax25.c
2420F: net/ax25/ax25_dev.c
2421F: net/ax25/ax25_ds_*
2422F: net/ax25/ax25_in.c
2423F: net/ax25/ax25_out.c
2424F: net/ax25/ax25_timer.c
2425F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002427DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002428L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002429S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002430F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002431F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002432
2433DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002434M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002435W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002436M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002438F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002441M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002442M: Ali Akcaagac <aliakc@web.de>
2443M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002445L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446L: http://lists.twibble.org/mailman/listinfo/dc395x/
2447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002448F: Documentation/scsi/dc395x.txt
2449F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002451DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002452M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002453L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002454W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002456F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002457F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002458F: include/linux/tfrc.h
2459F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462W: http://linux-decnet.sourceforge.net
2463L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002464S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002465F: Documentation/networking/decnet.txt
2466F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002469M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002471F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002473DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002474M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002475L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002477F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002480S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002481F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002482F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Doug Warzecha90563ec2005-09-06 15:17:15 -07002484DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002487F: Documentation/dcdbas.txt
2488F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002489
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002490DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002491M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002492S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002493F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002494
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002495DESIGNWARE USB2 DRD IP DRIVER
2496M: Paul Zimmerman <paulz@synopsys.com>
2497L: linux-usb@vger.kernel.org
2498S: Maintained
2499F: drivers/staging/dwc2/
2500
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002501DESIGNWARE USB3 DRD IP DRIVER
2502M: Felipe Balbi <balbi@ti.com>
2503L: linux-usb@vger.kernel.org
2504L: linux-omap@vger.kernel.org
2505T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2506S: Maintained
2507F: drivers/usb/dwc3/
2508
Kyungmin Park89d07762012-01-10 15:09:09 -08002509DEVICE FREQUENCY (DEVFREQ)
2510M: MyungJoo Ham <myungjoo.ham@samsung.com>
2511M: Kyungmin Park <kyungmin.park@samsung.com>
2512L: linux-kernel@vger.kernel.org
2513S: Maintained
2514F: drivers/devfreq/
2515
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002517M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519S: Maintained
2520
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002521DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002522M: Alasdair Kergon <agk@redhat.com>
2523M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002524L: dm-devel@redhat.com
2525W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002526Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002527T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002529F: Documentation/device-mapper/
2530F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002531F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002532F: include/linux/device-mapper.h
2533F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002534
Guenter Roeck335d7c52011-01-26 11:45:49 -08002535DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002536M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002537L: linux-i2c@vger.kernel.org
2538S: Maintained
2539F: drivers/i2c/busses/i2c-diolan-u2c.c
2540
Randy Dunlape7839f22008-10-12 16:11:45 -07002541DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002542M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002544F: Documentation/filesystems/dnotify.txt
2545F: fs/notify/dnotify/
2546F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002549M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2551W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2552W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2553S: Maintained
2554
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002555DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002556M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002558F: Documentation/filesystems/quota.txt
2559F: fs/quota/
2560F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002561F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Bernie Thompson702686a2012-03-01 13:52:13 -08002563DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2564M: Bernie Thompson <bernie@plugable.com>
2565L: linux-fbdev@vger.kernel.org
2566S: Maintained
2567W: http://plugable.com/category/projects/udlfb/
2568F: drivers/video/udlfb.c
2569F: include/video/udlfb.h
2570F: Documentation/fb/udlfb.txt
2571
Randy Dunlape7839f22008-10-12 16:11:45 -07002572DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002573M: Christine Caulfield <ccaulfie@redhat.com>
2574M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002575L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002576W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002577T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002578S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002579F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002580
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302581DMA BUFFER SHARING FRAMEWORK
2582M: Sumit Semwal <sumit.semwal@linaro.org>
2583S: Maintained
2584L: linux-media@vger.kernel.org
2585L: dri-devel@lists.freedesktop.org
2586L: linaro-mm-sig@lists.linaro.org
2587F: drivers/base/dma-buf*
2588F: include/linux/dma-buf*
2589F: Documentation/dma-buf-sharing.txt
2590T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2591
Dan Williamsb3e5f262007-08-07 10:26:35 -07002592DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002593M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002594M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002595S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002596F: drivers/dma/
2597F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302598T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2599T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002600
Juerg Haefligerb8250372007-06-09 10:11:16 -04002601DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002602M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002603L: lm-sensors@lm-sensors.org
2604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002605F: Documentation/hwmon/dme1737
2606F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002607
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002608DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002609M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002610L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002611S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002612F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002613
Joe Perches7d2c86b2009-04-07 20:59:01 -07002614DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002615M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002616L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002617T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002619F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002622M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623L: blinux-list@redhat.com
2624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002625F: drivers/char/dtlk.c
2626F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002628DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002630L: linux-scsi@vger.kernel.org
2631W: http://www.adaptec.com/
2632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002633F: drivers/scsi/dpt*
2634F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002635
Philipp Reisnerb411b362009-09-25 16:07:19 -07002636DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002637P: Philipp Reisner
2638P: Lars Ellenberg
2639M: drbd-dev@lists.linbit.com
2640L: drbd-user@lists.linbit.com
2641W: http://www.drbd.org
2642T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2643T: git git://git.drbd.org/drbd-8.3.git
2644S: Supported
2645F: drivers/block/drbd/
2646F: lib/lru_cache.c
2647F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002648
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002649DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002650M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002651T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002653F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002654F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002655F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002656F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002657F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002658F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002659F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002662M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002663L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002664T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002666F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002667F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002668F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Chris Wilson8daf7472010-09-28 14:07:26 +01002670INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002671M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002672L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002673L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002674T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002675S: Supported
2676F: drivers/gpu/drm/i915
2677F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002678F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002679
Kyungmin Park398a6d42011-11-02 11:33:16 +09002680DRM DRIVERS FOR EXYNOS
2681M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002682M: Joonyoung Shim <jy0922.shim@samsung.com>
2683M: Seung-Woo Kim <sw0312.kim@samsung.com>
2684M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002685L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002686T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002687S: Supported
2688F: drivers/gpu/drm/exynos
2689F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002690F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002691
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002692DRM DRIVERS FOR NVIDIA TEGRA
2693M: Thierry Reding <thierry.reding@avionic-design.de>
2694L: dri-devel@lists.freedesktop.org
2695L: linux-tegra@vger.kernel.org
2696T: git git://gitorious.org/thierryreding/linux.git
2697S: Maintained
2698F: drivers/gpu/drm/tegra/
2699F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2700
Alexey Klimov598df1a2012-11-28 17:16:32 -03002701DSBR100 USB FM RADIO DRIVER
2702M: Alexey Klimov <klimov.linux@gmail.com>
2703L: linux-media@vger.kernel.org
2704T: git git://linuxtv.org/media_tree.git
2705S: Maintained
2706F: drivers/media/radio/dsbr100.c
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002709M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002710L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002712F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Antti Palosaari91952bc2012-10-01 12:28:46 -03002714DVB_USB_AF9015 MEDIA DRIVER
2715M: Antti Palosaari <crope@iki.fi>
2716L: linux-media@vger.kernel.org
2717W: http://linuxtv.org/
2718W: http://palosaari.fi/linux/
2719Q: http://patchwork.linuxtv.org/project/linux-media/list/
2720T: git git://linuxtv.org/anttip/media_tree.git
2721S: Maintained
2722F: drivers/media/usb/dvb-usb-v2/af9015*
2723
2724DVB_USB_AF9035 MEDIA DRIVER
2725M: Antti Palosaari <crope@iki.fi>
2726L: linux-media@vger.kernel.org
2727W: http://linuxtv.org/
2728W: http://palosaari.fi/linux/
2729Q: http://patchwork.linuxtv.org/project/linux-media/list/
2730T: git git://linuxtv.org/anttip/media_tree.git
2731S: Maintained
2732F: drivers/media/usb/dvb-usb-v2/af9035*
2733
2734DVB_USB_ANYSEE MEDIA DRIVER
2735M: Antti Palosaari <crope@iki.fi>
2736L: linux-media@vger.kernel.org
2737W: http://linuxtv.org/
2738W: http://palosaari.fi/linux/
2739Q: http://patchwork.linuxtv.org/project/linux-media/list/
2740T: git git://linuxtv.org/anttip/media_tree.git
2741S: Maintained
2742F: drivers/media/usb/dvb-usb-v2/anysee*
2743
2744DVB_USB_AU6610 MEDIA DRIVER
2745M: Antti Palosaari <crope@iki.fi>
2746L: linux-media@vger.kernel.org
2747W: http://linuxtv.org/
2748W: http://palosaari.fi/linux/
2749Q: http://patchwork.linuxtv.org/project/linux-media/list/
2750T: git git://linuxtv.org/anttip/media_tree.git
2751S: Maintained
2752F: drivers/media/usb/dvb-usb-v2/au6610*
2753
2754DVB_USB_CE6230 MEDIA DRIVER
2755M: Antti Palosaari <crope@iki.fi>
2756L: linux-media@vger.kernel.org
2757W: http://linuxtv.org/
2758W: http://palosaari.fi/linux/
2759Q: http://patchwork.linuxtv.org/project/linux-media/list/
2760T: git git://linuxtv.org/anttip/media_tree.git
2761S: Maintained
2762F: drivers/media/usb/dvb-usb-v2/ce6230*
2763
Michael Krufkyd099dea2012-10-02 00:56:20 -03002764DVB_USB_CXUSB MEDIA DRIVER
2765M: Michael Krufky <mkrufky@linuxtv.org>
2766L: linux-media@vger.kernel.org
2767W: http://linuxtv.org/
2768W: http://github.com/mkrufky
2769Q: http://patchwork.linuxtv.org/project/linux-media/list/
2770T: git git://linuxtv.org/media_tree.git
2771S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002772F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002773
Antti Palosaari91952bc2012-10-01 12:28:46 -03002774DVB_USB_EC168 MEDIA DRIVER
2775M: Antti Palosaari <crope@iki.fi>
2776L: linux-media@vger.kernel.org
2777W: http://linuxtv.org/
2778W: http://palosaari.fi/linux/
2779Q: http://patchwork.linuxtv.org/project/linux-media/list/
2780T: git git://linuxtv.org/anttip/media_tree.git
2781S: Maintained
2782F: drivers/media/usb/dvb-usb-v2/ec168*
2783
Antti Palosaari55609832013-04-09 20:30:42 -03002784DVB_USB_GL861 MEDIA DRIVER
2785M: Antti Palosaari <crope@iki.fi>
2786L: linux-media@vger.kernel.org
2787W: http://linuxtv.org/
2788Q: http://patchwork.linuxtv.org/project/linux-media/list/
2789T: git git://linuxtv.org/anttip/media_tree.git
2790S: Maintained
2791F: drivers/media/usb/dvb-usb-v2/gl861*
2792
Michael Krufky8856f5f2012-10-02 00:55:50 -03002793DVB_USB_MXL111SF MEDIA DRIVER
2794M: Michael Krufky <mkrufky@linuxtv.org>
2795L: linux-media@vger.kernel.org
2796W: http://linuxtv.org/
2797W: http://github.com/mkrufky
2798Q: http://patchwork.linuxtv.org/project/linux-media/list/
2799T: git git://linuxtv.org/mkrufky/mxl111sf.git
2800S: Maintained
2801F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2802
Antti Palosaari91952bc2012-10-01 12:28:46 -03002803DVB_USB_RTL28XXU MEDIA DRIVER
2804M: Antti Palosaari <crope@iki.fi>
2805L: linux-media@vger.kernel.org
2806W: http://linuxtv.org/
2807W: http://palosaari.fi/linux/
2808Q: http://patchwork.linuxtv.org/project/linux-media/list/
2809T: git git://linuxtv.org/anttip/media_tree.git
2810S: Maintained
2811F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2812
2813DVB_USB_V2 MEDIA DRIVER
2814M: Antti Palosaari <crope@iki.fi>
2815L: linux-media@vger.kernel.org
2816W: http://linuxtv.org/
2817W: http://palosaari.fi/linux/
2818Q: http://patchwork.linuxtv.org/project/linux-media/list/
2819T: git git://linuxtv.org/anttip/media_tree.git
2820S: Maintained
2821F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2822F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2823
Jason Baronac0ac382011-08-11 14:36:43 -04002824DYNAMIC DEBUG
2825M: Jason Baron <jbaron@redhat.com>
2826S: Maintained
2827F: lib/dynamic_debug.c
2828F: include/linux/dynamic_debug.h
2829
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002830DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002831M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002832S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002833F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002834
Antti Palosaari91952bc2012-10-01 12:28:46 -03002835E4000 MEDIA DRIVER
2836M: Antti Palosaari <crope@iki.fi>
2837L: linux-media@vger.kernel.org
2838W: http://linuxtv.org/
2839W: http://palosaari.fi/linux/
2840Q: http://patchwork.linuxtv.org/project/linux-media/list/
2841T: git git://linuxtv.org/anttip/media_tree.git
2842S: Maintained
2843F: drivers/media/tuners/e4000*
2844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002847L: linux-eata@i-connect.net
2848L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002850F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002853M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854L: linux-scsi@vger.kernel.org
2855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002856F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002859M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002860L: linux-eata@i-connect.net
2861L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002863F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002866M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002867L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868W: http://ebtables.sourceforge.net/
2869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002870F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002871F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002872F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Antti Palosaari91952bc2012-10-01 12:28:46 -03002874EC100 MEDIA DRIVER
2875M: Antti Palosaari <crope@iki.fi>
2876L: linux-media@vger.kernel.org
2877W: http://linuxtv.org/
2878W: http://palosaari.fi/linux/
2879Q: http://patchwork.linuxtv.org/project/linux-media/list/
2880T: git git://linuxtv.org/anttip/media_tree.git
2881S: Maintained
2882F: drivers/media/dvb-frontends/ec100*
2883
Michael Halcrow237fead2006-10-04 02:16:22 -07002884ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002885M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002886M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002887L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002888W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002890F: Documentation/filesystems/ecryptfs.txt
2891F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002892
Alan Coxda9bb1d2006-01-18 17:44:13 -08002893EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002894M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002895L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002896W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002898F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002899F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002900F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002901
Borislav Petkovc476c232009-05-20 20:31:58 +02002902EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002903M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002904M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002905L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002906W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002907S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002908F: drivers/edac/amd64_edac*
2909
Ralf Baechlef65aad42012-10-17 00:39:09 +02002910EDAC-CAVIUM
2911M: Ralf Baechle <ralf@linux-mips.org>
2912M: David Daney <david.daney@cavium.com>
2913L: linux-edac@vger.kernel.org
2914L: linux-mips@linux-mips.org
2915W: bluesmoke.sourceforge.net
2916S: Supported
2917F: drivers/edac/octeon_edac*
2918
Dave Peterson0e438e32006-03-26 01:38:55 -08002919EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002920M: Mark Gross <mark.gross@intel.com>
2921M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002922L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002923W: bluesmoke.sourceforge.net
2924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002925F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002926
2927EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002928M: 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/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002933
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002934EDAC-GHES
2935M: Mauro Carvalho Chehab <mchehab@redhat.com>
2936L: linux-edac@vger.kernel.org
2937W: bluesmoke.sourceforge.net
2938S: Maintained
2939F: drivers/edac/ghes-edac.c
2940
Douglas Thompson6bc78402007-07-19 01:50:12 -07002941EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002942M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002943L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002944W: bluesmoke.sourceforge.net
2945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002946F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002947
2948EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002949M: Jason Uhlenkott <juhlenko@akamai.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/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002954
2955EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002957L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002958W: bluesmoke.sourceforge.net
2959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002960F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002961
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002962EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002964L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002965W: bluesmoke.sourceforge.net
2966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002967F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002968
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002969EDAC-I7300
2970M: Mauro Carvalho Chehab <mchehab@redhat.com>
2971L: linux-edac@vger.kernel.org
2972W: bluesmoke.sourceforge.net
2973S: Maintained
2974F: drivers/edac/i7300_edac.c
2975
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002976EDAC-I7CORE
2977M: Mauro Carvalho Chehab <mchehab@redhat.com>
2978L: linux-edac@vger.kernel.org
2979W: bluesmoke.sourceforge.net
2980S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002981F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002982
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002983EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002984M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302985M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002986L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002987W: bluesmoke.sourceforge.net
2988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002989F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002990
2991EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002992M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002993L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002994W: bluesmoke.sourceforge.net
2995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002997
Dave Peterson0e438e32006-03-26 01:38:55 -08002998EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002999M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003000L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003001W: bluesmoke.sourceforge.net
3002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003003F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003004
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003005EDAC-SBRIDGE
3006M: Mauro Carvalho Chehab <mchehab@redhat.com>
3007L: linux-edac@vger.kernel.org
3008W: bluesmoke.sourceforge.net
3009S: Maintained
3010F: drivers/edac/sb_edac.c
3011
Clemens Ladischaf399172011-01-10 16:32:54 +01003012EDIROL UA-101/UA-1000 DRIVER
3013M: Clemens Ladisch <clemens@ladisch.de>
3014L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3015T: git git://git.alsa-project.org/alsa-kernel.git
3016S: Maintained
3017F: sound/usb/misc/ua101.c
3018
Matt Fleming1f7df952012-10-03 10:04:02 +01003019EXTENSIBLE FIRMWARE INTERFACE (EFI)
3020M: Matt Fleming <matt.fleming@intel.com>
3021L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003022T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003023S: Maintained
3024F: Documentation/x86/efi-stub.txt
3025F: arch/ia64/kernel/efi.c
3026F: arch/x86/boot/compressed/eboot.[ch]
3027F: arch/x86/include/asm/efi.h
3028F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003029F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003030F: include/linux/efi*.h
3031
Matt Flemingd68772b2013-02-08 16:27:24 +00003032EFI VARIABLE FILESYSTEM
3033M: Matthew Garrett <matthew.garrett@nebula.com>
3034M: Jeremy Kerr <jk@ozlabs.org>
3035M: Matt Fleming <matt.fleming@intel.com>
3036T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3037L: linux-efi@vger.kernel.org
3038S: Maintained
3039F: fs/efivarfs/
3040
Peter Jones85a00d92010-09-22 13:05:04 -07003041EFIFB FRAMEBUFFER DRIVER
3042L: linux-fbdev@vger.kernel.org
3043M: Peter Jones <pjones@redhat.com>
3044S: Maintained
3045F: drivers/video/efifb.c
3046
Josh Triplett0bee8d22006-07-30 03:03:58 -07003047EFS FILESYSTEM
3048W: http://aeschi.ch.eu.org/efs/
3049S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003050F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003051
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003052EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003053M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3054M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003055L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003056S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003057F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003058
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003059EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003060M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003061L: netdev@vger.kernel.org
3062S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003063F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003064
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003065EM28XX VIDEO4LINUX DRIVER
3066M: Mauro Carvalho Chehab <mchehab@redhat.com>
3067L: linux-media@vger.kernel.org
3068W: http://linuxtv.org
3069T: git git://linuxtv.org/media_tree.git
3070S: Maintained
3071F: drivers/media/usb/em28xx/
3072
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003073EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003074M: Paul Gortmaker <paul.gortmaker@windriver.com>
3075M: Matt Mackall <mpm@selenic.com>
3076M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003077L: linux-embedded@vger.kernel.org
3078S: Maintained
3079
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003080EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003081M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003082L: linux-scsi@vger.kernel.org
3083W: http://sourceforge.net/projects/lpfcxxxx
3084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003085F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003086
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003087ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003088M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003089S: Maintained
3090F: drivers/misc/cb710/
3091F: drivers/mmc/host/cb710-mmc.*
3092F: include/linux/cb710.h
3093
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003094ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3095M: Maxim Levitsky <maximlevitsky@gmail.com>
3096S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003097F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003098
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003099EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003100M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003101S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003102T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003103F: drivers/video/s1d13xxxfb.c
3104F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003107M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003108L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003109L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003110W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003112F: include/linux/netfilter_bridge/
3113F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003116M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003117L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003119F: Documentation/filesystems/ext2.txt
3120F: fs/ext2/
3121F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003124M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003125M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003126M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003127L: linux-ext4@vger.kernel.org
3128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003129F: Documentation/filesystems/ext3.txt
3130F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003131
3132EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003134M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003135L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003136W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003137Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003139F: Documentation/filesystems/ext4.txt
3140F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
Mimi Zoharc5532b02011-08-17 18:52:24 -04003142Extended Verification Module (EVM)
3143M: Mimi Zohar <zohar@us.ibm.com>
3144S: Supported
3145F: security/integrity/evm/
3146
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003147EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3148M: MyungJoo Ham <myungjoo.ham@samsung.com>
3149M: Chanwoo Choi <cw00.choi@samsung.com>
3150L: linux-kernel@vger.kernel.org
3151S: Maintained
3152F: drivers/extcon/
3153F: Documentation/extcon/
3154
Jingoo Han0a799512012-02-06 11:30:39 +09003155EXYNOS DP DRIVER
3156M: Jingoo Han <jg1.han@samsung.com>
3157L: linux-fbdev@vger.kernel.org
3158S: Maintained
3159F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003160F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003161
Donghwa Lee33ad3912012-03-06 11:44:58 +09003162EXYNOS MIPI DISPLAY DRIVERS
3163M: Inki Dae <inki.dae@samsung.com>
3164M: Donghwa Lee <dh09.lee@samsung.com>
3165M: Kyungmin Park <kyungmin.park@samsung.com>
3166L: linux-fbdev@vger.kernel.org
3167S: Maintained
3168F: drivers/video/exynos/exynos_mipi*
3169F: include/video/exynos_mipi*
3170
Jean Delvaree53004e2006-01-09 23:26:14 +01003171F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003172M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003173L: lm-sensors@lm-sensors.org
3174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003175F: Documentation/hwmon/f71805f
3176F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003177
Michael Büscheea977e2012-04-02 12:14:32 -03003178FC0011 TUNER DRIVER
3179M: Michael Buesch <m@bues.ch>
3180L: linux-media@vger.kernel.org
3181S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003182F: drivers/media/tuners/fc0011.h
3183F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003184
Antti Palosaari91952bc2012-10-01 12:28:46 -03003185FC2580 MEDIA DRIVER
3186M: Antti Palosaari <crope@iki.fi>
3187L: linux-media@vger.kernel.org
3188W: http://linuxtv.org/
3189W: http://palosaari.fi/linux/
3190Q: http://patchwork.linuxtv.org/project/linux-media/list/
3191T: git git://linuxtv.org/anttip/media_tree.git
3192S: Maintained
3193F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Eric Paris88b2dbd2010-08-18 12:25:50 -04003195FANOTIFY
3196M: Eric Paris <eparis@redhat.com>
3197S: Maintained
3198F: fs/notify/fanotify/
3199F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003200F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003203M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204W: http://www.farsite.co.uk/
3205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003206F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Akinobu Mitac5408b82007-04-23 14:41:20 -07003208FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003209M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003211F: Documentation/fault-injection/
3212F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003213
Robert Lovecae727d2010-02-16 12:16:00 -08003214FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3215M: Robert Love <robert.w.love@intel.com>
3216L: devel@open-fcoe.org
3217W: www.Open-FCoE.org
3218S: Supported
3219F: drivers/scsi/libfc/
3220F: drivers/scsi/fcoe/
3221F: include/scsi/fc/
3222F: include/scsi/libfc.h
3223F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003224F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003225
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003228L: linux-fsdevel@vger.kernel.org
3229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003230F: include/linux/fcntl.h
3231F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003232F: include/uapi/linux/fcntl.h
3233F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003234F: fs/fcntl.c
3235F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003236
3237FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003238M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003239L: linux-fsdevel@vger.kernel.org
3240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003241F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003242
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003243FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003244M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003245L: lm-sensors@lm-sensors.org
3246S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003247F: drivers/hwmon/f75375s.c
3248F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003249
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003250FIREWIRE AUDIO DRIVERS
3251M: Clemens Ladisch <clemens@ladisch.de>
3252L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3253T: git git://git.alsa-project.org/alsa-kernel.git
3254S: Maintained
3255F: sound/firewire/
3256
Stefan Richtereb86ec52012-11-03 09:25:20 +01003257FIREWIRE MEDIA DRIVERS (firedtv)
3258M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3259L: linux-media@vger.kernel.org
3260L: linux1394-devel@lists.sourceforge.net
3261T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3262S: Maintained
3263F: drivers/media/firewire/
3264
Chris Boota511ce32012-04-14 17:50:35 -07003265FIREWIRE SBP-2 TARGET
3266M: Chris Boot <bootc@bootc.net>
3267L: linux-scsi@vger.kernel.org
3268L: target-devel@vger.kernel.org
3269L: linux1394-devel@lists.sourceforge.net
3270T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3271S: Maintained
3272F: drivers/target/sbp/
3273
Joe Perches7d2c86b2009-04-07 20:59:01 -07003274FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003276L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003277W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003278T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003280F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003281F: include/linux/firewire.h
3282F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003283F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003284
3285FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003286M: Ming Lei <ming.lei@canonical.com>
3287L: linux-kernel@vger.kernel.org
3288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003289F: Documentation/firmware_class/
3290F: drivers/base/firmware*.c
3291F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003292
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003293FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3294M: Joshua Morris <josh.h.morris@us.ibm.com>
3295M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3296S: Maintained
3297F: drivers/block/rsxx/
3298
Jiri Kosina8206f662012-05-18 13:52:29 +02003299FLOPPY DRIVER
3300M: Jiri Kosina <jkosina@suse.cz>
3301T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3302S: Odd fixes
3303F: drivers/block/floppy.c
3304
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003305FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003306M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003307W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003309F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003310
3311FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003312L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003313S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003314F: drivers/net/wan/dlci.c
3315F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003316
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003318M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003319L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003321Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003322T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003324F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003325F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003326F: drivers/video/
3327F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003328F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003329F: include/uapi/video/
3330F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Timur Tabia57c1882012-10-16 17:33:42 -05003332FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003333M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003334L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003335S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003336F: drivers/video/fsl-diu-fb.*
3337
Zhang Wei173acc72008-03-01 07:42:48 -07003338FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Li Yang <leoli@freescale.com>
3340M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003341L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003343F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003344
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003345FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003347L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003348L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003350F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003351
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003352FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003353M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003354L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003355L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003356S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003357F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003358F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003359
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003360FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003361M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3362M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003363L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003364L: netdev@vger.kernel.org
3365S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003366F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003367F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003368
Timur Tabid9e9d822008-04-24 08:45:26 +10003369FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003370L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003371S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003372F: arch/powerpc/sysdev/qe_lib/
3373F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003374
Joe Perchesb55ef9292009-10-26 16:49:46 -07003375FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003376M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003377L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003378L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003379S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003380F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003381
Li Yangbeaf53b2007-05-25 13:54:02 +08003382FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003383M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003384L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003385L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003386S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003387F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003388
Timur Tabid9e9d822008-04-24 08:45:26 +10003389FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003390M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003391L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003392S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003393F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003394
3395FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003396M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003397L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003398L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003399S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003400F: sound/soc/fsl/fsl*
3401F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003404M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003407F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Pavel Machek71038f52009-01-15 13:51:02 -08003409FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003410M: Pavel Machek <pavel@ucw.cz>
3411M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003412L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003414F: Documentation/power/freezing-of-tasks.txt
3415F: include/linux/freezer.h
3416F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003417
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003418FRONTSWAP API
3419M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3420L: linux-kernel@vger.kernel.org
3421S: Maintained
3422F: mm/frontswap.c
3423F: include/linux/frontswap.h
3424
David Howellsa5432f52009-04-20 15:46:45 +01003425FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003426M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003427L: linux-cachefs@redhat.com
3428S: Supported
3429F: Documentation/filesystems/caching/
3430F: fs/fscache/
3431F: include/linux/fscache*.h
3432
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003433F2FS FILE SYSTEM
3434M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3435L: linux-f2fs-devel@lists.sourceforge.net
3436W: http://en.wikipedia.org/wiki/F2FS
3437T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3438S: Maintained
3439F: Documentation/filesystems/f2fs.txt
3440F: fs/f2fs/
3441F: include/linux/f2fs_fs.h
3442
David Howells5ab7ffe2007-04-10 15:10:45 +01003443FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003444M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Jonathan Woithe20b93732008-06-11 10:14:56 +09303448FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303449M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003450L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003452F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303453
Heungjun Kim4da621b2011-11-11 08:05:33 -03003454FUJITSU M-5MO LS CAMERA ISP DRIVER
3455M: Kyungmin Park <kyungmin.park@samsung.com>
3456M: Heungjun Kim <riverful.kim@samsung.com>
3457L: linux-media@vger.kernel.org
3458S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003459F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003460F: include/media/m5mols.h
3461
Robert Gerlach2d24c492012-01-18 14:26:22 +01003462FUJITSU TABLET EXTRAS
3463M: Robert Gerlach <khnz@gmx.de>
3464L: platform-driver-x86@vger.kernel.org
3465S: Maintained
3466F: drivers/platform/x86/fujitsu-tablet.c
3467
Miklos Szeredi04578f12005-09-09 13:10:22 -07003468FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003469M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003470L: fuse-devel@lists.sourceforge.net
3471W: http://fuse.sourceforge.net/
3472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003473F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003474F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003475
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003477M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003479S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003480F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
3482GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003483M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484L: linux-scsi@vger.kernel.org
3485W: http://www.icp-vortex.com/
3486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003487F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003489GEMTEK FM RADIO RECEIVER DRIVER
3490M: Hans Verkuil <hverkuil@xs4all.nl>
3491L: linux-media@vger.kernel.org
3492T: git git://linuxtv.org/media_tree.git
3493W: http://linuxtv.org
3494S: Maintained
3495F: drivers/media/radio/radio-gemtek*
3496
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003497GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003498M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003500F: drivers/i2c/busses/i2c-gpio.c
3501F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003502
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003503GENERIC GPIO I2C MULTIPLEXER DRIVER
3504M: Peter Korsgaard <peter.korsgaard@barco.com>
3505L: linux-i2c@vger.kernel.org
3506S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003507F: drivers/i2c/muxes/i2c-mux-gpio.c
3508F: include/linux/i2c-mux-gpio.h
3509F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003510
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003511GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003512M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003515F: drivers/net/wan/c101.c
3516F: drivers/net/wan/hd6457*
3517F: drivers/net/wan/hdlc*
3518F: drivers/net/wan/n2.c
3519F: drivers/net/wan/pc300too.c
3520F: drivers/net/wan/pci200syn.c
3521F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003523GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003524M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003525L: linux-arch@vger.kernel.org
3526T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3527S: Maintained
3528F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003529F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003530
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003531GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003532M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003533L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003534S: Supported
3535F: drivers/uio/uio_pci_generic.c
3536
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003537GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003538M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003539L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003540W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003541T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3542T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003543S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003544F: Documentation/filesystems/gfs2*.txt
3545F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003546F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003547
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003548GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Hansjoerg Lipp <hjlipp@web.de>
3550M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003551L: gigaset307x-common@lists.sourceforge.net
3552W: http://gigaset307x.sourceforge.net/
3553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003554F: Documentation/isdn/README.gigaset
3555F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003556F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003557
Grant Likelya0dc00b2011-02-12 01:48:14 -07003558GPIO SUBSYSTEM
Grant Likely19624232013-04-08 11:51:42 +01003559M: Grant Likely <grant.likely@linaro.org>
Linus Walleije4651a92012-08-06 09:52:52 +02003560M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003561S: Maintained
3562T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003563F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003564F: drivers/gpio/
3565F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003566F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003567
Harry Wei71a6d0a2011-05-11 15:13:33 -07003568GRE DEMULTIPLEXER DRIVER
3569M: Dmitry Kozlov <xeb@mail.ru>
3570L: netdev@vger.kernel.org
3571S: Maintained
3572F: net/ipv4/gre.c
3573F: include/net/gre.h
3574
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003575GRETH 10/100/1G Ethernet MAC device driver
3576M: Kristoffer Glembo <kristoffer@gaisler.com>
3577L: netdev@vger.kernel.org
3578S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003579F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003580
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003581GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003582M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003583L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003584T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003585S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003586F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003587
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003588GSPCA GL860 SUBDRIVER
3589M: Olivier Lorin <o.lorin@laposte.net>
3590L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003591T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003592S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003593F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003594
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003595GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003596M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003597L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003598T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003599S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003600F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003601
3602GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003603M: Hans de Goede <hdegoede@redhat.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/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003608
Brian Johnson261982f2009-07-19 15:58:56 -03003609GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003610M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003611L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003612T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003613S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003614F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003615
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003616GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003617M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003618L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003619T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003620S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003621F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003622
3623GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003624M: Hans de Goede <hdegoede@redhat.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/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003629
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003630STK1160 USB VIDEO CAPTURE DRIVER
3631M: Ezequiel Garcia <elezegarcia@gmail.com>
3632L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003633T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003634S: Maintained
3635F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003636
Harry Wei71a6d0a2011-05-11 15:13:33 -07003637HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3638M: Frank Seidel <frank@f-seidel.de>
3639L: platform-driver-x86@vger.kernel.org
3640W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3641S: Maintained
3642F: drivers/platform/x86/hdaps.c
3643
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003644HDPVR USB VIDEO ENCODER DRIVER
3645M: Hans Verkuil <hverkuil@xs4all.nl>
3646L: linux-media@vger.kernel.org
3647T: git git://linuxtv.org/media_tree.git
3648W: http://linuxtv.org
3649S: Odd Fixes
3650F: drivers/media/usb/hdpvr
3651
Harry Wei71a6d0a2011-05-11 15:13:33 -07003652HWPOISON MEMORY FAILURE HANDLING
3653M: Andi Kleen <andi@firstfloor.org>
3654L: linux-mm@kvack.org
3655T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3656S: Maintained
3657F: mm/memory-failure.c
3658F: mm/hwpoison-inject.c
3659
3660HYPERVISOR VIRTUAL CONSOLE DRIVER
3661L: linuxppc-dev@lists.ozlabs.org
3662S: Odd Fixes
3663F: drivers/tty/hvc/
3664
Michael Buesch844dd052006-06-26 00:24:59 -07003665HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003666M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003667M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003668L: lm-sensors@lm-sensors.org
3669W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003670T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003671T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003672S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003673F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003674F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003675F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003676
3677HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003678M: Matt Mackall <mpm@selenic.com>
3679M: Herbert Xu <herbert@gondor.apana.org.au>
3680S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003681F: Documentation/hw_random.txt
3682F: drivers/char/hw_random/
3683F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003684
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003685HARDWARE SPINLOCK CORE
3686M: Ohad Ben-Cohen <ohad@wizery.com>
3687S: Maintained
3688F: Documentation/hwspinlock.txt
3689F: drivers/hwspinlock/hwspinlock_*
3690F: include/linux/hwspinlock.h
3691
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003693L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003695F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
Antti Palosaari91952bc2012-10-01 12:28:46 -03003697HD29L2 MEDIA DRIVER
3698M: Antti Palosaari <crope@iki.fi>
3699L: linux-media@vger.kernel.org
3700W: http://linuxtv.org/
3701W: http://palosaari.fi/linux/
3702Q: http://patchwork.linuxtv.org/project/linux-media/list/
3703T: git git://linuxtv.org/anttip/media_tree.git
3704S: Maintained
3705F: drivers/media/dvb-frontends/hd29l2*
3706
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003707HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003708M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003709L: iss_storagedev@hp.com
3710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003711F: Documentation/blockdev/cpqarray.txt
3712F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003713
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003714HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003715M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003716L: iss_storagedev@hp.com
3717S: Supported
3718F: Documentation/scsi/hpsa.txt
3719F: drivers/scsi/hpsa*.[ch]
3720F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003721F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003722
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003723HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003724M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003725L: iss_storagedev@hp.com
3726S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003727F: Documentation/blockdev/cciss.txt
3728F: drivers/block/cciss*
3729F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003730F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003733L: linux-fsdevel@vger.kernel.org
3734S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003735F: Documentation/filesystems/hfs.txt
3736F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
3738HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740L: linux-nvidia@lists.surfsouth.com
3741W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003743F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003745HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Pavel Machek <pavel@ucw.cz>
3747M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003748L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003750F: arch/x86/power/
3751F: drivers/base/power/
3752F: kernel/power/
3753F: include/linux/suspend.h
3754F: include/linux/freezer.h
3755F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003756F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003757
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003758HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003759M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003760L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003761T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003763F: drivers/hid/
3764F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003765F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003766
Ingo Molnar38bed542007-02-22 09:09:34 +01003767HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003768M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003769T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: Documentation/timers/
3772F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003773F: kernel/time/clockevents.c
3774F: kernel/time/tick*.*
3775F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003776F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003777F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003781S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003782F: drivers/net/hamradio/dmascc.c
3783F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003785HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003786M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003787W: http://www.highpoint-tech.com
3788S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003789F: Documentation/scsi/hptiop.txt
3790F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794L: linux-hippi@sunsite.dk
3795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003796F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003797F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003798F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003799F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Jouni Malinenff1d2762005-05-12 22:54:16 -04003801HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003802M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003803L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003804L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003805W: http://hostap.epitest.fi/
3806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003807F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003808
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003809HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003810L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003811S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003812F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003813
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003814HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003815M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003816S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003817F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003818
Joe Perches7d2c86b2009-04-07 20:59:01 -07003819HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003820M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003822F: Documentation/timers/hpet.txt
3823F: drivers/char/hpet.c
3824F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003825F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003826
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003827HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003828M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003830F: arch/x86/kernel/hpet.c
3831F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003832
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003834M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003837F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Joe Perches7d2c86b2009-04-07 20:59:01 -07003839HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003840M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003841W: http://www.pharscape.org
3842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003843F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003844
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003845HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003846M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003847L: linux-input@vger.kernel.org
3848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003849F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003850
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003852M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003854F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003856Hyper-V CORE AND DRIVERS
3857M: K. Y. Srinivasan <kys@microsoft.com>
3858M: Haiyang Zhang <haiyangz@microsoft.com>
3859L: devel@linuxdriverproject.org
3860S: Maintained
3861F: drivers/hv/
3862F: drivers/hid/hid-hyperv.c
3863F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003864
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003865I2C OVER PARALLEL PORT
3866M: Jean Delvare <khali@linux-fr.org>
3867L: linux-i2c@vger.kernel.org
3868S: Maintained
3869F: Documentation/i2c/busses/i2c-parport
3870F: Documentation/i2c/busses/i2c-parport-light
3871F: drivers/i2c/busses/i2c-parport.c
3872F: drivers/i2c/busses/i2c-parport-light.c
3873
3874I2C/SMBUS CONTROLLER DRIVERS FOR PC
3875M: Jean Delvare <khali@linux-fr.org>
3876L: linux-i2c@vger.kernel.org
3877S: Maintained
3878F: Documentation/i2c/busses/i2c-ali1535
3879F: Documentation/i2c/busses/i2c-ali1563
3880F: Documentation/i2c/busses/i2c-ali15x3
3881F: Documentation/i2c/busses/i2c-amd756
3882F: Documentation/i2c/busses/i2c-amd8111
3883F: Documentation/i2c/busses/i2c-i801
3884F: Documentation/i2c/busses/i2c-nforce2
3885F: Documentation/i2c/busses/i2c-piix4
3886F: Documentation/i2c/busses/i2c-sis5595
3887F: Documentation/i2c/busses/i2c-sis630
3888F: Documentation/i2c/busses/i2c-sis96x
3889F: Documentation/i2c/busses/i2c-via
3890F: Documentation/i2c/busses/i2c-viapro
3891F: drivers/i2c/busses/i2c-ali1535.c
3892F: drivers/i2c/busses/i2c-ali1563.c
3893F: drivers/i2c/busses/i2c-ali15x3.c
3894F: drivers/i2c/busses/i2c-amd756.c
3895F: drivers/i2c/busses/i2c-amd756-s4882.c
3896F: drivers/i2c/busses/i2c-amd8111.c
3897F: drivers/i2c/busses/i2c-i801.c
3898F: drivers/i2c/busses/i2c-isch.c
3899F: drivers/i2c/busses/i2c-nforce2.c
3900F: drivers/i2c/busses/i2c-nforce2-s4985.c
3901F: drivers/i2c/busses/i2c-piix4.c
3902F: drivers/i2c/busses/i2c-sis5595.c
3903F: drivers/i2c/busses/i2c-sis630.c
3904F: drivers/i2c/busses/i2c-sis96x.c
3905F: drivers/i2c/busses/i2c-via.c
3906F: drivers/i2c/busses/i2c-viapro.c
3907
Neil Hormancb7f07a2013-02-10 11:59:03 -05003908I2C/SMBUS ISMT DRIVER
3909M: Seth Heasley <seth.heasley@intel.com>
3910M: Neil Horman <nhorman@tuxdriver.com>
3911L: linux-i2c@vger.kernel.org
3912F: drivers/i2c/busses/i2c-ismt.c
3913F: Documentation/i2c/busses/i2c-ismt
3914
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003915I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003916M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003917L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003918S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003919F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003920
Jean Delvare5b543962005-08-15 19:51:02 +02003921I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003922M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003923L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003924W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003925T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003927F: Documentation/i2c/
3928F: drivers/i2c/
3929F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003930F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003931F: include/uapi/linux/i2c.h
3932F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003934I2C-TAOS-EVM DRIVER
3935M: Jean Delvare <khali@linux-fr.org>
3936L: linux-i2c@vger.kernel.org
3937S: Maintained
3938F: Documentation/i2c/busses/i2c-taos-evm
3939F: drivers/i2c/busses/i2c-taos-evm.c
3940
Till Harbaume8c76ee2007-05-01 23:26:35 +02003941I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003942M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003943L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003944W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003946F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003947
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003951F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
3953i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003954M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003955T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956S: Maintained
3957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003959M: Tony Luck <tony.luck@intel.com>
3960M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003962T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003964F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Kent Yoder956c2032012-09-07 04:17:01 +08003966IBM Power in-Nest Crypto Acceleration
3967M: Kent Yoder <key@linux.vnet.ibm.com>
3968L: linux-crypto@vger.kernel.org
3969S: Supported
3970F: drivers/crypto/nx/
3971
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003972IBM Power 842 compression accelerator
3973M: Robert Jennings <rcj@linux.vnet.ibm.com>
3974S: Supported
3975F: drivers/crypto/nx/nx-842.c
3976F: include/linux/nx842.h
3977
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003979M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003981F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
Santiago Leon9d348af2010-09-03 18:29:53 +00003983IBM Power Virtual Ethernet Device Driver
3984M: Santiago Leon <santil@linux.vnet.ibm.com>
3985L: netdev@vger.kernel.org
3986S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003987F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003988
Robert Jennings4b7652c2012-07-31 12:34:36 -05003989IBM Power Virtual SCSI/FC Device Drivers
3990M: Robert Jennings <rcj@linux.vnet.ibm.com>
3991L: linux-scsi@vger.kernel.org
3992S: Supported
3993F: drivers/scsi/ibmvscsi/
3994X: drivers/scsi/ibmvscsi/ibmvstgt.c
3995
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996IBM ServeRAID RAID DRIVER
3997P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003998M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004001F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004003ICH LPC AND GPIO DRIVER
4004M: Peter Tyser <ptyser@xes-inc.com>
4005S: Maintained
4006F: drivers/mfd/lpc_ich.c
4007F: drivers/gpio/gpio-ich.c
4008
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004009IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004010M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004012Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004013T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004015F: Documentation/ide/
4016F: drivers/ide/
4017F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Ike Panhc6cb8c132011-08-25 22:28:45 +08004019IDEAPAD LAPTOP EXTRAS DRIVER
4020M: Ike Panhc <ike.pan@canonical.com>
4021L: platform-driver-x86@vger.kernel.org
4022W: http://launchpad.net/ideapad-laptop
4023S: Maintained
4024F: drivers/platform/x86/ideapad-laptop.c
4025
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004026IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004027M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004028L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004030F: Documentation/cdrom/ide-cd
4031F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Andy Henroid27471fd2008-10-09 11:45:22 -07004033IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004034M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004035L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004037F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004038
Sergey Lapin02cf2282009-06-08 12:18:50 +00004039IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004040M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004041M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004042L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004043W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004044T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004045S: Maintained
4046F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004047F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004048F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004049
Sean Young40ad4a32012-11-19 10:32:53 -03004050IGUANAWORKS USB IR TRANSCEIVER
4051M: Sean Young <sean@mess.org>
4052L: linux-media@vger.kernel.org
4053S: Maintained
4054F: drivers/media/rc/iguanair.c
4055
Ameya Palande9545f862012-01-10 09:00:58 -08004056IIO SUBSYSTEM AND DRIVERS
4057M: Jonathan Cameron <jic23@cam.ac.uk>
4058L: linux-iio@vger.kernel.org
4059S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004060F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004061F: drivers/staging/iio/
4062
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004063IKANOS/ADI EAGLE ADSL USB DRIVER
4064M: Matthieu Castet <castet.matthieu@free.fr>
4065M: Stanislaw Gruszka <stf_xl@wp.pl>
4066S: Maintained
4067F: drivers/usb/atm/ueagle-atm.c
4068
Guenter Roecke89ab512013-03-08 08:13:09 -08004069INA209 HARDWARE MONITOR DRIVER
4070M: Guenter Roeck <linux@roeck-us.net>
4071L: lm-sensors@lm-sensors.org
4072S: Maintained
4073F: Documentation/hwmon/ina209
4074F: Documentation/devicetree/bindings/i2c/ina209.txt
4075F: drivers/hwmon/ina209.c
4076
4077INA2XX HARDWARE MONITOR DRIVER
4078M: Guenter Roeck <linux@roeck-us.net>
4079L: lm-sensors@lm-sensors.org
4080S: Maintained
4081F: Documentation/hwmon/ina2xx
4082F: drivers/hwmon/ina2xx.c
4083F: include/linux/platform_data/ina2xx.h
4084
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004085INDUSTRY PACK SUBSYSTEM (IPACK)
4086M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4087M: Jens Taprogge <jens.taprogge@taprogge.org>
4088M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4089L: industrypack-devel@lists.sourceforge.net
4090W: http://industrypack.sourceforge.net
4091S: Maintained
4092F: drivers/ipack/
4093
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004094INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004095M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004097F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004098
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004100L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004101S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004102F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
4104INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004105M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004106M: Sean Hefty <sean.hefty@intel.com>
4107M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004108L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004109W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004110Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004111T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004113F: Documentation/infiniband/
4114F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004115F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Robert Lovec9f04f52005-07-15 12:21:07 -04004117INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: John McCutchan <john@johnmccutchan.com>
4119M: Robert Love <rlove@rlove.org>
4120M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004122F: Documentation/filesystems/inotify.txt
4123F: fs/notify/inotify/
4124F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004125F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004126
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004127INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4129M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004130L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004131Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004132T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004134F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004135F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004136F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004137F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004138
Henrik Rydberg3267a872010-06-24 19:10:40 -07004139INPUT MULTITOUCH (MT) PROTOCOL
4140M: Henrik Rydberg <rydberg@euromail.se>
4141L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004142T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004143S: Maintained
4144F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004145F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004146K: \b(ABS|SYN)_MT_
4147
Dave Jiang4ac13e12011-07-29 17:16:55 -07004148INTEL C600 SERIES SAS CONTROLLER DRIVER
4149M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004150M: Lukasz Dorau <lukasz.dorau@intel.com>
4151M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004152M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004153L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004154T: git git://git.code.sf.net/p/intel-sas/isci
4155S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004156F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004157
Len Brown26717172010-03-08 14:07:30 -05004158INTEL IDLE DRIVER
4159M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004160L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004161T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004162S: Supported
4163F: drivers/idle/intel_idle.c
4164
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004165INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004166M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004167L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/fb/intelfb.txt
4170F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Antonino Daplas <adaplas@gmail.com>
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: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304178INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004179M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004180L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304181W: http://www.lesswatts.org/projects/acpi/
4182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004183F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304184
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004188F: arch/x86/kernel/microcode_core.c
4189F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004191INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004192M: Dan Williams <djbw@fb.com>
4193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004194F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004195
David Woodhouse6c8909b2008-10-18 16:12:17 +01004196INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004197M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004198L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004199T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004200S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004201F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004202F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004203
Dan Williamsb3e5f262007-08-07 10:26:35 -07004204INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004205M: Dan Williams <djbw@fb.com>
4206S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004207F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004208
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004209INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004210M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004212F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4213F: arch/arm/mach-ixp4xx/include/mach/npe.h
4214F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4215F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004216F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004217F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004218
Michael Buesch844dd052006-06-26 00:24:59 -07004219INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004220M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004222F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004223
Jeff Kirsher0d164402010-10-05 01:15:17 +00004224INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004225M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4226M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4227M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004228M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4229M: Don Skidmore <donald.c.skidmore@intel.com>
4230M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004231M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004232M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004233M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004234M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004235L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004236W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004237W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004238T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4239T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004241F: Documentation/networking/e100.txt
4242F: Documentation/networking/e1000.txt
4243F: Documentation/networking/e1000e.txt
4244F: Documentation/networking/igb.txt
4245F: Documentation/networking/igbvf.txt
4246F: Documentation/networking/ixgb.txt
4247F: Documentation/networking/ixgbe.txt
4248F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004249F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004251INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4252M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004253L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004255F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004256F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004257F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004258
Shane Wang4bd96a72010-03-10 14:36:10 +08004259INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004260M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4261M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004262M: Shane Wang <shane.wang@intel.com>
4263L: tboot-devel@lists.sourceforge.net
4264W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004265T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004266S: Supported
4267F: Documentation/intel_txt.txt
4268F: include/linux/tboot.h
4269F: arch/x86/kernel/tboot.c
4270
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004271INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004272M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004273M: linux-wimax@intel.com
4274L: wimax@linuxwimax.org
4275S: Supported
4276W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004277F: Documentation/wimax/README.i2400m
4278F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004279F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004280
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004281INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4282M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004283L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004284S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004285F: drivers/net/wireless/iwlegacy/
4286
Zhu Yib481de92007-09-25 17:54:57 -07004287INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004288M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004289M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004290M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004291L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004292W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004293T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004295F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004296
Tomas Winklerde8fe022012-05-09 16:39:02 +03004297INTEL MANAGEMENT ENGINE (mei)
4298M: Tomas Winkler <tomas.winkler@intel.com>
4299L: linux-kernel@vger.kernel.org
4300S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004301F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004302F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004303F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004304
Ralf Baechlecb109a02007-08-30 23:56:30 -07004305IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004306M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307L: linux-mips@linux-mips.org
4308S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004309F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310
Ralf Baechlecb109a02007-08-30 23:56:30 -07004311IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004312M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004313L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004314S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004315F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004316
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004317IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004318M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004320F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
Francois Romieu1202d6f2007-09-17 17:13:55 -07004322IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004323M: Francois Romieu <romieu@fr.zoreil.com>
4324M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004325L: netdev@vger.kernel.org
4326S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004327F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004328
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004329IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004330M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004331L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004333F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004334
Corey Minyard4409ebe2006-04-20 02:43:12 -07004335IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004336M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004337L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004338W: http://openipmi.sourceforge.net/
4339S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004340F: Documentation/IPMI.txt
4341F: drivers/char/ipmi/
4342F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004343F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004344
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004345IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004347L: linux-scsi@vger.kernel.org
4348W: http://www.adaptec.com/
4349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004350F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004351
4352IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: Wensong Zhang <wensong@linux-vs.org>
4354M: Simon Horman <horms@verge.net.au>
4355M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004356L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004357L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004359F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004360F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004361F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004362F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Randy Dunlape7839f22008-10-12 16:11:45 -07004364IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004365M: Jiri Kosina <jkosina@suse.cz>
4366M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004367S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004368F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004369
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004370IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004371M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004372L: netdev@vger.kernel.org
4373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004374F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004375F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004376F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004377
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004379M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004380L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004381L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004383S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004384T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004385F: Documentation/networking/irda.txt
4386F: drivers/net/irda/
4387F: include/net/irda/
4388F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004390IRQ SUBSYSTEM
4391M: Thomas Gleixner <tglx@linutronix.de>
4392S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004393T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004394F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004395F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004396
Grant Likely7ab3a832012-02-14 14:06:47 -07004397IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4398M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely19624232013-04-08 11:51:42 +01004399M: Grant Likely <grant.likely@linaro.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004400T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4401S: Maintained
4402F: Documentation/IRQ-domain.txt
4403F: include/linux/irqdomain.h
4404F: kernel/irq/irqdomain.c
4405
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004406ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004407M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004409F: Documentation/isapnp.txt
4410F: drivers/pnp/isapnp/
4411F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004412
Hans Verkuild39b8422012-11-23 07:07:02 -03004413ISA RADIO MODULE
4414M: Hans Verkuil <hverkuil@xs4all.nl>
4415L: linux-media@vger.kernel.org
4416T: git git://linuxtv.org/media_tree.git
4417W: http://linuxtv.org
4418S: Maintained
4419F: drivers/media/radio/radio-isa*
4420
Harry Wei71a6d0a2011-05-11 15:13:33 -07004421iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4422M: Peter Jones <pjones@redhat.com>
4423M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4424S: Maintained
4425F: drivers/firmware/iscsi_ibft*
4426
Mike Christie14816b1e2007-11-28 16:22:06 -08004427ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004428M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004429L: open-iscsi@googlegroups.com
4430W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004431T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004433F: drivers/scsi/*iscsi*
4434F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004437M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004438L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004439L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004441T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004443F: Documentation/isdn/
4444F: drivers/isdn/
4445F: include/linux/isdn.h
4446F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004447F: include/uapi/linux/isdn.h
4448F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
4450ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004451M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004452L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453W: http://www.melware.de
4454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004455F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
Jean Delvared6248702010-03-05 22:17:20 +01004457IT87 HARDWARE MONITORING DRIVER
4458M: Jean Delvare <khali@linux-fr.org>
4459L: lm-sensors@lm-sensors.org
4460S: Maintained
4461F: Documentation/hwmon/it87
4462F: drivers/hwmon/it87.c
4463
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004464IT913X MEDIA DRIVER
4465M: Malcolm Priestley <tvboxspy@gmail.com>
4466L: linux-media@vger.kernel.org
4467W: http://linuxtv.org/
4468Q: http://patchwork.linuxtv.org/project/linux-media/list/
4469S: Maintained
4470F: drivers/media/usb/dvb-usb-v2/it913x*
4471
4472IT913X FE MEDIA DRIVER
4473M: Malcolm Priestley <tvboxspy@gmail.com>
4474L: linux-media@vger.kernel.org
4475W: http://linuxtv.org/
4476Q: http://patchwork.linuxtv.org/project/linux-media/list/
4477S: Maintained
4478F: drivers/media/dvb-frontends/it913x-fe*
4479
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004480IT913X MEDIA DRIVER
4481M: Antti Palosaari <crope@iki.fi>
4482L: linux-media@vger.kernel.org
4483W: http://linuxtv.org/
4484W: http://palosaari.fi/linux/
4485Q: http://patchwork.linuxtv.org/project/linux-media/list/
4486T: git git://linuxtv.org/anttip/media_tree.git
4487S: Maintained
4488F: drivers/media/tuners/it913x*
4489
Hans Verkuil91821ff2007-12-02 09:35:33 -03004490IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004491M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004492L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004493L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004494T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004495W: http://www.ivtvdriver.org
4496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004497F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004498F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004499F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004500
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004501IX2505V MEDIA DRIVER
4502M: Malcolm Priestley <tvboxspy@gmail.com>
4503L: linux-media@vger.kernel.org
4504W: http://linuxtv.org/
4505Q: http://patchwork.linuxtv.org/project/linux-media/list/
4506S: Maintained
4507F: drivers/media/dvb-frontends/ix2505v*
4508
Guenter Roeck4453d732010-08-09 17:21:08 -07004509JC42.4 TEMPERATURE SENSOR DRIVER
4510M: Guenter Roeck <linux@roeck-us.net>
4511L: lm-sensors@lm-sensors.org
4512S: Maintained
4513F: drivers/hwmon/jc42.c
4514F: Documentation/hwmon/jc42
4515
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004516JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004517M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004518L: jfs-discussion@lists.sourceforge.net
4519W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004520T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004522F: Documentation/filesystems/jfs.txt
4523F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004524
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004525JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004527L: netdev@vger.kernel.org
4528S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004529F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004530
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004533L: linux-mtd@lists.infradead.org
4534W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004536F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004537F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
Josh Triplettde456d32006-07-30 03:04:00 -07004539JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004540M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004541M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004542L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004543S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004544F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004545F: include/linux/jbd.h
4546
4547JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4548M: "Theodore Ts'o" <tytso@mit.edu>
4549L: linux-ext4@vger.kernel.org
4550S: Maintained
4551F: fs/jbd2/
4552F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004553
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004554JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004555M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004556L: linux-serial@vger.kernel.org
4557S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004558F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004559
Clemens Ladischaf399172011-01-10 16:32:54 +01004560K10TEMP HARDWARE MONITORING DRIVER
4561M: Clemens Ladisch <clemens@ladisch.de>
4562L: lm-sensors@lm-sensors.org
4563S: Maintained
4564F: Documentation/hwmon/k10temp
4565F: drivers/hwmon/k10temp.c
4566
Rudolf Marek4660cb32006-10-08 22:01:26 +02004567K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004568M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004569L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004571F: Documentation/hwmon/k8temp
4572F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004575M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004576L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004577S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004578F: Documentation/kbuild/kconfig-language.txt
4579F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Vivek Goyalea6c2082006-05-20 14:59:55 -07004581KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004582M: Vivek Goyal <vgoyal@redhat.com>
4583M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004584L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004585W: http://lse.sourceforge.net/kdump/
4586S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004587F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004588
Hans Verkuilf41bf022012-11-23 07:04:36 -03004589KEENE FM RADIO TRANSMITTER DRIVER
4590M: Hans Verkuil <hverkuil@xs4all.nl>
4591L: linux-media@vger.kernel.org
4592T: git git://linuxtv.org/media_tree.git
4593W: http://linuxtv.org
4594S: Maintained
4595F: drivers/media/radio/radio-keene*
4596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004598M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004599L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004601F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
Michal Marek70fb7ba2010-01-29 14:22:43 +01004603KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004604M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004605T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4606T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004607L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004609F: Documentation/kbuild/
4610F: Makefile
4611F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004612F: scripts/basic/
4613F: scripts/mk*
4614F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615
4616KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004617L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004618W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004619S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004621KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004622M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004623L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004626F: fs/nfsd/
4627F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004628F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004629F: fs/lockd/
4630F: fs/nfs_common/
4631F: net/sunrpc/
4632F: include/linux/lockd/
4633F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004634F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
Avi Kivity426d62e2006-12-13 00:34:03 -08004636KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004637M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004638M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004639L: kvm@vger.kernel.org
4640W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004642F: Documentation/*/kvm.txt
4643F: arch/*/kvm/
4644F: arch/*/include/asm/kvm*
4645F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004646F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004647F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004648
Joerg Roedelad8003d2008-09-10 20:01:07 +02004649KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004650M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004651L: kvm@vger.kernel.org
4652W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004654F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004655F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004656
Hollis Blanchard513014b2008-04-16 23:28:08 -05004657KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004658M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004659L: kvm-ppc@vger.kernel.org
4660W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004661T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004662S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004663F: arch/powerpc/include/asm/kvm*
4664F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004665
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004666KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004668L: kvm-ia64@vger.kernel.org
4669W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004670S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004671F: Documentation/ia64/kvm.txt
4672F: arch/ia64/include/asm/kvm*
4673F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004674
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004675KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004676M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004677M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004678M: linux390@de.ibm.com
4679L: linux-s390@vger.kernel.org
4680W: http://www.ibm.com/developerworks/linux/linux390/
4681S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004682F: Documentation/s390/kvm.txt
4683F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004684F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004685F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004686
Christoffer Dalla7494742013-01-20 18:42:26 -05004687KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4688M: Christoffer Dall <cdall@cs.columbia.edu>
4689L: kvmarm@lists.cs.columbia.edu
4690W: http://systems.cs.columbia.edu/projects/kvm-arm
4691S: Maintained
4692F: arch/arm/include/uapi/asm/kvm*
4693F: arch/arm/include/asm/kvm*
4694F: arch/arm/kvm/
4695
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004696KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004697M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004698W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004699L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004701F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004702F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004703F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004704
David Howellse9714612010-03-29 23:42:09 +01004705KEYS/KEYRINGS:
4706M: David Howells <dhowells@redhat.com>
4707L: keyrings@linux-nfs.org
4708S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004709F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004710F: include/linux/key.h
4711F: include/linux/key-type.h
4712F: include/keys/
4713F: security/keys/
4714
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004715KEYS-TRUSTED
4716M: David Safford <safford@watson.ibm.com>
4717M: Mimi Zohar <zohar@us.ibm.com>
4718L: linux-security-module@vger.kernel.org
4719L: keyrings@linux-nfs.org
4720S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004721F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004722F: include/keys/trusted-type.h
4723F: security/keys/trusted.c
4724F: security/keys/trusted.h
4725
4726KEYS-ENCRYPTED
4727M: Mimi Zohar <zohar@us.ibm.com>
4728M: David Safford <safford@watson.ibm.com>
4729L: linux-security-module@vger.kernel.org
4730L: keyrings@linux-nfs.org
4731S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004732F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004733F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004734F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004735
Jason Wessel5b778da2010-05-20 21:04:28 -05004736KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004737M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004738W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004739L: kgdb-bugreport@lists.sourceforge.net
4740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004741F: Documentation/DocBook/kgdb.tmpl
4742F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004743F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004744F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004745F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004746F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004747
Pekka Enberg456db8c2008-04-28 22:47:29 +03004748KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004749M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004750M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004751S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004752F: Documentation/kmemcheck.txt
4753F: arch/x86/include/asm/kmemcheck.h
4754F: arch/x86/mm/kmemcheck/
4755F: include/linux/kmemcheck.h
4756F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004757
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004758KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004760S: Maintained
4761F: Documentation/kmemleak.txt
4762F: include/linux/kmemleak.h
4763F: mm/kmemleak.c
4764F: mm/kmemleak-test.c
4765
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004766KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004767M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4768M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4769M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004770M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: Documentation/kprobes.txt
4773F: include/linux/kprobes.h
4774F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004775
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004776KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004778W: http://miguelojeda.es/auxdisplay.htm
4779W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: Documentation/auxdisplay/ks0108
4782F: drivers/auxdisplay/ks0108.c
4783F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004784
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004787S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004788F: Documentation/networking/lapb-module.txt
4789F: include/*/lapb.h
4790F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
4792LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004793M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794L: linux-scsi@vger.kernel.org
4795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004796F: Documentation/scsi/53c700.txt
4797F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
Richard Purdie263de9b2006-05-15 09:44:16 -07004799LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004800M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004801M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004802L: linux-leds@vger.kernel.org
4803T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: drivers/leds/
4806F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004807
Jean Delvareb0461a42011-06-15 15:08:46 -07004808LEGACY EEPROM DRIVER
4809M: Jean Delvare <khali@linux-fr.org>
4810S: Maintained
4811F: Documentation/misc-devices/eeprom
4812F: drivers/misc/eeprom/eeprom.c
4813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816L: legousb-devel@lists.sourceforge.net
4817W: http://legousb.sourceforge.net/
4818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004819F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820
Michael Krufky055616a2012-10-02 00:56:06 -03004821LG2160 MEDIA DRIVER
4822M: Michael Krufky <mkrufky@linuxtv.org>
4823L: linux-media@vger.kernel.org
4824W: http://linuxtv.org/
4825W: http://github.com/mkrufky
4826Q: http://patchwork.linuxtv.org/project/linux-media/list/
4827T: git git://linuxtv.org/mkrufky/tuners.git
4828S: Maintained
4829F: drivers/media/dvb-frontends/lg2160.*
4830
Michael Krufky6f0e7722012-10-02 00:56:00 -03004831LGDT3305 MEDIA DRIVER
4832M: Michael Krufky <mkrufky@linuxtv.org>
4833L: linux-media@vger.kernel.org
4834W: http://linuxtv.org/
4835W: http://github.com/mkrufky
4836Q: http://patchwork.linuxtv.org/project/linux-media/list/
4837T: git git://linuxtv.org/mkrufky/tuners.git
4838S: Maintained
4839F: drivers/media/dvb-frontends/lgdt3305.*
4840
Rusty Russell568a17f2007-10-25 14:12:24 +10004841LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004842M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004843L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004844W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004845S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004846F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004847F: arch/x86/lguest/
4848F: drivers/lguest/
4849F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004850F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004851
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004853M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854W: http://www.ibm.com/linux/ltc/projects/ppc
4855S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004856F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004858LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004859M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4860M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004862L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004863Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004864T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004866F: Documentation/powerpc/
4867F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
4869LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004870M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004872L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004874F: arch/powerpc/platforms/powermac/
4875F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
Grant Likely77a76362008-07-12 12:11:43 -06004877LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004878M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004879L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004880T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004882F: arch/powerpc/platforms/512x/
4883F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884
4885LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004886M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004887M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004889L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004890T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004892F: arch/powerpc/platforms/40x/
4893F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
Grant Likely260c02a2007-10-02 12:15:34 +10004895LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004896L: linuxppc-dev@lists.ozlabs.org
Grant Likely19624232013-04-08 11:51:42 +01004897S: Unmaintained
Joe Perches11c34c72009-12-04 07:16:59 +00004898F: arch/powerpc/*/*virtex*
4899F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
Tom Rinie93adf12005-07-26 12:49:53 -07004901LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004902M: Vitaly Bordug <vitb@kernel.crashing.org>
4903M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004904W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004905L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004906S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004907F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004910M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004911W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004912L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004913S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004914F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004915F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916
Olof Johanssonab06ff32006-09-06 14:44:54 -05004917LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004918M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004919L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004920S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004921F: arch/powerpc/platforms/pasemi/
4922F: drivers/*/*pasemi*
4923F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004924
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004927L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928S: Supported
4929
Harry Weia23ce6d2011-02-11 16:52:20 +01004930LIS3LV02D ACCELEROMETER DRIVER
4931M: Eric Piel <eric.piel@tremplin-utc.net>
4932S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004933F: Documentation/misc-devices/lis3lv02d
4934F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004935F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004936
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004937LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004938M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004940F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004941F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004942F: include/net/llc*
4943F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004944
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004945LM73 HARDWARE MONITOR DRIVER
4946M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4947L: lm-sensors@lm-sensors.org
4948S: Maintained
4949F: drivers/hwmon/lm73.c
4950
Jean Delvare156e2d12011-07-25 21:46:11 +02004951LM78 HARDWARE MONITOR DRIVER
4952M: Jean Delvare <khali@linux-fr.org>
4953L: lm-sensors@lm-sensors.org
4954S: Maintained
4955F: Documentation/hwmon/lm78
4956F: drivers/hwmon/lm78.c
4957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004959M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004960L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004962F: Documentation/hwmon/lm83
4963F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
4965LM90 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/lm90
4970F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004972LME2510 MEDIA DRIVER
4973M: Malcolm Priestley <tvboxspy@gmail.com>
4974L: linux-media@vger.kernel.org
4975W: http://linuxtv.org/
4976Q: http://patchwork.linuxtv.org/project/linux-media/list/
4977S: Maintained
4978F: drivers/media/usb/dvb-usb-v2/lmedm04*
4979
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004980LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004981M: Peter Zijlstra <peterz@infradead.org>
4982M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004983T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004985F: Documentation/lockdep*.txt
4986F: Documentation/lockstat.txt
4987F: include/linux/lockdep.h
4988F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004989
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004990LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004992L: linux-ntfs-dev@lists.sourceforge.net
4993W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004995F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004996F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
Joern Engelef6ada32009-11-20 22:17:12 +01004998LogFS
4999M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305000M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005001L: logfs@logfs.org
5002W: logfs.org
5003S: Maintained
5004F: fs/logfs/
5005
Roland Stiggeb62d7942013-04-02 19:37:11 +02005006LPC32XX MACHINE SUPPORT
5007M: Roland Stigge <stigge@antcom.de>
5008L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5009S: Maintained
5010F: arch/arm/mach-lpc32xx/
5011
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005012LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305013M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5014M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005015M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005016L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005017L: linux-scsi@vger.kernel.org
5018W: http://www.lsilogic.com/support
5019S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005020F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305021F: drivers/scsi/mpt2sas/
5022F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005023
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005025M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026L: linux-scsi@vger.kernel.org
5027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005028F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029
Guenter Roecke5f5c992010-06-25 11:59:54 -07005030LTC4261 HARDWARE MONITOR DRIVER
5031M: Guenter Roeck <linux@roeck-us.net>
5032L: lm-sensors@lm-sensors.org
5033S: Maintained
5034F: Documentation/hwmon/ltc4261
5035F: drivers/hwmon/ltc4261.c
5036
Mike Frysinger81365c32008-10-29 14:01:12 -07005037LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005038M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005039M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005040M: Cyril Hrubis <chrubis@suse.cz>
5041M: Caspar Zhang <caspar@casparzhang.com>
5042M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005043L: ltp-list@lists.sourceforge.net (subscribers-only)
5044W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005045T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005046T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005047S: Maintained
5048
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005049M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005050M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005051L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005052L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5053W: http://www.linux-m32r.org/
5054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005055F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005056
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005058M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059L: linux-m68k@lists.linux-m68k.org
5060W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005061T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005063F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005064F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
5066M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005067M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005069L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005071F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072
5073M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005074M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075W: http://www.tazenda.demon.co.uk/phil/linux-hp
5076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005077F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005079M88RS2000 MEDIA DRIVER
5080M: Malcolm Priestley <tvboxspy@gmail.com>
5081L: linux-media@vger.kernel.org
5082W: http://linuxtv.org/
5083Q: http://patchwork.linuxtv.org/project/linux-media/list/
5084S: Maintained
5085F: drivers/media/dvb-frontends/m88rs2000*
5086
Alexey Klimov07a092f2012-11-12 02:57:32 -03005087MA901 MASTERKIT USB FM RADIO DRIVER
5088M: Alexey Klimov <klimov.linux@gmail.com>
5089L: linux-media@vger.kernel.org
5090T: git git://linuxtv.org/media_tree.git
5091S: Maintained
5092F: drivers/media/radio/radio-ma901.c
5093
Jiri Benc64a327a2007-05-05 11:47:08 -07005094MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005095M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005096L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005097W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005098T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5099T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005101F: Documentation/networking/mac80211-injection.txt
5102F: include/net/mac80211.h
5103F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005104
Stefano Brivio1036d862007-12-23 04:46:27 +01005105MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005106M: Stefano Brivio <stefano.brivio@polimi.it>
5107M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005108L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005109W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005110T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5111T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005113F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005114
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005115MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005116M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005117L: netdev@vger.kernel.org
5118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005119F: drivers/net/macvlan.c
5120F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005121
Michael Kerriskfaf16682005-07-31 22:34:47 -07005122MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005124W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005125L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005126S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005127
stephen hemminger44c14c12012-04-02 12:59:47 +00005128MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5129M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005130M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005131L: netdev@vger.kernel.org
5132S: Maintained
5133F: drivers/net/ethernet/marvell/sk*
5134
Stefano Brivio74cda162007-11-19 20:27:46 +01005135MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005136L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005137S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005138F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005139
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005140MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005141M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005142L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005143S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005144F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005145F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005147MARVELL MVNETA ETHERNET DRIVER
5148M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5149L: netdev@vger.kernel.org
5150S: Maintained
5151F: drivers/net/ethernet/marvell/mvneta.*
5152
Bing Zhaofcad5842011-07-13 13:11:58 -07005153MARVELL MWIFIEX WIRELESS DRIVER
5154M: Bing Zhao <bzhao@marvell.com>
5155L: linux-wireless@vger.kernel.org
5156S: Maintained
5157F: drivers/net/wireless/mwifiex/
5158
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005159MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005160M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005161L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005162S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005163F: drivers/net/wireless/mwl8k.c
5164
Pierre Ossman2a695672009-03-16 19:52:26 +01005165MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005166M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005167S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005168F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005171L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005172S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005173F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005174F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175
Guenter Roeckca462082012-06-01 23:28:23 -07005176MAX16065 HARDWARE MONITOR DRIVER
5177M: Guenter Roeck <linux@roeck-us.net>
5178L: lm-sensors@lm-sensors.org
5179S: Maintained
5180F: Documentation/hwmon/max16065
5181F: drivers/hwmon/max16065.c
5182
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005183MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005184M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005185L: lm-sensors@lm-sensors.org
5186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005187F: Documentation/hwmon/max6650
5188F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005189
Guenter Roecke89ab512013-03-08 08:13:09 -08005190MAX6697 HARDWARE MONITOR DRIVER
5191M: Guenter Roeck <linux@roeck-us.net>
5192L: lm-sensors@lm-sensors.org
5193S: Maintained
5194F: Documentation/hwmon/max6697
5195F: Documentation/devicetree/bindings/i2c/max6697.txt
5196F: drivers/hwmon/max6697.c
5197F: include/linux/platform_data/max6697.h
5198
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005199MAXIRADIO FM RADIO RECEIVER DRIVER
5200M: Hans Verkuil <hverkuil@xs4all.nl>
5201L: linux-media@vger.kernel.org
5202T: git git://linuxtv.org/media_tree.git
5203W: http://linuxtv.org
5204S: Maintained
5205F: drivers/media/radio/radio-maxiradio*
5206
Joe Perches127c49a2009-04-08 08:34:04 -07005207MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005208M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005209P: LinuxTV.org Project
5210L: linux-media@vger.kernel.org
5211W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005212Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005213T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005214S: Maintained
5215F: Documentation/dvb/
5216F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005217F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005218F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005219F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005220F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005221F: include/uapi/linux/dvb/
5222F: include/uapi/linux/videodev2.h
5223F: include/uapi/linux/media.h
5224F: include/uapi/linux/v4l2-*
5225F: include/uapi/linux/meye.h
5226F: include/uapi/linux/ivtv*
5227F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005228
Hans Verkuil6149a932012-11-23 07:21:19 -03005229MEDIAVISION PRO MOVIE STUDIO DRIVER
5230M: Hans Verkuil <hverkuil@xs4all.nl>
5231L: linux-media@vger.kernel.org
5232T: git git://linuxtv.org/media_tree.git
5233W: http://linuxtv.org
5234S: Odd Fixes
5235F: drivers/media/parport/pms*
5236
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005237MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005239L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005240W: http://megaraid.lsilogic.com
5241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005242F: Documentation/scsi/megaraid.txt
5243F: drivers/scsi/megaraid.*
5244F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005245
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005246MELLANOX ETHERNET DRIVER (mlx4_en)
5247M: Amir Vadai <amirv@mellanox.com>
5248L: netdev@vger.kernel.org
5249S: Supported
5250W: http://www.mellanox.com
5251Q: http://patchwork.ozlabs.org/project/netdev/list/
5252F: drivers/net/ethernet/mellanox/mlx4/en_*
5253
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005254MEMORY MANAGEMENT
5255L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005256W: http://www.linux-mm.org
5257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005258F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005259F: include/linux/gfp.h
5260F: include/linux/mmzone.h
5261F: include/linux/memory_hotplug.h
5262F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005263F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005264
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005265MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005266M: Johannes Weiner <hannes@cmpxchg.org>
5267M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005268M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005269M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005270L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005271L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005273F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005274F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005275
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005276MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005277M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005279W: http://www.linux-mtd.infradead.org/
5280Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005281T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005283F: drivers/mtd/
5284F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005285F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286
James Hogan12285942012-10-10 12:59:49 +01005287METAG ARCHITECTURE
5288M: James Hogan <james.hogan@imgtec.com>
5289S: Supported
5290F: arch/metag/
5291F: Documentation/metag/
5292F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005293F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005294F: drivers/irqchip/irq-metag.c
5295F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005296F: drivers/tty/metag_da.c
5297F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005298
Michal Simekc6375b02009-03-27 14:25:52 +01005299MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005300M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005301L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005302W: http://www.monstr.eu/fdt/
5303T: git git://git.monstr.eu/linux-2.6-microblaze.git
5304S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005305F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
5307MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005308M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005310F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311
5312MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005313M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005315W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005316T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005317Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005319F: Documentation/mips/
5320F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
Hans Verkuil08b76202012-11-23 07:15:42 -03005322MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5323M: Hans Verkuil <hverkuil@xs4all.nl>
5324L: linux-media@vger.kernel.org
5325T: git git://linuxtv.org/media_tree.git
5326W: http://linuxtv.org
5327S: Odd Fixes
5328F: drivers/media/radio/radio-miropcm20*
5329
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005331M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005333F: include/linux/module.h
5334F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
5336MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005338S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005339F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005340F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005341F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342
Jiri Slabyb9705b62008-04-30 00:53:48 -07005343MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005344M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005346F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005347F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005348
Alexey Klimov889b2f82012-11-16 17:43:59 -03005349MR800 AVERMEDIA USB FM RADIO DRIVER
5350M: Alexey Klimov <klimov.linux@gmail.com>
5351L: linux-media@vger.kernel.org
5352T: git git://linuxtv.org/media_tree.git
5353S: Maintained
5354F: drivers/media/radio/radio-mr800.c
5355
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005356MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005357M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005358L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005361
Anisse Astier0f1006b2009-12-17 11:28:49 +01005362MSI WMI SUPPORT
5363M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005364L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005365S: Supported
5366F: drivers/platform/x86/msi-wmi.c
5367
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005368MT9M032 SENSOR DRIVER
5369M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5370L: linux-media@vger.kernel.org
5371T: git git://linuxtv.org/media_tree.git
5372S: Maintained
5373F: drivers/media/i2c/mt9m032.c
5374F: include/media/mt9m032.h
5375
5376MT9P031 SENSOR DRIVER
5377M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5378L: linux-media@vger.kernel.org
5379T: git git://linuxtv.org/media_tree.git
5380S: Maintained
5381F: drivers/media/i2c/mt9p031.c
5382F: include/media/mt9p031.h
5383
5384MT9T001 SENSOR DRIVER
5385M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5386L: linux-media@vger.kernel.org
5387T: git git://linuxtv.org/media_tree.git
5388S: Maintained
5389F: drivers/media/i2c/mt9t001.c
5390F: include/media/mt9t001.h
5391
5392MT9V032 SENSOR DRIVER
5393M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5394L: linux-media@vger.kernel.org
5395T: git git://linuxtv.org/media_tree.git
5396S: Maintained
5397F: drivers/media/i2c/mt9v032.c
5398F: include/media/mt9v032.h
5399
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005400MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005401M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005402T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005404F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005405
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005406MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005407M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005408L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005409T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005411F: drivers/mmc/
5412F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005413F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005414
David Brownell15a05802007-08-08 09:12:54 -07005415MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005416S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005417F: drivers/mmc/host/mmc_spi.c
5418F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005419
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005421M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005423F: Documentation/sound/oss/MultiSound
5424F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425
Jiri Slabyd7354102006-12-08 02:38:35 -08005426MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005427S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005428F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005429F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005430
Felipe Balbi550a7372008-07-24 12:27:36 +03005431MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005432M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005433L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005434T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005436F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005437
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005438MXL5007T MEDIA DRIVER
5439M: Michael Krufky <mkrufky@linuxtv.org>
5440L: linux-media@vger.kernel.org
5441W: http://linuxtv.org/
5442W: http://github.com/mkrufky
5443Q: http://patchwork.linuxtv.org/project/linux-media/list/
5444T: git git://linuxtv.org/mkrufky/tuners.git
5445S: Maintained
5446F: drivers/media/tuners/mxl5007t.*
5447
Brice Goglin2d3cf582008-05-17 12:45:36 +02005448MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005449M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005450L: netdev@vger.kernel.org
5451W: http://www.myri.com/scs/download-Myri10GE.html
5452S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005453F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005454
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005456S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005457F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458
Daniel Mack23dc05a2011-05-18 11:28:38 +02005459NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5460M: Daniel Mack <zonque@gmail.com>
5461S: Maintained
5462L: alsa-devel@alsa-project.org
5463W: http://www.native-instruments.com
5464F: sound/usb/caiaq/
5465
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005467M: Petr Vandrovec <petr@vandrovec.name>
5468S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005469F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
5471NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005472M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473L: linux-scsi@vger.kernel.org
5474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005475F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005477NCT6775 HARDWARE MONITOR DRIVER
5478M: Guenter Roeck <linux@roeck-us.net>
5479L: lm-sensors@lm-sensors.org
5480S: Maintained
5481F: Documentation/hwmon/nct6775
5482F: drivers/hwmon/nct6775.c
5483
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005484NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005485M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005486L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005487W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005488S: Supported
5489F: drivers/infiniband/hw/nes/
5490
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005491NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005492M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005493L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005495F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005496
Jon Masonb2f5a052010-07-15 08:47:27 +00005497NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005498M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005499L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005501F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005502F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005503F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005504
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506P: Harald Welte
5507P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005508M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005509M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005510L: netfilter-devel@vger.kernel.org
5511L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005512L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513W: http://www.netfilter.org/
5514W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005515T: git git://1984.lsi.us.es/nf
5516T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005518F: include/linux/netfilter*
5519F: include/linux/netfilter/
5520F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005521F: include/uapi/linux/netfilter*
5522F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005523F: net/*/netfilter.c
5524F: net/*/netfilter/
5525F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Paul Moore4cc67732006-09-25 15:57:13 -07005527NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005528M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005529W: http://netlabel.sf.net
5530L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005531S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005532F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005533F: include/net/netlabel.h
5534F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005535
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005537M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005539W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005541F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005542F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005543F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005545NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005546M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005548L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005549F: Documentation/blockdev/nbd.txt
5550F: drivers/block/nbd.c
5551F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005552F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
Neil Horman6e436502009-10-05 03:56:55 +00005554NETWORK DROP MONITOR
5555M: Neil Horman <nhorman@tuxdriver.com>
5556L: netdev@vger.kernel.org
5557S: Maintained
5558W: https://fedorahosted.org/dropwatch/
5559F: net/core/drop_monitor.c
5560
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005563L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005564W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005565Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005566T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5567T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: net/
5570F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005571F: include/linux/in.h
5572F: include/linux/net.h
5573F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005574F: include/uapi/linux/in.h
5575F: include/uapi/linux/net.h
5576F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577
5578NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005579M: "David S. Miller" <davem@davemloft.net>
5580M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005581M: James Morris <jmorris@namei.org>
5582M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5583M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005584L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005585T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005587F: net/ipv4/
5588F: net/ipv6/
5589F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005590F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
David S. Miller73b76562012-10-16 14:08:40 -04005592NETWORKING [IPSEC]
5593M: Steffen Klassert <steffen.klassert@secunet.com>
5594M: Herbert Xu <herbert@gondor.apana.org.au>
5595M: "David S. Miller" <davem@davemloft.net>
5596L: netdev@vger.kernel.org
5597T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5598S: Maintained
5599F: net/xfrm/
5600F: net/key/
5601F: net/ipv4/xfrm*
5602F: net/ipv6/xfrm*
5603F: include/uapi/linux/xfrm.h
5604F: include/net/xfrm.h
5605
James Morris10e2ff12007-08-25 14:41:28 -07005606NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005607M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005608L: netdev@vger.kernel.org
5609S: Maintained
5610
John W. Linville29f8f632006-01-18 14:52:48 -08005611NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005612M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005613L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005614Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005615T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005616S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005617F: net/mac80211/
5618F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005619F: net/wireless/
5620F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005621F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005622F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005623F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005624F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005625
Joe Perches788873a2009-04-16 09:38:45 +00005626NETWORKING DRIVERS
5627L: netdev@vger.kernel.org
5628W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005629Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005630T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5631T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005632S: Odd Fixes
5633F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005634F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005635F: include/linux/netdevice.h
5636F: include/linux/arcdevice.h
5637F: include/linux/etherdevice.h
5638F: include/linux/fcdevice.h
5639F: include/linux/fddidevice.h
5640F: include/linux/hippidevice.h
5641F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005642F: include/uapi/linux/if_*
5643F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005644
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005645NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005646M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005647M: Sony Chacko <sony.chacko@qlogic.com>
5648M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005649L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005650W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005651S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005652F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005653
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005654NFC SUBSYSTEM
5655M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5656M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5657M: Samuel Ortiz <sameo@linux.intel.com>
5658L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005659L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005660S: Maintained
5661F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005662F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005663F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005664F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005665F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005667NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005668M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005669L: linux-nfs@vger.kernel.org
5670W: http://client.linux-nfs.org
5671T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005673F: fs/lockd/
5674F: fs/nfs/
5675F: fs/nfs_common/
5676F: net/sunrpc/
5677F: include/linux/lockd/
5678F: include/linux/nfs*
5679F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005680F: include/uapi/linux/nfs*
5681F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005683NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005685L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005686W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005687T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005689F: Documentation/filesystems/nilfs2.txt
5690F: fs/nilfs2/
5691F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005692
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005694M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005697F: Documentation/scsi/NinjaSCSI.txt
5698F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
5700NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005701M: GOTO Masanori <gotom@debian.or.jp>
5702M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005705F: Documentation/scsi/NinjaSCSI.txt
5706F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
Jon Masonfce8a7b2012-11-16 19:27:12 -07005708NTB DRIVER
5709M: Jon Mason <jon.mason@intel.com>
5710S: Supported
5711F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005712F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005713F: include/linux/ntb.h
5714
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005716M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005718W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005719T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005720S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005721F: Documentation/filesystems/ntfs.txt
5722F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005724NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005725M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005726L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005728F: drivers/video/riva/
5729F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730
Matthew Wilcox79461682012-11-10 08:54:53 -05005731NVM EXPRESS DRIVER
5732M: Matthew Wilcox <willy@linux.intel.com>
5733L: linux-nvme@lists.infradead.org
5734T: git git://git.infradead.org/users/willy/linux-nvme.git
5735S: Supported
5736F: drivers/block/nvme.c
5737F: include/linux/nvme.h
5738
Tony Lindgrenf5525782009-05-28 13:23:53 -07005739OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005740M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005741L: linux-omap@vger.kernel.org
5742W: http://www.muru.com/linux/omap/
5743W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005744Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005745T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005746S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005747F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005748F: drivers/i2c/busses/i2c-omap.c
5749F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005750
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005751OMAP DEVICE TREE SUPPORT
5752M: Benoît Cousson <b-cousson@ti.com>
5753M: Tony Lindgren <tony@atomide.com>
5754L: linux-omap@vger.kernel.org
5755L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5756S: Maintained
5757F: arch/arm/boot/dts/*omap*
5758F: arch/arm/boot/dts/*am3*
5759
Tony Lindgrenf5525782009-05-28 13:23:53 -07005760OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005761M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005762L: linux-omap@vger.kernel.org
5763S: Maintained
5764F: arch/arm/*omap*/*clock*
5765
5766OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005767M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005768L: linux-omap@vger.kernel.org
5769S: Maintained
5770F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005771F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005772
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005773OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5774M: Rajendra Nayak <rnayak@ti.com>
5775M: Paul Walmsley <paul@pwsan.com>
5776L: linux-omap@vger.kernel.org
5777S: Maintained
5778F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5779F: arch/arm/mach-omap2/powerdomain44xx.c
5780F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5781F: arch/arm/mach-omap2/clockdomain44xx.c
5782
Tony Lindgrenf5525782009-05-28 13:23:53 -07005783OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005784M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005785M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005786L: alsa-devel@alsa-project.org (subscribers-only)
5787L: linux-omap@vger.kernel.org
5788S: Maintained
5789F: sound/soc/omap/
5790
5791OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005792M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005793L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005794L: linux-omap@vger.kernel.org
5795S: Maintained
5796F: drivers/video/omap/
5797
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005798OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005799M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005800L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005801L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005802S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005803F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005804F: Documentation/arm/OMAP/DSS
5805
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005806OMAP HARDWARE SPINLOCK SUPPORT
5807M: Ohad Ben-Cohen <ohad@wizery.com>
5808L: linux-omap@vger.kernel.org
5809S: Maintained
5810F: drivers/hwspinlock/omap_hwspinlock.c
5811F: arch/arm/mach-omap2/hwspinlock.c
5812
Tony Lindgrenf5525782009-05-28 13:23:53 -07005813OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005814M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005815L: linux-omap@vger.kernel.org
5816S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005817F: drivers/mmc/host/omap.c
5818
5819OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305820M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305821L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005822L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305823S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005824F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005825
5826OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005827M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005828S: Maintained
5829F: drivers/char/hw_random/omap-rng.c
5830
Paul Walmsleyf400c822010-12-06 19:08:54 -07005831OMAP HWMOD SUPPORT
5832M: Benoît Cousson <b-cousson@ti.com>
5833M: Paul Walmsley <paul@pwsan.com>
5834L: linux-omap@vger.kernel.org
5835S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005836F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005837
5838OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5839M: Benoît Cousson <b-cousson@ti.com>
5840L: linux-omap@vger.kernel.org
5841S: Maintained
5842F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5843
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005844OMAP IMAGE SIGNAL PROCESSOR (ISP)
5845M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5846L: linux-media@vger.kernel.org
5847S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005848F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005849
Tony Lindgrenf5525782009-05-28 13:23:53 -07005850OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005851M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005852L: linux-usb@vger.kernel.org
5853L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005854T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005855S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005856F: drivers/usb/*/*omap*
5857F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005858
Kevin Hilman6d994712012-07-16 10:05:07 -07005859OMAP GPIO DRIVER
5860M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005861M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005862L: linux-omap@vger.kernel.org
5863S: Maintained
5864F: drivers/gpio/gpio-omap.c
5865
Bob Copeland0ad122d2008-07-25 19:45:18 -07005866OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005867M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005868L: linux-karma-devel@lists.sourceforge.net
5869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005870F: Documentation/filesystems/omfs.txt
5871F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005872
Harald Weltec1986ee2005-11-13 16:06:29 -08005873OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005874M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005876F: drivers/char/pcmcia/cm4000_cs.c
5877F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005878F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005879
Harald Welte77c44ab2005-11-13 16:06:26 -08005880OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005881M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005883F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005884
Jonathan Corbet77d51402007-03-22 19:44:17 -03005885OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005886M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005887L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005888T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005889S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005890F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005891
Thomas Gleixner431bca72007-05-02 09:31:35 +02005892ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005893M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005894L: linux-mtd@lists.infradead.org
5895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005896F: drivers/mtd/onenand/
5897F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005898
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901L: osst-users@lists.sourceforge.net
5902L: linux-scsi@vger.kernel.org
5903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005904F: drivers/scsi/osst*
5905F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005907OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005908M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005909L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005911F: Documentation/i2c/busses/i2c-ocores
5912F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005913
Grant Likely860c44c2009-10-26 16:49:49 -07005914OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01005915M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05005916M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005917L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005918W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005919T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005920S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005921F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005922F: drivers/of
5923F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005924F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005925K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005926K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005927
Jonas Bonn19f9d392011-06-04 22:00:38 +03005928OPENRISC ARCHITECTURE
5929M: Jonas Bonn <jonas@southpole.se>
5930W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005931L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005932S: Maintained
5933T: git git://openrisc.net/~jonas/linux
5934F: arch/openrisc
5935
Jesse Grossccb13522011-10-25 19:26:31 -07005936OPENVSWITCH
5937M: Jesse Gross <jesse@nicira.com>
5938L: dev@openvswitch.org
5939W: http://openvswitch.org
5940T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5941S: Maintained
5942F: net/openvswitch/
5943
Clemens Ladischaf399172011-01-10 16:32:54 +01005944OPL4 DRIVER
5945M: Clemens Ladisch <clemens@ladisch.de>
5946L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5947T: git git://git.alsa-project.org/alsa-kernel.git
5948S: Maintained
5949F: sound/drivers/opl4/
5950
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005952M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953L: oprofile-list@lists.sf.net
5954S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005955F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005956F: arch/*/oprofile/
5957F: drivers/oprofile/
5958F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005960ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005962M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005963L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5964W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005965T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005967F: Documentation/filesystems/ocfs2.txt
5968F: Documentation/filesystems/dlmfs.txt
5969F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005970
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005972L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005973W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005974W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005975S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005976F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005978OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005979M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005980M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005981L: osd-dev@open-osd.org
5982W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005983T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005984S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005985F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005986F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005987F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005988
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005989P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005990M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005991L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005992W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005994F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005995
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005996PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005997M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005998L: netdev@vger.kernel.org
5999S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006000F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006001
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006002PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006003M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006004L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006006F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006007
Steffen Klassert48fc2672010-08-13 10:10:46 -04006008PADATA PARALLEL EXECUTION MECHANISM
6009M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006010L: linux-crypto@vger.kernel.org
6011S: Maintained
6012F: kernel/padata.c
6013F: include/linux/padata.h
6014F: Documentation/padata.txt
6015
Harald Welte709ee532008-09-23 17:46:57 +02006016PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006017M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006018L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006020F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006021
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006022PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006023M: David Howells <dhowells@redhat.com>
6024M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006025L: linux-am33-list@redhat.com (moderated for non-subscribers)
6026W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006028F: Documentation/mn10300/
6029F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006030
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006032L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006033S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006034F: drivers/parport/
6035F: include/linux/parport*.h
6036F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006037F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006039PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006040M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006041M: Chris Wright <chrisw@sous-sol.org>
6042M: Alok Kataria <akataria@vmware.com>
6043M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006044L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006046F: Documentation/ia64/paravirt_ops.txt
6047F: arch/*/kernel/paravirt*
6048F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006049
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006051M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006052L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053W: http://www.torque.net/linux-pp.html
6054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006055F: Documentation/blockdev/paride.txt
6056F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057
6058PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006059M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006060M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006061L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006063Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006064T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006066F: arch/parisc/
6067F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
Jim Cromie1662d322006-10-06 00:43:59 -07006069PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006070M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006071L: lm-sensors@lm-sensors.org
6072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006073F: Documentation/hwmon/pc87360
6074F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006075
6076PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006077M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006079F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006080
Jean Delvare1ad107f2010-08-14 21:09:00 +02006081PC87427 HARDWARE MONITORING DRIVER
6082M: Jean Delvare <khali@linux-fr.org>
6083L: lm-sensors@lm-sensors.org
6084S: Maintained
6085F: Documentation/hwmon/pc87427
6086F: drivers/hwmon/pc87427.c
6087
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006088PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006089M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006090S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006091F: drivers/leds/leds-pca9532.c
6092F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006093
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006094PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006095M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006096L: linux-i2c@vger.kernel.org
6097S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006098F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006099
Khalid Aziz3971dae2012-04-12 12:49:13 -07006100PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006101M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006102S: Maintained
6103F: drivers/firmware/pcdp.*
6104
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006105PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006106M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006107L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006109F: Documentation/PCI/pci-error-recovery.txt
6110F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006111
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006113M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006114L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006115Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006116T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006118F: Documentation/PCI/
6119F: drivers/pci/
6120F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006123P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006124L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006125W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006126T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006128F: Documentation/pcmcia/
6129F: drivers/pcmcia/
6130F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
6132PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006133M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006134L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006136F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
Steffen Klassert48fc2672010-08-13 10:10:46 -04006138PCRYPT PARALLEL CRYPTO ENGINE
6139M: Steffen Klassert <steffen.klassert@secunet.com>
6140L: linux-crypto@vger.kernel.org
6141S: Maintained
6142F: crypto/pcrypt.c
6143F: include/crypto/pcrypt.h
6144
Tejun Heoe72df0b2010-12-10 17:02:49 +01006145PER-CPU MEMORY ALLOCATOR
6146M: Tejun Heo <tj@kernel.org>
6147M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006148T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6149S: Maintained
6150F: include/linux/percpu*.h
6151F: mm/percpu*.c
6152F: arch/*/include/asm/percpu.h
6153
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006154PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006155M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006157F: include/linux/delayacct.h
6158F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006159
Ingo Molnar57c0c152009-09-21 12:20:38 +02006160PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006161M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6162M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006163M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006164M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006165T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006166S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006167F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006168F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006169F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006170F: arch/*/kernel/perf_event*.c
6171F: arch/*/kernel/*/perf_event*.c
6172F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006173F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006174F: arch/*/kernel/perf_callchain.c
6175F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006176
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006177PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006178M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006179L: linux-abi-devel@lists.sourceforge.net
6180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006181F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006182F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006183
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006184PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006185M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006186S: Supported
6187F: Documentation/networking/phonet.txt
6188F: include/linux/phonet.h
6189F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006190F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006191F: net/phonet/
6192
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006194M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195L: linux-mtd@lists.infradead.org
6196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006197F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198
Bruno Prémontefdbb102012-07-30 21:39:03 +02006199PICOLCD HID DRIVER
6200M: Bruno Prémont <bonbons@linux-vserver.org>
6201L: linux-input@vger.kernel.org
6202S: Maintained
6203F: drivers/hid/hid-picolcd*
6204
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006205PICOXCELL SUPPORT
6206M: Jamie Iles <jamie@jamieiles.com>
6207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6208T: git git://github.com/jamieiles/linux-2.6-ji.git
6209S: Supported
6210F: arch/arm/mach-picoxcell
6211F: drivers/*/picoxcell*
6212F: drivers/*/*/picoxcell*
6213
Linus Walleij2744e8a2011-05-02 20:50:54 +02006214PIN CONTROL SUBSYSTEM
6215M: Linus Walleij <linus.walleij@linaro.org>
6216S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006217F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006218F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006219
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006220PIN CONTROLLER - ATMEL AT91
6221M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6222L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6223S: Maintained
6224F: drivers/pinctrl/pinctrl-at91.c
6225
Viresh Kumardeda8282012-03-28 22:27:07 +05306226PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006227M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306228L: spear-devel@list.st.com
6229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6230W: http://www.st.com/spear
6231S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006232F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306233
Peter Osterlund249a6772005-09-27 21:45:30 -07006234PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006235M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006237F: drivers/block/pktcdvd.c
6238F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006239F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006240
GuanXuetaob31d8272011-01-16 00:35:49 +08006241PKUNITY SOC DRIVERS
6242M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6243W: http://mprc.pku.edu.cn/~guanxuetao/linux
6244S: Maintained
6245T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6246F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006247F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006248F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006249F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006250
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006251PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006252M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006253L: lm-sensors@lm-sensors.org
6254W: http://www.lm-sensors.org/
6255W: http://www.roeck-us.net/linux/drivers/
6256T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6257S: Maintained
6258F: Documentation/hwmon/pmbus
6259F: drivers/hwmon/pmbus/
6260F: include/linux/i2c/pmbus.h
6261
Anil Ravindranath89a36812009-08-25 17:35:18 -07006262PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006263M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006264L: linux-scsi@vger.kernel.org
6265W: http://www.pmc-sierra.com/
6266S: Supported
6267F: drivers/scsi/pmcraid.*
6268
jack wangdbf9bfe2009-10-14 16:19:21 +08006269PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006270M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006271M: lindar_liu@usish.com
6272L: linux-scsi@vger.kernel.org
6273S: Supported
6274F: drivers/scsi/pm8001/
6275
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006277M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006278T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006280F: fs/timerfd.c
6281F: include/linux/timer*
6282F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283
Anton Vorontsov3be86142007-07-15 04:43:36 +04006284POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006285M: Anton Vorontsov <cbou@mail.ru>
6286M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006287T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006289F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006290F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006291
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006293M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006294M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006296F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Vitaly Wool999445d2007-01-04 13:07:03 +01006298PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006299M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006300L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006302F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006303
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006305M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306L: linux-ppp@vger.kernel.org
6307S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006308F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309
6310PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006311M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006314F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315
6316PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006317M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006319F: drivers/net/ppp/pppoe.c
6320F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321
James Chapmana6d23702007-06-27 15:53:17 -07006322PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006323M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006324S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006325F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006326F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006327F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006328
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006329PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006330M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006331W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6332L: linuxpps@ml.enneenne.com (subscribers-only)
6333S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006334F: Documentation/pps/
6335F: drivers/pps/
6336F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006337
Harry Wei71a6d0a2011-05-11 15:13:33 -07006338PPTP DRIVER
6339M: Dmitry Kozlov <xeb@mail.ru>
6340L: netdev@vger.kernel.org
6341S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006342F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006343W: http://sourceforge.net/projects/accel-pptp
6344
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006346M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347L: kpreempt-tech@lists.sourceforge.net
6348W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006350F: Documentation/preempt-locking.txt
6351F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352
6353PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006354M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006355L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006356W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006357S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006358F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006360PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006361M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006362L: linux-ide@vger.kernel.org
6363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006364F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006365
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006366PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006367M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006368L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006369L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006370S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006371F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006372
Geoff Levandf58a9d12006-11-23 00:46:51 +01006373PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006374M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006375L: linuxppc-dev@lists.ozlabs.org
6376L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006378F: arch/powerpc/boot/ps3*
6379F: arch/powerpc/include/asm/lv1call.h
6380F: arch/powerpc/include/asm/ps3*.h
6381F: arch/powerpc/platforms/ps3/
6382F: drivers/*/ps3*
6383F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006384F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006385F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006386F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006387
Jim Pariscffb4add2009-01-06 11:32:10 +00006388PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006389M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006390L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006391S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006392F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006393
Anton Vorontsov8defe592012-08-03 18:07:20 -07006394PSTORE FILESYSTEM
6395M: Anton Vorontsov <cbouatmailru@gmail.com>
6396M: Colin Cross <ccross@android.com>
6397M: Kees Cook <keescook@chromium.org>
6398M: Tony Luck <tony.luck@intel.com>
6399S: Maintained
6400T: git git://git.infradead.org/users/cbou/linux-pstore.git
6401F: fs/pstore/
6402F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006403F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006404F: drivers/acpi/apei/erst.c
6405
Richard Cochran7fbc4152012-03-10 01:55:53 +00006406PTP HARDWARE CLOCK SUPPORT
6407M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006408L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006409S: Maintained
6410W: http://linuxptp.sourceforge.net/
6411F: Documentation/ABI/testing/sysfs-ptp
6412F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006413F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006414F: drivers/net/phy/dp83640*
6415F: drivers/ptp/*
6416F: include/linux/ptp_cl*
6417
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006418PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006419M: Roland McGrath <roland@redhat.com>
6420M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006421S: Maintained
6422F: include/asm-generic/syscall.h
6423F: include/linux/ptrace.h
6424F: include/linux/regset.h
6425F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006426F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006427F: kernel/ptrace.c
6428
Michael Krufky83202042006-07-03 00:24:18 -07006429PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006430M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006431L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006432L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006433W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006434T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006436F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006437F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006438
Hans de Goede39532e62012-11-04 17:05:59 -03006439PWC WEBCAM DRIVER
6440M: Hans de Goede <hdegoede@redhat.com>
6441L: linux-media@vger.kernel.org
6442T: git git://linuxtv.org/media_tree.git
6443S: Maintained
6444F: drivers/media/usb/pwc/*
6445
Thierry Reding200efed2012-03-27 13:16:18 +02006446PWM SUBSYSTEM
6447M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006448L: linux-kernel@vger.kernel.org
6449S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006450W: http://gitorious.org/linux-pwm
6451T: git git://gitorious.org/linux-pwm/linux-pwm.git
6452F: Documentation/pwm.txt
6453F: Documentation/devicetree/bindings/pwm/
6454F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006455F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006456F: drivers/video/backlight/pwm_bl.c
6457F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006458
Eric Miao30ec2612008-06-12 15:21:41 -07006459PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006460M: Eric Miao <eric.y.miao@gmail.com>
6461M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006462M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006463L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006464T: git git://github.com/hzhuang1/linux.git
6465T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006467F: arch/arm/mach-pxa/
6468F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006469F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006470F: drivers/usb/gadget/pxa2*
6471F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006472F: sound/arm/pxa*
6473F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006475MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006476M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006477M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006478L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006479T: git git://github.com/hzhuang1/linux.git
6480T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006481S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006482F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006483
Pierre Ossman272f1332007-05-14 21:25:26 +02006484PXA MMCI DRIVER
6485S: Orphan
6486
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006487PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006488M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006489L: rtc-linux@googlegroups.com
6490S: Maintained
6491
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006492QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006493M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006494L: linux-rdma@vger.kernel.org
6495S: Supported
6496F: drivers/infiniband/hw/qib/
6497
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006498QLOGIC QLA1280 SCSI DRIVER
6499M: Michael Reed <mdr@sgi.com>
6500L: linux-scsi@vger.kernel.org
6501S: Maintained
6502F: drivers/scsi/qla1280.[ch]
6503
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006505M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006506M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507L: linux-scsi@vger.kernel.org
6508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006509F: Documentation/scsi/LICENSE.qla2xxx
6510F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511
Ravi Anand883c98f2010-04-28 11:45:49 +05306512QLOGIC QLA4XXX iSCSI DRIVER
6513M: Ravi Anand <ravi.anand@qlogic.com>
6514M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6515M: iscsi-driver@qlogic.com
6516L: linux-scsi@vger.kernel.org
6517S: Supported
6518F: drivers/scsi/qla4xxx/
6519
Ron Mercer5a4faa872006-07-25 00:40:21 -07006520QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006521M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006522M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006523M: linux-driver@qlogic.com
6524L: netdev@vger.kernel.org
6525S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006526F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006527F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006528
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006529QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006530M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6531M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006532M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006533M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006534M: linux-driver@qlogic.com
6535L: netdev@vger.kernel.org
6536S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006537F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006538
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006539QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006540M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006541M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006542M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006543M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006544L: netdev@vger.kernel.org
6545S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006546F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006547
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006549M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550W: http://www.alarsen.net/linux/qnx4fs/
6551S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006552F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006553F: include/uapi/linux/qnx4_fs.h
6554F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555
Antti Palosaari91952bc2012-10-01 12:28:46 -03006556QT1010 MEDIA DRIVER
6557M: Antti Palosaari <crope@iki.fi>
6558L: linux-media@vger.kernel.org
6559W: http://linuxtv.org/
6560W: http://palosaari.fi/linux/
6561Q: http://patchwork.linuxtv.org/project/linux-media/list/
6562T: git git://linuxtv.org/anttip/media_tree.git
6563S: Maintained
6564F: drivers/media/tuners/qt1010*
6565
Richard Kuo4f4567c2011-10-31 18:56:38 -05006566QUALCOMM HEXAGON ARCHITECTURE
6567M: Richard Kuo <rkuo@codeaurora.org>
6568L: linux-hexagon@vger.kernel.org
6569S: Supported
6570F: arch/hexagon/
6571
Hans Verkuil35e35402012-11-23 07:02:29 -03006572QUICKCAM PARALLEL PORT WEBCAMS
6573M: Hans Verkuil <hverkuil@xs4all.nl>
6574L: linux-media@vger.kernel.org
6575T: git git://linuxtv.org/media_tree.git
6576W: http://linuxtv.org
6577S: Odd Fixes
6578F: drivers/media/parport/*-qcam*
6579
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006580RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006581M: Yehuda Sadeh <yehuda@inktank.com>
6582M: Sage Weil <sage@inktank.com>
6583M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006584M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006585W: http://ceph.com/
6586T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006587S: Supported
6588F: drivers/block/rbd.c
6589F: drivers/block/rbd_types.h
6590
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006592M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006593L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006595F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006596F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597
Hans de Goedec6c9b342012-11-04 17:03:58 -03006598RADIOSHARK RADIO DRIVER
6599M: Hans de Goede <hdegoede@redhat.com>
6600L: linux-media@vger.kernel.org
6601T: git git://linuxtv.org/media_tree.git
6602S: Maintained
6603F: drivers/media/radio/radio-shark.c
6604
6605RADIOSHARK2 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-shark2.c
6611F: drivers/media/radio/radio-tea5777.c
6612
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006614M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006615L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006617F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006618
Randy Dunlape7839f22008-10-12 16:11:45 -07006619RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006620P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006621M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006622M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006623M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006624L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006625L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006626W: http://rt2x00.serialmonkey.com/
6627S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006628T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006629F: drivers/net/wireless/rt2x00/
6630
Nick Piggin9db55792008-02-08 04:19:49 -08006631RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006632M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006634F: Documentation/blockdev/ramdisk.txt
6635F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006636
Matt Mackall9e95ce22005-04-16 15:25:56 -07006637RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006638M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006640F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006641
Matt Porter394b7012005-11-07 01:00:15 -08006642RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006643M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006644M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006646F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006647
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006648RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006649L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006650S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006651F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006652
6653RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: Josh Triplett <josh@freedesktop.org>
6655M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006656S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006657T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006658F: Documentation/RCU/torture.txt
6659F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006660
Florian Fainellic1f766b2008-02-06 22:39:44 +01006661RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006662M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006663S: Maintained
6664
Florian Fainellidb17f392007-12-19 11:30:30 +01006665RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006666M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006667L: netdev@vger.kernel.org
6668S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006669F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006670
Andy Grovera09ed662009-02-24 15:30:41 +00006671RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006672M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006673L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006674S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006675F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006676
Josh Triplett595182b2006-10-04 02:17:21 -07006677READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Dipankar Sarma <dipankar@in.ibm.com>
6679M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006680W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006681S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006682T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006683F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006684X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006685F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006686F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006687X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006688
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006689REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006690M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006691L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006692Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006694F: Documentation/rtc.txt
6695F: drivers/rtc/
6696F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006697F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006698
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006700L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006702F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703
Mark Brownb83a3132011-05-11 19:59:58 +02006704REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006705M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006706T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6707S: Supported
6708F: drivers/base/regmap/
6709F: include/linux/regmap.h
6710
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006711REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6712M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006713T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006714S: Maintained
6715F: drivers/remoteproc/
6716F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006717F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006718
Ivo van Doorne08976452008-04-12 19:23:55 +02006719RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006720M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006721L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006722W: http://wireless.kernel.org/
6723T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6724T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006725S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006726F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006727F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006728
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006729RICOH SMARTMEDIA/XD DRIVER
6730M: Maxim Levitsky <maximlevitsky@gmail.com>
6731S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006732F: drivers/mtd/nand/r852.c
6733F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006734
Maxim Levitsky92634122011-03-25 01:56:59 -07006735RICOH R5C592 MEMORYSTICK DRIVER
6736M: Maxim Levitsky <maximlevitsky@gmail.com>
6737S: Maintained
6738F: drivers/memstick/host/r592.*
6739
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740ROCKETPORT DRIVER
6741P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742W: http://www.comtrol.com
6743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006744F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006745F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746
6747ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006748M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006750W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006752F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006753F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006754F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755
Antti Palosaari91952bc2012-10-01 12:28:46 -03006756RTL2830 MEDIA DRIVER
6757M: Antti Palosaari <crope@iki.fi>
6758L: linux-media@vger.kernel.org
6759W: http://linuxtv.org/
6760W: http://palosaari.fi/linux/
6761Q: http://patchwork.linuxtv.org/project/linux-media/list/
6762T: git git://linuxtv.org/anttip/media_tree.git
6763S: Maintained
6764F: drivers/media/dvb-frontends/rtl2830*
6765
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006766RTL2832 MEDIA DRIVER
6767M: Antti Palosaari <crope@iki.fi>
6768L: linux-media@vger.kernel.org
6769W: http://linuxtv.org/
6770W: http://palosaari.fi/linux/
6771Q: http://patchwork.linuxtv.org/project/linux-media/list/
6772T: git git://linuxtv.org/anttip/media_tree.git
6773S: Maintained
6774F: drivers/media/dvb-frontends/rtl2832*
6775
Larry Finger59840482008-11-12 17:13:09 -06006776RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006777M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006778L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006779W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006780T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006781S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006782F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006783
Larry Finger59840482008-11-12 17:13:09 -06006784RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006785M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006786M: Hin-Tak Leung <htl10@users.sourceforge.net>
6787M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006788L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006789W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006790T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006791S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006792F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006793
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006794RTL8192CE WIRELESS DRIVER
6795M: Larry Finger <Larry.Finger@lwfinger.net>
6796M: Chaoming Li <chaoming_li@realsil.com.cn>
6797L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006798W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006799T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6800S: Maintained
6801F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006802F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006803
6804S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006805M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006806L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006808F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006809
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810S390
Joe Perches8b58be82009-07-29 15:04:30 -07006811M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6812M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006814L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006815W: http://www.ibm.com/developerworks/linux/linux390/
6816S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006817F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006818F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006819F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006820F: Documentation/s390/
6821F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006822
6823S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006824M: Ursula Braun <ursula.braun@de.ibm.com>
6825M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006826M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006827L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006828W: http://www.ibm.com/developerworks/linux/linux390/
6829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006830F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006831
Felix Beckfeed9b62009-03-26 15:24:23 +01006832S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006833M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006834M: linux390@de.ibm.com
6835L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006836W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006837S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006838F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006839
Heiko Carstens5238da42006-02-11 17:56:01 -08006840S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006841M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006842M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006843L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006844W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006846F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847
Ursula Braundd96df22007-09-19 13:09:02 +02006848S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006849M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006850M: linux390@de.ibm.com
6851L: linux-s390@vger.kernel.org
6852W: http://www.ibm.com/developerworks/linux/linux390/
6853S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006854F: drivers/s390/net/*iucv*
6855F: include/net/iucv/
6856F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006857
Ben Dooks4dde7f72008-06-30 22:40:38 +01006858S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006859M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006860L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006861S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006862F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006863
Hans Verkuil1f15a222012-11-23 07:45:29 -03006864SAA6588 RDS RECEIVER DRIVER
6865M: Hans Verkuil <hverkuil@xs4all.nl>
6866L: linux-media@vger.kernel.org
6867T: git git://linuxtv.org/media_tree.git
6868W: http://linuxtv.org
6869S: Odd Fixes
6870F: drivers/media/i2c/saa6588*
6871
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006872SAA7134 VIDEO4LINUX DRIVER
6873M: Mauro Carvalho Chehab <mchehab@redhat.com>
6874L: linux-media@vger.kernel.org
6875W: http://linuxtv.org
6876T: git git://linuxtv.org/media_tree.git
6877S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006878F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006879F: drivers/media/pci/saa7134/
6880
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006882M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006883L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006884T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006886F: drivers/media/common/saa7146/
6887F: drivers/media/pci/saa7146/
6888F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889
Corentin Chary92304a42011-12-05 12:38:35 -05006890SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006891M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006892L: platform-driver-x86@vger.kernel.org
6893S: Maintained
6894F: drivers/platform/x86/samsung-laptop.c
6895
Mark Brown4a109cc2010-09-24 10:50:46 +01006896SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006897M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006898L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6899S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006900F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006901
Jingoo Han0d89a282011-12-19 11:09:35 +09006902SAMSUNG FRAMEBUFFER DRIVER
6903M: Jingoo Han <jg1.han@samsung.com>
6904L: linux-fbdev@vger.kernel.org
6905S: Maintained
6906F: drivers/video/s3c-fb.c
6907
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006908SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6909M: Sangbeom Kim <sbkim73@samsung.com>
6910L: linux-kernel@vger.kernel.org
6911S: Supported
6912F: drivers/mfd/sec*.c
6913F: drivers/regulator/s2m*.c
6914F: drivers/regulator/s5m*.c
6915F: drivers/rtc/rtc-sec.c
6916F: include/linux/mfd/samsung/
6917
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006918SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6919M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6920L: linux-media@vger.kernel.org
6921L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6922S: Maintained
6923F: drivers/media/platform/s3c-camif/
6924F: include/media/s3c_camif.h
6925
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006926SAMSUNG S5C73M3 CAMERA DRIVER
6927M: Kyungmin Park <kyungmin.park@samsung.com>
6928M: Andrzej Hajda <a.hajda@samsung.com>
6929L: linux-media@vger.kernel.org
6930S: Supported
6931F: drivers/media/i2c/s5c73m3/*
6932
Alan Coxca749e22011-03-18 13:56:14 +00006933SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006934M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006935L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006936S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006937F: drivers/tty/serial
6938
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306939SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006940M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306941S: Maintained
6942F: include/linux/dw_dmac.h
6943F: drivers/dma/dw_dmac_regs.h
6944F: drivers/dma/dw_dmac.c
6945
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006946SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6947M: Seungwon Jeon <tgih.jun@samsung.com>
6948M: Jaehoon Chung <jh80.chung@samsung.com>
6949L: linux-mmc@vger.kernel.org
6950S: Maintained
6951F: include/linux/mmc/dw_mmc.h
6952F: drivers/mmc/host/dw_mmc*
6953
Thomas Gleixner88606e82010-12-14 21:37:13 +01006954TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006955M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006956M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006957T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006958S: Supported
6959F: include/linux/clocksource.h
6960F: include/linux/time.h
6961F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006962F: include/uapi/linux/time.h
6963F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006964F: kernel/time/clocksource.c
6965F: kernel/time/time*.c
6966F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006967F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006968
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006969TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006970M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006971M: Hans Verkuil <hverkuil@xs4all.nl>
6972S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006973F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006974
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006976M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006978F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979
6980SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006981M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006982M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006983T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006985F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006986F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006987F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006988
Chen Liqin6bcf6732009-06-13 15:24:33 +08006989SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006990M: Chen Liqin <liqin.chen@sunplusct.com>
6991M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006992W: http://www.sunplusct.com
6993S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006994F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006995
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006997M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998L: linux-scsi@vger.kernel.org
6999W: http://www.kernel.dk
7000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007001F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002
Roland Dreierfb50a832010-10-07 09:54:53 -07007003SCSI RDMA PROTOCOL (SRP) INITIATOR
7004M: David Dillow <dillowda@ornl.gov>
7005L: linux-rdma@vger.kernel.org
7006S: Supported
7007W: http://www.openfabrics.org
7008Q: http://patchwork.kernel.org/project/linux-rdma/list/
7009T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7010F: drivers/infiniband/ulp/srp/
7011F: include/scsi/srp.h
7012
Linus Torvalds1da177e2005-04-16 15:20:36 -07007013SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007014M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015L: linux-scsi@vger.kernel.org
7016W: http://www.torque.net/sg
7017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007018F: drivers/scsi/sg.c
7019F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020
7021SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007022M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007024T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7025T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7026T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007028F: drivers/scsi/
7029F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030
7031SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007032M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007033L: linux-scsi@vger.kernel.org
7034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007035F: Documentation/scsi/st.txt
7036F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
7038SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007039M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007040M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007041L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007042W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007044F: Documentation/networking/sctp.txt
7045F: include/linux/sctp.h
7046F: include/net/sctp/
7047F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048
7049SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007051S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007052F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007053F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007054F: drivers/watchdog/scx200_wdt.c
7055F: drivers/i2c/busses/scx200*
7056F: drivers/mtd/maps/scx200_docflash.c
7057F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007058
7059SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007060M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007062F: drivers/char/scx200_gpio.c
7063F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007064
7065SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007066M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007068F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069
Sascha Sommer6a369132008-07-15 14:21:29 +02007070SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007071M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007072L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007074F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007075
Randy Dunlape7839f22008-10-12 16:11:45 -07007076SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007077M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007078L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007079T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7080S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007081F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007082F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007083
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007084SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007085M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007086L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007087L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007089F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090
Ben Dooks0d1bb412009-06-14 13:52:37 +01007091SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007092M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007093L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007094S: Maintained
7095F: drivers/mmc/host/sdhci-s3c.c
7096
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007097SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007098M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007099L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007100L: linux-mmc@vger.kernel.org
7101S: Maintained
7102F: drivers/mmc/host/sdhci-spear.c
7103
James Morris8711cca2008-12-04 03:19:45 +11007104SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007105M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007106L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007107T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007108W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007109S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007110F: security/
James Morris8711cca2008-12-04 03:19:45 +11007111
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007113M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114S: Supported
7115
7116SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007117M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007118M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007119M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007120L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007121W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007122T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007124F: include/linux/selinux*
7125F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007126F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127
John Johansenc1c124e2010-07-29 14:48:09 -07007128APPARMOR SECURITY MODULE
7129M: John Johansen <john.johansen@canonical.com>
7130L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7131W: apparmor.wiki.kernel.org
7132T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7133S: Supported
7134F: security/apparmor/
7135
Jiri Slabycef2cf02007-05-08 00:31:45 -07007136SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007137M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007139F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007140F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007141
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007142SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007143M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007145T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007147F: drivers/ata/
7148F: include/linux/ata.h
7149F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307151SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007152M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007153L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007154W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007155S: Supported
7156F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307157
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007158SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007159M: Sathya Perla <sathya.perla@emulex.com>
7160M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7161M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007162L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007163W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007164S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007165F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007166
Ben Hutchings8ceee662008-04-27 12:55:59 +01007167SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007168M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007169M: Ben Hutchings <bhutchings@solarflare.com>
7170L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007171S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007172F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007173
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007174SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007175M: Dimitri Sivanich <sivanich@sgi.com>
7176M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007178F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007179
7180SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007181M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007182L: linux-ia64@vger.kernel.org
7183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007184F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007185F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007186F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007187
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007189M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190L: linux-visws-devel@lists.sf.net
7191W: http://linux-visws.sf.net
7192S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007193F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194
Jack Steiner75312612008-08-15 00:40:42 -07007195SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007196M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007198F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007199
Hans Verkuil49cc6292012-11-30 07:13:29 -03007200SI470X FM RADIO RECEIVER I2C DRIVER
7201M: Hans Verkuil <hverkuil@xs4all.nl>
7202L: linux-media@vger.kernel.org
7203T: git git://linuxtv.org/media_tree.git
7204W: http://linuxtv.org
7205S: Odd Fixes
7206F: drivers/media/radio/si470x/radio-si470x-i2c.c
7207
7208SI470X FM RADIO RECEIVER USB DRIVER
7209M: Hans Verkuil <hverkuil@xs4all.nl>
7210L: linux-media@vger.kernel.org
7211T: git git://linuxtv.org/media_tree.git
7212W: http://linuxtv.org
7213S: Maintained
7214F: drivers/media/radio/si470x/radio-si470x-common.c
7215F: drivers/media/radio/si470x/radio-si470x.h
7216F: drivers/media/radio/si470x/radio-si470x-usb.c
7217
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007218SI4713 FM RADIO TRANSMITTER I2C DRIVER
7219M: Eduardo Valentin <edubezval@gmail.com>
7220L: linux-media@vger.kernel.org
7221T: git git://linuxtv.org/media_tree.git
7222W: http://linuxtv.org
7223S: Odd Fixes
7224F: drivers/media/radio/si4713-i2c.?
7225
7226SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7227M: Eduardo Valentin <edubezval@gmail.com>
7228L: linux-media@vger.kernel.org
7229T: git git://linuxtv.org/media_tree.git
7230W: http://linuxtv.org
7231S: Odd Fixes
7232F: drivers/media/radio/radio-si4713.h
7233
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007234SIANO DVB DRIVER
7235M: Mauro Carvalho Chehab <mchehab@redhat.com>
7236L: linux-media@vger.kernel.org
7237W: http://linuxtv.org
7238T: git git://linuxtv.org/media_tree.git
7239S: Odd fixes
7240F: drivers/media/common/siano/
7241F: drivers/media/dvb/siano/
7242F: drivers/media/usb/siano/
7243F: drivers/media/mmc/siano
7244
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007245SH_VEU V4L2 MEM2MEM DRIVER
7246M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7247L: linux-media@vger.kernel.org
7248S: Maintained
7249F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007250
7251SH_VOU V4L2 OUTPUT DRIVER
7252M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7253L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007254S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007255F: drivers/media/platform/sh_vou.c
7256F: include/media/sh_vou.h
7257
Len Brown6349d992009-08-14 15:07:14 -04007258SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007259M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007260L: sfi-devel@simplefirmware.org
7261W: http://simplefirmware.org/
7262T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007263S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007264F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007265F: drivers/sfi/
7266F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007267
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268SIMTEC EB110ATX (Chalice CATS)
7269P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007270P: Vincent Sanders <vince@simtec.co.uk>
7271M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272W: http://www.simtec.co.uk/products/EB110ATX/
7273S: Supported
7274
7275SIMTEC EB2410ITX (BAST)
7276P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007277P: Vincent Sanders <vince@simtec.co.uk>
7278M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279W: http://www.simtec.co.uk/products/EB2410ITX/
7280S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007281F: arch/arm/mach-s3c2410/mach-bast.c
7282F: arch/arm/mach-s3c2410/bast-ide.c
7283F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007285TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007286M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007287M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307288L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307289T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007290Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007291S: Supported
7292F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007293F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007294
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007295TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007296M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007297L: linux-media@vger.kernel.org
7298L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7299W: http://linuxtv.org/
7300Q: http://patchwork.linuxtv.org/project/linux-media/list/
7301T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007302S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007303F: drivers/media/platform/davinci/
7304F: include/media/davinci/
7305
Francois Romieu92aab3c2005-07-30 13:11:18 +02007306SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007307M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007308L: netdev@vger.kernel.org
7309S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007310F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007311
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007313M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007314W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007315L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007317F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318
7319SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007320M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007323F: Documentation/fb/sisfb.txt
7324F: drivers/video/sis/
7325F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326
7327SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007328M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329W: http://www.winischhofer.at/linuxsisusbvga.shtml
7330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007331F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007333SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007334M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007335M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007336M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007337L: linux-mm@kvack.org
7338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007339F: include/linux/sl?b*.h
7340F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007341
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007342SLEEPABLE READ-COPY UPDATE (SRCU)
7343M: Lai Jiangshan <laijs@cn.fujitsu.com>
7344M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7345W: http://www.rdrop.com/users/paulmck/RCU/
7346S: Supported
7347T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7348F: include/linux/srcu*
7349F: kernel/srcu*
7350
Casey Schaufler66372842012-05-23 18:34:52 -07007351SMACK SECURITY MODULE
7352M: Casey Schaufler <casey@schaufler-ca.com>
7353L: linux-security-module@vger.kernel.org
7354W: http://schaufler-ca.com
7355T: git git://git.gitorious.org/smack-next/kernel.git
7356S: Maintained
7357F: Documentation/security/Smack.txt
7358F: security/smack/
7359
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007361M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007362S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007363F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364
Sakari Ailuse8e31622012-11-12 18:14:39 -03007365SMIA AND SMIA++ IMAGE SENSOR DRIVER
7366M: Sakari Ailus <sakari.ailus@iki.fi>
7367L: linux-media@vger.kernel.org
7368S: Maintained
7369F: drivers/media/i2c/smiapp
7370F: include/media/smiapp.h
7371F: drivers/media/i2c/smiapp-pll.c
7372F: drivers/media/i2c/smiapp-pll.h
7373
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007374SMM665 HARDWARE MONITOR DRIVER
7375M: Guenter Roeck <linux@roeck-us.net>
7376L: lm-sensors@lm-sensors.org
7377S: Maintained
7378F: Documentation/hwmon/smm665
7379F: drivers/hwmon/smm665.c
7380
Steve Glendinning9df73052010-08-14 21:08:54 +02007381SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007382M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007383L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007384S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007385F: Documentation/hwmon/emc2103
7386F: drivers/hwmon/emc2103.c
7387
Hans de Goedea98d5062011-03-21 17:59:36 +01007388SMSC SCH5627 HARDWARE MONITOR DRIVER
7389M: Hans de Goede <hdegoede@redhat.com>
7390L: lm-sensors@lm-sensors.org
7391S: Supported
7392F: Documentation/hwmon/sch5627
7393F: drivers/hwmon/sch5627.c
7394
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007395SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007396M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007397L: lm-sensors@lm-sensors.org
7398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007399F: Documentation/hwmon/smsc47b397
7400F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007401
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007402SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007403M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007404L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007406F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007407F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007408
Steve Glendinning2cb37722008-12-11 20:54:30 -08007409SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007410M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007411L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007412S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007413F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007414
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007415SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007416M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007417L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007418S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007419F: drivers/video/smscufx.c
7420
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007421SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007422M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007423L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007424T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007425S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007426F: include/media/soc*
7427F: drivers/media/i2c/soc_camera/
7428F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007429
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007430SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007431M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007433F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007434
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007436M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007439F: drivers/md/
7440F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007441F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007442
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007444M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007445L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007447F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448
Michael Buesch61e115a2007-09-18 15:12:50 -04007449SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007450M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007451L: netdev@vger.kernel.org
7452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007453F: drivers/ssb/
7454F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007455
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007457M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007458L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007459W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007461F: Documentation/laptops/sony-laptop.txt
7462F: drivers/char/sonypi.c
7463F: drivers/platform/x86/sony-laptop.c
7464F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465
Alex Dubovbaf85322008-02-09 10:20:54 -08007466SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007467M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007468W: http://tifmxx.berlios.de/
7469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007470F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007471
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007473M: Jaroslav Kysela <perex@perex.cz>
7474M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007475L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007476W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007477T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007478T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007480F: Documentation/sound/
7481F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007482F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007483F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484
Mark Brownbd903bd2008-11-19 19:16:05 +00007485SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007486M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007487M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007488T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007489L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007490W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007492F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007493F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007494
Sam Ravnborg473321f2009-01-04 15:47:49 -08007495SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007496M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007498Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007499T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7500T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007502F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007503F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504
David S. Miller6404fcc2010-03-16 01:00:17 -07007505SPARC SERIAL DRIVERS
7506M: "David S. Miller" <davem@davemloft.net>
7507L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007508T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7509T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007510S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007511F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007512F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007513F: drivers/tty/serial/sunhv.c
7514F: drivers/tty/serial/sunsab.c
7515F: drivers/tty/serial/sunsab.h
7516F: drivers/tty/serial/sunsu.c
7517F: drivers/tty/serial/sunzilog.c
7518F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007519
Christopher Li389325b2012-04-05 14:25:14 -07007520SPARSE CHECKER
7521M: "Christopher Li" <sparse@chrisli.org>
7522L: linux-sparse@vger.kernel.org
7523W: https://sparse.wiki.kernel.org/
7524T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7525T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7526S: Maintained
7527F: include/linux/compiler.h
7528
viresh kumarfc0c1952010-04-01 12:31:21 +01007529SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007530M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307531M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007532L: spear-devel@list.st.com
7533L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007534W: http://www.st.com/spear
7535S: Maintained
7536F: arch/arm/plat-spear/
7537
Viresh Kumar71e09a92012-04-20 22:39:48 +05307538SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007539M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307540M: Shiraz Hashim <shiraz.hashim@st.com>
7541L: spear-devel@list.st.com
7542L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7543W: http://www.st.com/spear
7544S: Maintained
7545F: arch/arm/mach-spear13xx/
7546
viresh kumarfc0c1952010-04-01 12:31:21 +01007547SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007548M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307549M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007550L: spear-devel@list.st.com
7551L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007552W: http://www.st.com/spear
7553S: Maintained
7554F: arch/arm/mach-spear3xx/
7555
7556SPEAR6XX MACHINE SUPPORT
7557M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307558M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007559M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007560L: spear-devel@list.st.com
7561L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007562W: http://www.st.com/spear
7563S: Maintained
7564F: arch/arm/mach-spear6xx/
7565
7566SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007567M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007568L: spear-devel@list.st.com
7569L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007570W: http://www.st.com/spear
7571S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307572F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007573
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007574SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007575M: Mark Brown <broonie@kernel.org>
Grant Likely19624232013-04-08 11:51:42 +01007576M: Grant Likely <grant.likely@linaro.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007577L: spi-devel-general@lists.sourceforge.net
Mark Browne7e4e132013-04-18 18:18:47 +01007578T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007579Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007581F: Documentation/spi/
7582F: drivers/spi/
7583F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007584F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007585
Jim Lewis2752e402006-09-29 02:01:19 -07007586SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007587M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7588M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007589L: netdev@vger.kernel.org
7590S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007591F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007592F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007593
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007594SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007595M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007596L: linuxppc-dev@lists.ozlabs.org
7597L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007598W: http://www.ibm.com/developerworks/power/cell/
7599S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007600F: Documentation/filesystems/spufs.txt
7601F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007602
Phillip Lougherfc555842009-01-05 08:46:29 +00007603SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007604M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007605L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7606W: http://squashfs.org.uk
7607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007608F: Documentation/filesystems/squashfs.txt
7609F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007610
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007612M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007614F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615
Linus Torvalds26e9a392008-10-17 09:50:12 -07007616STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007617M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007618L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007619S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007620
Linus Torvalds26e9a392008-10-17 09:50:12 -07007621STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007622M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007623T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007624L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007626F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007627
Joe Perchesc8c8b102011-07-05 09:42:12 -07007628STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7629M: Henk de Groot <pe1dnn@amsat.org>
7630S: Odd Fixes
7631F: drivers/staging/wlags49_h2/
7632F: drivers/staging/wlags49_h25/
7633
Joe Perchesc9555152011-07-05 09:42:01 -07007634STAGING - ASUS OLED
7635M: Jakub Schmidtke <sjakub@gmail.com>
7636S: Odd Fixes
7637F: drivers/staging/asus_oled/
7638
Joe Perchesebd3d012011-07-05 09:42:02 -07007639STAGING - COMEDI
7640M: Ian Abbott <abbotti@mev.co.uk>
7641M: Mori Hess <fmhess@users.sourceforge.net>
7642S: Odd Fixes
7643F: drivers/staging/comedi/
7644
Joe Perches8ca572c2011-07-05 09:42:03 -07007645STAGING - CRYSTAL HD VIDEO DECODER
7646M: Naren Sankar <nsankar@broadcom.com>
7647M: Jarod Wilson <jarod@wilsonet.com>
7648M: Scott Davilla <davilla@4pi.com>
7649M: Manu Abraham <abraham.manu@gmail.com>
7650S: Odd Fixes
7651F: drivers/staging/crystalhd/
7652
Joe Perches0f16ffc2011-07-05 09:42:04 -07007653STAGING - ECHO CANCELLER
7654M: Steve Underwood <steveu@coppice.org>
7655M: David Rowe <david@rowetel.com>
7656S: Odd Fixes
7657F: drivers/staging/echo/
7658
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007659STAGING - ET131X NETWORK DRIVER
7660M: Mark Einon <mark.einon@gmail.com>
7661S: Odd Fixes
7662F: drivers/staging/et131x/
7663
Joe Perchesa0138162011-07-05 15:21:34 -07007664STAGING - FLARION FT1000 DRIVERS
7665M: Marek Belisko <marek.belisko@gmail.com>
7666S: Odd Fixes
7667F: drivers/staging/ft1000/
7668
Joe Perchesec3fab92011-07-05 09:42:05 -07007669STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7670M: David Täht <d@teklibre.com>
7671S: Odd Fixes
7672F: drivers/staging/frontier/
7673
Hans Verkuil98ded592013-03-09 12:59:44 -03007674STAGING - GO7007 MPEG CODEC
7675M: Hans Verkuil <hans.verkuil@cisco.com>
7676S: Maintained
7677F: drivers/staging/media/go7007/
7678
Joe Perches6c1bb422011-07-05 09:42:07 -07007679STAGING - INDUSTRIAL IO
7680M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007681L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007682S: Odd Fixes
7683F: drivers/staging/iio/
7684
Joe Perchesa0138162011-07-05 15:21:34 -07007685STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7686M: Jarod Wilson <jarod@wilsonet.com>
7687W: http://www.lirc.org/
7688S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007689F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007690
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007691STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007692M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007693M: Marc Dietrich <marvin24@gmx.de>
7694L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007695L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007696S: Maintained
7697F: drivers/staging/nvec/
7698
Joe Perchesa0138162011-07-05 15:21:34 -07007699STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7700M: Andres Salomon <dilinger@queued.net>
7701M: Chris Ball <cjb@laptop.org>
7702M: Jon Nettleton <jon.nettleton@gmail.com>
7703W: http://wiki.laptop.org/go/DCON
7704S: Odd Fixes
7705F: drivers/staging/olpc_dcon/
7706
Chris Kelly94cfdd12012-03-14 10:55:42 +00007707STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007708M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007709S: Maintained
7710F: drivers/staging/ozwpan/
7711
Joe Perchesa0138162011-07-05 15:21:34 -07007712STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007713M: Willy Tarreau <willy@meta-x.org>
7714S: Odd Fixes
7715F: drivers/staging/panel/
7716
Joe Perchesa0138162011-07-05 15:21:34 -07007717STAGING - REALTEK RTL8712U DRIVERS
7718M: Larry Finger <Larry.Finger@lwfinger.net>
7719M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7720S: Odd Fixes
7721F: drivers/staging/rtl8712/
7722
Joe Perches9629fa82011-07-05 09:42:09 -07007723STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7724M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7725S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007726F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007727
Joe Perchesa0138162011-07-05 15:21:34 -07007728STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007729M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7730S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007731F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007732
7733STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7734M: William Hubbs <w.d.hubbs@gmail.com>
7735M: Chris Brannon <chris@the-brannons.com>
7736M: Kirk Reiser <kirk@braille.uwo.ca>
7737M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7738L: speakup@braille.uwo.ca
7739W: http://www.linux-speakup.org/
7740S: Odd Fixes
7741F: drivers/staging/speakup/
7742
7743STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007744M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007745S: Odd Fixes
7746F: drivers/staging/tidspbridge/
7747
Joe Perchesa0138162011-07-05 15:21:34 -07007748STAGING - USB ENE SM/MS CARD READER DRIVER
7749M: Al Cho <acho@novell.com>
7750S: Odd Fixes
7751F: drivers/staging/keucr/
7752
Joe Perchesb3e871c2011-07-05 09:42:10 -07007753STAGING - VIA VT665X DRIVERS
7754M: Forest Bond <forest@alittletooquiet.net>
7755S: Odd Fixes
7756F: drivers/staging/vt665?/
7757
Joe Perches81a9a522011-07-05 09:42:11 -07007758STAGING - WINBOND IS89C35 WLAN USB DRIVER
7759M: Pavel Machek <pavel@ucw.cz>
7760S: Odd Fixes
7761F: drivers/staging/winbond/
7762
Joe Perches709bcb02011-07-05 09:42:13 -07007763STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007764M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007765S: Odd Fixes
7766F: drivers/staging/xgifb/
7767
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007769M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007770S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007771F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007773SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007774M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007775W: http://sammy.net/sun3/
7776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007777F: arch/m68k/kernel/*sun3*
7778F: arch/m68k/sun3*/
7779F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007780F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007781
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007782SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007783M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007784L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007786Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007787T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007788S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007789F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007790F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007791F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007793SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007794M: Len Brown <len.brown@intel.com>
7795M: Pavel Machek <pavel@ucw.cz>
7796M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007797L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007798S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007799F: Documentation/power/
7800F: arch/x86/kernel/acpi/
7801F: drivers/base/power/
7802F: kernel/power/
7803F: include/linux/suspend.h
7804F: include/linux/freezer.h
7805F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806
7807SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007808M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809L: linux-video@atrey.karlin.mff.cuni.cz
7810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007811F: Documentation/svga.txt
7812F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007814SWIOTLB SUBSYSTEM
7815M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7816L: linux-kernel@vger.kernel.org
7817S: Supported
7818F: lib/swiotlb.c
7819F: arch/*/kernel/pci-swiotlb.c
7820F: include/linux/swiotlb.h
7821
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307822SYNOPSYS ARC ARCHITECTURE
7823M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307824S: Supported
7825F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307826F: Documentation/devicetree/bindings/arc/
7827F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307828
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007830M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007832F: Documentation/filesystems/sysv-fs.txt
7833F: fs/sysv/
7834F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007836TARGET SUBSYSTEM
7837M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7838L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007839L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007840L: http://groups.google.com/group/linux-iscsi-target-dev
7841W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007842T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007843S: Supported
7844F: drivers/target/
7845F: include/target/
7846F: Documentation/target/
7847
Alan Cox4e688522008-04-30 00:52:11 -07007848TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007849M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007851F: Documentation/accounting/taskstats*
7852F: include/linux/taskstats*
7853F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007854
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007855TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007856M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007857L: netdev@vger.kernel.org
7858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007859F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007860F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007861F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007862
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007863TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007864M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7865M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007866W: http://tcp-lp-mod.sourceforge.net/
7867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007868F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007869
Antti Palosaari91952bc2012-10-01 12:28:46 -03007870TDA10071 MEDIA DRIVER
7871M: Antti Palosaari <crope@iki.fi>
7872L: linux-media@vger.kernel.org
7873W: http://linuxtv.org/
7874W: http://palosaari.fi/linux/
7875Q: http://patchwork.linuxtv.org/project/linux-media/list/
7876T: git git://linuxtv.org/anttip/media_tree.git
7877S: Maintained
7878F: drivers/media/dvb-frontends/tda10071*
7879
7880TDA18212 MEDIA DRIVER
7881M: Antti Palosaari <crope@iki.fi>
7882L: linux-media@vger.kernel.org
7883W: http://linuxtv.org/
7884W: http://palosaari.fi/linux/
7885Q: http://patchwork.linuxtv.org/project/linux-media/list/
7886T: git git://linuxtv.org/anttip/media_tree.git
7887S: Maintained
7888F: drivers/media/tuners/tda18212*
7889
7890TDA18218 MEDIA DRIVER
7891M: Antti Palosaari <crope@iki.fi>
7892L: linux-media@vger.kernel.org
7893W: http://linuxtv.org/
7894W: http://palosaari.fi/linux/
7895Q: http://patchwork.linuxtv.org/project/linux-media/list/
7896T: git git://linuxtv.org/anttip/media_tree.git
7897S: Maintained
7898F: drivers/media/tuners/tda18218*
7899
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007900TDA18271 MEDIA DRIVER
7901M: Michael Krufky <mkrufky@linuxtv.org>
7902L: linux-media@vger.kernel.org
7903W: http://linuxtv.org/
7904W: http://github.com/mkrufky
7905Q: http://patchwork.linuxtv.org/project/linux-media/list/
7906T: git git://linuxtv.org/mkrufky/tuners.git
7907S: Maintained
7908F: drivers/media/tuners/tda18271*
7909
Michael Krufkye48307a2012-10-02 00:56:33 -03007910TDA827x MEDIA DRIVER
7911M: Michael Krufky <mkrufky@linuxtv.org>
7912L: linux-media@vger.kernel.org
7913W: http://linuxtv.org/
7914W: http://github.com/mkrufky
7915Q: http://patchwork.linuxtv.org/project/linux-media/list/
7916T: git git://linuxtv.org/mkrufky/tuners.git
7917S: Maintained
7918F: drivers/media/tuners/tda8290.*
7919
Michael Krufky66cf9212012-10-02 00:56:28 -03007920TDA8290 MEDIA DRIVER
7921M: Michael Krufky <mkrufky@linuxtv.org>
7922L: linux-media@vger.kernel.org
7923W: http://linuxtv.org/
7924W: http://github.com/mkrufky
7925Q: http://patchwork.linuxtv.org/project/linux-media/list/
7926T: git git://linuxtv.org/mkrufky/tuners.git
7927S: Maintained
7928F: drivers/media/tuners/tda8290.*
7929
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007930TDA9840 MEDIA DRIVER
7931M: Hans Verkuil <hverkuil@xs4all.nl>
7932L: linux-media@vger.kernel.org
7933T: git git://linuxtv.org/media_tree.git
7934W: http://linuxtv.org
7935S: Maintained
7936F: drivers/media/i2c/tda9840*
7937
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007938TEA5761 TUNER DRIVER
7939M: Mauro Carvalho Chehab <mchehab@redhat.com>
7940L: linux-media@vger.kernel.org
7941W: http://linuxtv.org
7942T: git git://linuxtv.org/media_tree.git
7943S: Odd fixes
7944F: drivers/media/tuners/tea5761.*
7945
7946TEA5767 TUNER DRIVER
7947M: Mauro Carvalho Chehab <mchehab@redhat.com>
7948L: linux-media@vger.kernel.org
7949W: http://linuxtv.org
7950T: git git://linuxtv.org/media_tree.git
7951S: Maintained
7952F: drivers/media/tuners/tea5767.*
7953
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007954TEA6415C MEDIA DRIVER
7955M: Hans Verkuil <hverkuil@xs4all.nl>
7956L: linux-media@vger.kernel.org
7957T: git git://linuxtv.org/media_tree.git
7958W: http://linuxtv.org
7959S: Maintained
7960F: drivers/media/i2c/tea6415c*
7961
7962TEA6420 MEDIA DRIVER
7963M: Hans Verkuil <hverkuil@xs4all.nl>
7964L: linux-media@vger.kernel.org
7965T: git git://linuxtv.org/media_tree.git
7966W: http://linuxtv.org
7967S: Maintained
7968F: drivers/media/i2c/tea6420*
7969
Jiri Pirko3d249d42011-11-11 22:16:48 +00007970TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007971M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007972L: netdev@vger.kernel.org
7973S: Supported
7974F: drivers/net/team/
7975F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007976F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007977
Vivien Didelot7d029122013-01-04 16:18:14 -05007978TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7979M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7980S: Maintained
7981F: arch/x86/platform/ts5500/
7982
Sean Young40ad4a32012-11-19 10:32:53 -03007983TECHNOTREND USB IR RECEIVER
7984M: Sean Young <sean@mess.org>
7985L: linux-media@vger.kernel.org
7986S: Maintained
7987F: drivers/media/rc/ttusbir.c
7988
Erik Gilling84b94142010-06-09 15:35:53 -07007989TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007990M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007991L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007992Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7993T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007994S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07007995N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007996
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007997TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007998M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007999L: netdev@vger.kernel.org
8000S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008001F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008002
Alan Cox4e688522008-04-30 00:52:11 -07008003Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008004M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008006F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008007
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008008TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008009M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008010M: Max Filippov <jcmvbkbc@gmail.com>
8011L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008013F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008014
Zhang Ruid3fb6952012-11-15 08:58:27 +08008015THERMAL
8016M: Zhang Rui <rui.zhang@intel.com>
8017L: linux-pm@vger.kernel.org
8018T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
8019S: Supported
8020F: drivers/thermal/
8021F: include/linux/thermal.h
8022
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008023THINGM BLINK(1) USB RGB LED DRIVER
8024M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8025S: Maintained
8026F: drivers/hid/hid-thingm.c
8027
Alan Cox4e688522008-04-30 00:52:11 -07008028THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008029M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008030L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008031L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008032W: http://ibm-acpi.sourceforge.net
8033W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008034T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008036F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008037
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008038TI BANDGAP AND THERMAL DRIVER
8039M: Eduardo Valentin <eduardo.valentin@ti.com>
8040L: linux-pm@vger.kernel.org
8041S: Maintained
8042F: drivers/staging/omap-thermal/
8043
Alex Dubov4020f2d2006-10-04 02:15:37 -07008044TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008045M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008047F: drivers/misc/tifm*
8048F: drivers/mmc/host/tifm_sd.c
8049F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008050
M R Swami Reddy152ad442012-04-02 20:02:31 +05308051TI LM49xxx FAMILY ASoC CODEC DRIVERS
8052M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308053M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308054L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8055S: Maintained
8056F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308057F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308058
Kim, Milo0edd8072012-12-17 16:01:17 -08008059TI LP855x BACKLIGHT DRIVER
8060M: Milo Kim <milo.kim@ti.com>
8061S: Maintained
8062F: Documentation/backlight/lp855x-driver.txt
8063F: drivers/video/backlight/lp855x_bl.c
8064F: include/linux/platform_data/lp855x.h
8065
Kim, Milofaf13f62012-12-10 05:27:03 +00008066TI LP8727 CHARGER DRIVER
8067M: Milo Kim <milo.kim@ti.com>
8068S: Maintained
8069F: drivers/power/lp8727_charger.c
8070F: include/linux/platform_data/lp8727.h
8071
Kim, Milo22f12292012-12-10 05:27:55 +00008072TI LP8788 MFD DRIVER
8073M: Milo Kim <milo.kim@ti.com>
8074S: Maintained
8075F: drivers/iio/adc/lp8788_adc.c
8076F: drivers/leds/leds-lp8788.c
8077F: drivers/mfd/lp8788*.c
8078F: drivers/power/lp8788-charger.c
8079F: drivers/regulator/lp8788-*.c
8080F: include/linux/mfd/lp8788*.h
8081
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008082TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008083M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008084L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8085S: Maintained
8086F: sound/soc/codecs/twl4030*
8087
Luciano Coelho90921012011-11-20 21:40:41 +02008088TI WILINK WIRELESS DRIVERS
8089M: Luciano Coelho <coelho@ti.com>
8090L: linux-wireless@vger.kernel.org
8091W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8092W: http://wireless.kernel.org/en/users/Drivers/wl1251
8093T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8094S: Maintained
8095F: drivers/net/wireless/ti/
8096F: include/linux/wl12xx.h
8097
Per Lidene86eaa32006-01-12 16:45:18 +01008098TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008099M: Jon Maloy <jon.maloy@ericsson.com>
8100M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008101L: netdev@vger.kernel.org (core kernel code)
8102L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008103W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008104S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008105F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008106F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008107
Chris Metcalf867e3592010-05-28 23:09:12 -04008108TILE ARCHITECTURE
8109M: Chris Metcalf <cmetcalf@tilera.com>
8110W: http://www.tilera.com/scm/
8111S: Supported
8112F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008113F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008114F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008115F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008116
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008118M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008119L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120W: http://sourceforge.net/projects/tlan/
8121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008122F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008123F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008125TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008126M: Kentaro Takeda <takedakn@nttdata.co.jp>
8127M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008128L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8129L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008130L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8131L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8132W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008133T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008135F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008136
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008137TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008138M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008139L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008140S: Maintained
8141F: drivers/platform/x86/topstar-laptop.c
8142
Linus Torvalds1da177e2005-04-16 15:20:36 -07008143TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008144L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008145S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008146F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147
8148TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008149M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150L: tlinux-users@tce.toshiba-dme.co.jp
8151W: http://www.buzzard.org.uk/toshiba/
8152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008153F: drivers/char/toshiba.c
8154F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008155F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008156
Pierre Ossmand719f902009-03-24 21:06:09 +01008157TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008158M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008159M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008160L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008161S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008162F: drivers/mmc/host/tmio_mmc*
8163F: drivers/mmc/host/sh_mobile_sdhi.c
8164F: include/linux/mmc/tmio.h
8165F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008166
Hugh Dickins98f32602009-05-21 20:33:58 +01008167TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008168M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008169L: linux-mm@kvack.org
8170S: Maintained
8171F: include/linux/shmem_fs.h
8172F: mm/shmem.c
8173
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008174TM6000 VIDEO4LINUX DRIVER
8175M: Mauro Carvalho Chehab <mchehab@redhat.com>
8176L: linux-media@vger.kernel.org
8177W: http://linuxtv.org
8178T: git git://linuxtv.org/media_tree.git
8179S: Odd fixes
8180F: drivers/media/usb/tm6000/
8181
Alan Cox4e688522008-04-30 00:52:11 -07008182TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008183M: Kent Yoder <key@linux.vnet.ibm.com>
8184M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008185W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008186M: Marcel Selhorst <tpmdd@selhorst.net>
8187M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008188W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008189L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008191F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008192
Joe Perchesd6f005a2009-10-26 16:49:40 -07008193TRACING
8194M: Steven Rostedt <rostedt@goodmis.org>
8195M: Frederic Weisbecker <fweisbec@gmail.com>
8196M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008197T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008198S: Maintained
8199F: Documentation/trace/ftrace.txt
8200F: arch/*/*/*/ftrace.h
8201F: arch/*/kernel/ftrace.c
8202F: include/*/ftrace.h
8203F: include/linux/trace*.h
8204F: include/trace/
8205F: kernel/trace/
8206
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008208M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008209T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008211K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008212
Alan Cox4e688522008-04-30 00:52:11 -07008213TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008214M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008215M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008216S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008217T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008218F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008219F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008220F: include/linux/serial_core.h
8221F: include/linux/serial.h
8222F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008223F: include/uapi/linux/serial_core.h
8224F: include/uapi/linux/serial.h
8225F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008226
Antti Palosaari91952bc2012-10-01 12:28:46 -03008227TUA9001 MEDIA DRIVER
8228M: Antti Palosaari <crope@iki.fi>
8229L: linux-media@vger.kernel.org
8230W: http://linuxtv.org/
8231W: http://palosaari.fi/linux/
8232Q: http://patchwork.linuxtv.org/project/linux-media/list/
8233T: git git://linuxtv.org/anttip/media_tree.git
8234S: Maintained
8235F: drivers/media/tuners/tua9001*
8236
Grant Grundler740db6d2008-02-17 11:53:49 -07008237TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008238M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008239L: netdev@vger.kernel.org
8240S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008241F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242
8243TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008244M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008245W: http://vtun.sourceforge.net/tun
8246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008247F: Documentation/networking/tuntap.txt
8248F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008250TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008251M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008253F: drivers/tc/
8254F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008255
Linus Torvalds1da177e2005-04-16 15:20:36 -07008256U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008257M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258L: linux-scsi@vger.kernel.org
8259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008260F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008262UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008263M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008264M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008265L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008266T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008267W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008269F: Documentation/filesystems/ubifs.txt
8270F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008271
Alan Coxcc2020e2008-05-19 14:21:51 +01008272UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008273M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008274W: http://www.uclinux.org/
8275L: uclinux-dev@uclinux.org (subscribers-only)
8276S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008277F: arch/m68k/*/*_no.*
8278F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008279
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008280UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008281M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008282W: http://uclinux-h8.sourceforge.jp/
8283S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008284F: arch/h8300/
8285F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008286F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008287
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008289M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008291F: Documentation/filesystems/udf.txt
8292F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293
Alan Coxcc2020e2008-05-19 14:21:51 +01008294UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008295M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008297F: Documentation/filesystems/ufs.txt
8298F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008299
David Herrmann0a09d3a2012-06-10 15:16:28 +02008300UHID USERSPACE HID IO DRIVER:
8301M: David Herrmann <dh.herrmann@googlemail.com>
8302L: linux-input@vger.kernel.org
8303S: Maintained
8304F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008305F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008306
David Vrabel18332a82008-09-17 16:34:44 +01008307ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008308L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008309S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008310F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008311F: include/linux/uwb.h
8312F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008313
GuanXuetaob31d8272011-01-16 00:35:49 +08008314UNICORE32 ARCHITECTURE:
8315M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8316W: http://mprc.pku.edu.cn/~guanxuetao/linux
8317S: Maintained
8318T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8319F: arch/unicore32/
8320
Tony Finchd8379ab2009-11-27 15:50:30 +00008321UNIFDEF
8322M: Tony Finch <dot@dotat.at>
8323W: http://dotat.at/prog/unifdef
8324S: Maintained
8325F: scripts/unifdef.c
8326
Linus Torvalds1da177e2005-04-16 15:20:36 -07008327UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008328M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329W: http://www.kernel.dk
8330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008331F: Documentation/cdrom/
8332F: drivers/cdrom/cdrom.c
8333F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008334F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308336UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8337M: Vinayak Holikatti <vinholikatti@gmail.com>
8338M: Santosh Y <santoshsy@gmail.com>
8339L: linux-scsi@vger.kernel.org
8340S: Supported
8341F: Documentation/scsi/ufs.txt
8342F: drivers/scsi/ufs/
8343
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008344UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008345M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008346W: http://www.linux-mtd.infradead.org/
8347L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008348T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008349S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008350F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008351F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008352F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008353
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008354UNSORTED BLOCK IMAGES (UBI) Fastmap
8355M: Richard Weinberger <richard@nod.at>
8356L: linux-mtd@lists.infradead.org
8357S: Maintained
8358F: drivers/mtd/ubi/fastmap.c
8359
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008361M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008362L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008364F: Documentation/usb/acm.txt
8365F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008367USB AR5523 WIRELESS DRIVER
8368M: Pontus Fuchs <pontus.fuchs@gmail.com>
8369L: linux-wireless@vger.kernel.org
8370S: Maintained
8371F: drivers/net/wireless/ath/ar5523/
8372
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008373USB ATTACHED SCSI
8374M: Matthew Wilcox <willy@linux.intel.com>
8375M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008376M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008377L: linux-usb@vger.kernel.org
8378L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008379S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008380F: drivers/usb/storage/uas.c
8381
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008383M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008384L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008386F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008387F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008388
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008389USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008391L: linux-usb@vger.kernel.org
8392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008393F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008394
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008395USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008396M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008397L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008398W: http://www.linux-usb.org/usbnet
8399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008400F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008401
Alan Coxcc2020e2008-05-19 14:21:51 +01008402USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008403M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008404L: rio500-users@lists.sourceforge.net
8405W: http://rio500.sourceforge.net
8406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008407F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008408
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008410M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008411L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008413F: Documentation/usb/ehci.txt
8414F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008415
David Brownell69ae9e32006-11-14 02:03:31 -08008416USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008417M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008418L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008419W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008420T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008422F: drivers/usb/gadget/
8423F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008424
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008425USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008426M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008427L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008428T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008430F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008431F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008432
matt mooney857aab32011-06-17 15:50:46 -07008433USB/IP DRIVERS
8434M: Matt Mooney <mfm@muteddisk.com>
8435L: linux-usb@vger.kernel.org
8436S: Maintained
8437F: drivers/staging/usbip/
8438
Olav Kongas959eea22005-11-03 17:38:14 +02008439USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008440M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008441L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008443F: drivers/usb/host/isp116x*
8444F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008445
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008447M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008448L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008450F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008451
8452USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008453M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008454L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008455L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008456S: Maintained
8457W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008458F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008459
Clemens Ladischaf399172011-01-10 16:32:54 +01008460USB MIDI DRIVER
8461M: Clemens Ladisch <clemens@ladisch.de>
8462L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8463T: git git://git.alsa-project.org/alsa-kernel.git
8464S: Maintained
8465F: sound/usb/midi.*
8466
Linus Torvalds1da177e2005-04-16 15:20:36 -07008467USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008468M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008469L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008471F: Documentation/usb/ohci.txt
8472F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008473
Matthias Urlichsba460e42005-07-14 00:33:47 -07008474USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008475M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008476L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008478F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008479
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008481M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008482L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008483L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008484T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485W: http://pegasus2.sourceforge.net/
8486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008487F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488
Felipe Balbid3ad5582012-05-21 16:24:49 +03008489USB PHY LAYER
8490M: Felipe Balbi <balbi@ti.com>
8491L: linux-usb@vger.kernel.org
8492T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8493S: Maintained
8494F: drivers/usb/phy/
8495F: drivers/usb/otg/
8496
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008497USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008498M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008499L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008501F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502
8503USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008504M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008505L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008506L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008507T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508W: http://pegasus2.sourceforge.net/
8509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008510F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511
Alan Cox4e688522008-04-30 00:52:11 -07008512USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008513M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008514L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008516F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008517
8518USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008519M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008520L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008521S: Maintained
8522W: http://geocities.com/i0xox0i
8523W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008524F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008525
Linus Torvalds1da177e2005-04-16 15:20:36 -07008526USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008527M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008528W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008530F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008531
8532USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008533M: Peter Berger <pberger@brimson.com>
8534M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008535L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008537F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008538
8539USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008540M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008541L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008543F: Documentation/usb/usb-serial.txt
8544F: drivers/usb/serial/generic.c
8545F: drivers/usb/serial/usb-serial.c
8546F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008547
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008549M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008550L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008552F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008553
8554USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008555M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008556L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008558F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559
8560USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008561M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008562L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563W: http://www.connecttech.com
8564S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008565F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008566
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008567USB SMSC75XX ETHERNET DRIVER
8568M: Steve Glendinning <steve.glendinning@shawell.net>
8569L: netdev@vger.kernel.org
8570S: Maintained
8571F: drivers/net/usb/smsc75xx.*
8572
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008573USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008574M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008575L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008577F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008578
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008579USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008580M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008581L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008582L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008583T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008584W: http://www.linux-projects.org
8585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008586F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008587F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008588
8589USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008590M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008591L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008592W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008593T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008595F: Documentation/usb/
8596F: drivers/net/usb/
8597F: drivers/usb/
8598F: include/linux/usb.h
8599F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600
8601USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008602M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008603L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008605F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008606
David Brownell69ae9e32006-11-14 02:03:31 -08008607USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008608M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008609L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008610W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008612F: drivers/net/usb/usbnet.c
8613F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008615USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008616M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008617L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008618L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008619T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008620W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008621S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008622F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008623F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008625USB VISION DRIVER
8626M: Hans Verkuil <hverkuil@xs4all.nl>
8627L: linux-media@vger.kernel.org
8628T: git git://linuxtv.org/media_tree.git
8629W: http://linuxtv.org
8630S: Odd Fixes
8631F: drivers/media/usb/usbvision/
8632
Laurent Pinchart8282da42012-10-04 02:32:42 +02008633USB WEBCAM GADGET
8634M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8635L: linux-usb@vger.kernel.org
8636S: Maintained
8637F: drivers/usb/gadget/*uvc*.c
8638F: drivers/usb/gadget/webcam.c
8639
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008640USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008641M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008642L: linux-wireless@vger.kernel.org
8643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008644F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008645
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008646USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008647M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008648L: linux-usb@vger.kernel.org
8649S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008650F: drivers/usb/host/xhci*
8651F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008652
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008654L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008656S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008657F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008658
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008659USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008660M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008661L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008662L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008663T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008664W: http://royale.zerezo.com/zr364xx/
8665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008666F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008667F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008668
Randy Dunlape7839f22008-10-12 16:11:45 -07008669USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008670M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008671M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672L: user-mode-linux-devel@lists.sourceforge.net
8673L: user-mode-linux-user@lists.sourceforge.net
8674W: http://user-mode-linux.sourceforge.net
8675S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008676F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008677F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008678F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008679F: fs/hostfs/
8680F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008681
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008682USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008683M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008684M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008686F: Documentation/DocBook/uio-howto.tmpl
8687F: drivers/uio/
8688F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008689
Karel Zak256cccb2012-06-01 10:13:09 +02008690UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008691M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008692L: util-linux@vger.kernel.org
8693W: http://en.wikipedia.org/wiki/Util-linux
8694T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008695S: Maintained
8696
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008697UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008698M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008699L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008700W: http://dev.gentoo.org/~spock/projects/uvesafb/
8701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008702F: Documentation/fb/uvesafb.txt
8703F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008704
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008705VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008706M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008708F: Documentation/filesystems/vfat.txt
8709F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008710
Alex Williamsoncba33452012-07-31 08:16:22 -06008711VFIO DRIVER
8712M: Alex Williamson <alex.williamson@redhat.com>
8713L: kvm@vger.kernel.org
8714S: Maintained
8715F: Documentation/vfio.txt
8716F: drivers/vfio/
8717F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008718F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008719
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008720VIDEOBUF2 FRAMEWORK
8721M: Pawel Osciak <pawel@osciak.com>
8722M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008723M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008724L: linux-media@vger.kernel.org
8725S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008726F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008727F: include/media/videobuf2-*
8728
Amit Shah9a824462010-03-23 18:23:09 +05308729VIRTIO CONSOLE DRIVER
8730M: Amit Shah <amit.shah@redhat.com>
8731L: virtualization@lists.linux-foundation.org
8732S: Maintained
8733F: drivers/char/virtio_console.c
8734F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008735F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308736
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308737VIRTIO CORE, NET AND BLOCK DRIVERS
8738M: Rusty Russell <rusty@rustcorp.com.au>
8739M: "Michael S. Tsirkin" <mst@redhat.com>
8740L: virtualization@lists.linux-foundation.org
8741S: Maintained
8742F: drivers/virtio/
8743F: drivers/net/virtio_net.c
8744F: drivers/block/virtio_blk.c
8745F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308746F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308747
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008748VIRTIO HOST (VHOST)
8749M: "Michael S. Tsirkin" <mst@redhat.com>
8750L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008751L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008752L: netdev@vger.kernel.org
8753S: Maintained
8754F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008755F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008756
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008758M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008759S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008760F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008761
Harald Weltef0bf7f62009-06-17 20:22:39 +02008762VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008763M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008764M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008765S: Maintained
8766F: drivers/mmc/host/via-sdmmc.c
8767
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008768VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008769M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008770L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008771S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008772F: include/linux/via-core.h
8773F: include/linux/via-gpio.h
8774F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008775F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008776
Francois Romieu01f20732007-01-26 00:57:17 -08008777VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008778M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008779L: netdev@vger.kernel.org
8780S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008781F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008782
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008783VIVI VIRTUAL VIDEO DRIVER
8784M: Hans Verkuil <hverkuil@xs4all.nl>
8785L: linux-media@vger.kernel.org
8786T: git git://linuxtv.org/media_tree.git
8787W: http://linuxtv.org
8788S: Maintained
8789F: drivers/media/platform/vivi*
8790
Patrick McHardybe7f8272007-10-23 20:26:36 -07008791VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008792M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008793L: netdev@vger.kernel.org
8794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008795F: drivers/net/macvlan.c
8796F: include/linux/if_*vlan.h
8797F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008798
Florian Fainelli55e331c2009-06-16 15:33:53 -07008799VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008800M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008801L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008802S: Maintained
8803F: drivers/vlynq/vlynq.c
8804F: include/linux/vlynq.h
8805
Martyn Welch390beae2012-05-03 17:52:36 +01008806VME SUBSYSTEM
8807M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008808M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008809M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8810L: devel@driverdev.osuosl.org
8811S: Maintained
8812T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8813F: Documentation/vme_api.txt
8814F: drivers/staging/vme/
8815F: drivers/vme/
8816F: include/linux/vme*
8817
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008818VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008819M: Shreyas Bhatewara <sbhatewara@vmware.com>
8820M: "VMware, Inc." <pv-drivers@vmware.com>
8821L: netdev@vger.kernel.org
8822S: Maintained
8823F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008824
Alok Kataria851b1642009-10-13 14:51:05 -07008825VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008826M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008827M: VMware PV-Drivers <pv-drivers@vmware.com>
8828L: linux-scsi@vger.kernel.org
8829S: Maintained
8830F: drivers/scsi/vmw_pvscsi.c
8831F: drivers/scsi/vmw_pvscsi.h
8832
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008833VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08008834M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008835M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008836W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008837W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008838T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008840F: drivers/regulator/
8841F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008842
Juerg Haefligerab413192006-09-24 20:54:04 +02008843VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008844M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008845L: lm-sensors@lm-sensors.org
8846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008847F: Documentation/hwmon/vt1211
8848F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008849
Roger Lucas1de9e372005-11-26 20:20:05 +01008850VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008851M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008852L: lm-sensors@lm-sensors.org
8853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008854F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008855
Tony Olech88095e72011-05-14 16:48:13 -04008856VUB300 USB to SDIO/SD/MMC bridge chip
8857M: Tony Olech <tony.olech@elandigitalsystems.com>
8858L: linux-mmc@vger.kernel.org
8859L: linux-usb@vger.kernel.org
8860S: Supported
8861F: drivers/mmc/host/vub300.c
8862
Linus Torvalds1da177e2005-04-16 15:20:36 -07008863W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008864M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008866F: Documentation/w1/
8867F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008868
Charles Spirakis13927072006-07-05 18:05:15 +02008869W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008870M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008871L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008873F: Documentation/hwmon/w83791d
8874F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008875
Rudolf Marek61db0112006-12-12 18:18:30 +01008876W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008877M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008878L: lm-sensors@lm-sensors.org
8879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008880F: Documentation/hwmon/w83793
8881F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008882
Jean Delvaree3760b42010-10-28 20:31:49 +02008883W83795 HARDWARE MONITORING DRIVER
8884M: Jean Delvare <khali@linux-fr.org>
8885L: lm-sensors@lm-sensors.org
8886S: Maintained
8887F: drivers/hwmon/w83795.c
8888
Linus Torvalds1da177e2005-04-16 15:20:36 -07008889W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008890M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008892F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008893
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008894WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008895M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008896L: linux-watchdog@vger.kernel.org
8897W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008898T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008900F: Documentation/watchdog/
8901F: drivers/watchdog/
8902F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008903F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008904
Linus Torvalds1da177e2005-04-16 15:20:36 -07008905WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008906M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008907L: linux-scsi@vger.kernel.org
8908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008909F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008910
David Herrmannb22e00f2011-09-06 13:50:40 +02008911WIIMOTE HID DRIVER
8912M: David Herrmann <dh.herrmann@googlemail.com>
8913L: linux-input@vger.kernel.org
8914S: Maintained
8915F: drivers/hid/hid-wiimote*
8916
David Härdemane258b802009-09-21 17:04:53 -07008917WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008918M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008919S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008920F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008921
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008922WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008923M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008924M: linux-wimax@intel.com
8925L: wimax@linuxwimax.org
8926S: Supported
8927W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008928F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008929F: include/linux/wimax/debug.h
8930F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008931F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008932F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008933
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008934WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008935M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008937F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008938
Linus Torvalds1da177e2005-04-16 15:20:36 -07008939WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008940M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008941L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008942W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008944F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008945
Mark Brownfebf1df2008-04-02 00:51:09 -04008946WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008947M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8948M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008949L: linux-input@vger.kernel.org
8950T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8951W: http://opensource.wolfsonmicro.com/node/7
8952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008953F: drivers/input/touchscreen/*wm97*
8954F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008955
Mark Brown055bcbc2010-08-13 14:18:12 +01008956WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008957M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008958L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008959T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008960T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008961W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008962S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008963F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008964F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008965F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008966F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008967F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008968F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008969F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008970F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008971F: drivers/input/misc/wm831x-on.c
8972F: drivers/input/touchscreen/wm831x-ts.c
8973F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008974F: drivers/mfd/arizona*
8975F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008976F: drivers/power/wm83*.c
8977F: drivers/rtc/rtc-wm83*.c
8978F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008979F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008980F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008981F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008982F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008983F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008984F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008985F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008986F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008987F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008988F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008989
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008990WORKQUEUE
8991M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008992T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8993S: Maintained
8994F: include/linux/workqueue.h
8995F: kernel/workqueue.c
8996F: Documentation/workqueue.txt
8997
Linus Torvalds1da177e2005-04-16 15:20:36 -07008998X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008999M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009001S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009002F: Documentation/networking/x25*
9003F: include/net/x25*
9004F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009005
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009006X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009007M: Thomas Gleixner <tglx@linutronix.de>
9008M: Ingo Molnar <mingo@redhat.com>
9009M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009010M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009011T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009013F: Documentation/x86/
9014F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009015
Matthew Garrettd0944852010-02-11 10:40:13 -05009016X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009017M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009018L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009019T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009020S: Maintained
9021F: drivers/platform/x86
9022
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009023X86 MCE INFRASTRUCTURE
9024M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009025M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009026L: linux-edac@vger.kernel.org
9027S: Maintained
9028F: arch/x86/kernel/cpu/mcheck/*
9029
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009030XC2028/3028 TUNER DRIVER
9031M: Mauro Carvalho Chehab <mchehab@redhat.com>
9032L: linux-media@vger.kernel.org
9033W: http://linuxtv.org
9034T: git git://linuxtv.org/media_tree.git
9035S: Maintained
9036F: drivers/media/tuners/tuner-xc2028.*
9037
Ian Campbellc4468082011-04-27 15:26:46 -07009038XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009039M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009040M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009041L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9042L: virtualization@lists.linux-foundation.org
9043S: Supported
9044F: arch/x86/xen/
9045F: drivers/*/xen-*front.c
9046F: drivers/xen/
9047F: arch/x86/include/asm/xen/
9048F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009049F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009050
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009051XEN HYPERVISOR ARM
9052M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9053L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9054S: Supported
9055F: arch/arm/xen/
9056F: arch/arm/include/asm/xen/
9057
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009058XEN NETWORK BACKEND DRIVER
9059M: Ian Campbell <ian.campbell@citrix.com>
9060L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9061L: netdev@vger.kernel.org
9062S: Supported
9063F: drivers/net/xen-netback/*
9064
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009065XEN PCI SUBSYSTEM
9066M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009067L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009068S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009069F: arch/x86/pci/*xen*
9070F: drivers/pci/*xen*
9071
9072XEN SWIOTLB SUBSYSTEM
9073M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009074L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009075S: Supported
9076F: arch/x86/xen/*swiotlb*
9077F: drivers/xen/*swiotlb*
9078
Linus Torvalds1da177e2005-04-16 15:20:36 -07009079XFS FILESYSTEM
9080P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009081M: Ben Myers <bpm@sgi.com>
9082M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009083M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009084L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009085W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009086T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009088F: Documentation/filesystems/xfs.txt
9089F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009090
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009091XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009092M: Anirudha Sarangi <anirudh@xilinx.com>
9093M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009094S: Maintained
9095F: drivers/net/ethernet/xilinx/xilinx_axienet*
9096
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009097XILINX SYSTEMACE DRIVER
Grant Likely19624232013-04-08 11:51:42 +01009098S: Unmaintained
Joe Perches679655d2009-04-07 20:44:32 -07009099F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009100
Peter Korsgaard238b8722006-12-06 20:35:17 -08009101XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009102M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009103L: linux-serial@vger.kernel.org
9104S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009105F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009106
Linus Torvalds1da177e2005-04-16 15:20:36 -07009107YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009108M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009109L: linux-hams@vger.kernel.org
9110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009111F: drivers/net/hamradio/yam*
9112F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009113
Henkaf64a5e2005-10-12 15:02:56 +02009114YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009115M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009116L: usbb2k-api-dev@nongnu.org
9117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009118F: Documentation/input/yealink.txt
9119F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009120
Linus Torvalds1da177e2005-04-16 15:20:36 -07009121Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009122M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009123W: http://yaina.de/jreuter/
9124W: http://www.qsl.net/dl1bke/
9125L: linux-hams@vger.kernel.org
9126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009127F: Documentation/networking/z8530drv.txt
9128F: drivers/net/hamradio/*scc.c
9129F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009130
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009131ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009132M: Daniel Drake <dsd@gentoo.org>
9133M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009134W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009135L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009136L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009138F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009139
Linus Torvalds1da177e2005-04-16 15:20:36 -07009140ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009141L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009142L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009144T: Mercurial http://linuxtv.org/hg/v4l-dvb
9145S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009146F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009147
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009148ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009149M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009150S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009151F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009152
Linus Torvalds1da177e2005-04-16 15:20:36 -07009153THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009154M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009155L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009156Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009157T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009159F: *
9160F: */