blob: 2d940510f42bfe7fd6f3dd2fb2332ee1e276bc49 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-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 Guo8bcb97652011-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 Guoa9866a02011-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 Garrettd09448532010-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 Kirsher2b133ad62011-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 Barrosf2294c2d2013-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 Kirsher9f2f381f2011-06-18 01:52:36 -07001491F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001492
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001493ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001494M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001495S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001496F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001497
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001498ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1499M: Nicolas Ferre <nicolas.ferre@atmel.com>
1500L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501S: Supported
1502F: drivers/misc/atmel_tclib.c
1503F: drivers/clocksource/tcb_clksrc.c
1504
Josh Wuff2675d2012-03-23 17:56:55 +08001505ATMEL TSADCC DRIVER
1506M: Josh Wu <josh.wu@atmel.com>
1507L: linux-input@vger.kernel.org
1508S: Supported
1509F: drivers/input/touchscreen/atmel_tsadcc.c
1510
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001511ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001512M: Nicolas Ferre <nicolas.ferre@atmel.com>
1513L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001515F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001518M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001519L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520W: http://www.thekelleys.org.uk/atmel
1521W: http://atmelwlandriver.sourceforge.net/
1522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001523F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Chris Wrighta92b7b82005-07-07 18:12:23 -07001525AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001526M: Al Viro <viro@zeniv.linux.org.uk>
1527M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001528L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001529W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001530T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001533F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001534F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001535
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001536AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001538W: http://miguelojeda.es/auxdisplay.htm
1539W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001541F: drivers/auxdisplay/
1542F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001543
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001544AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001545M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1546M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001547W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001548W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001549W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001551F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001552
1553AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001554M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1555M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001562W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001564F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001565F: include/net/ax25.h
1566F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001568AZ6007 DVB DRIVER
1569M: Mauro Carvalho Chehab <mchehab@redhat.com>
1570L: linux-media@vger.kernel.org
1571W: http://linuxtv.org
1572T: git git://linuxtv.org/media_tree.git
1573S: Maintained
1574F: drivers/media/usb/dvb-usb-v2/az6007.c
1575
Hans Verkuil67773762012-11-23 07:09:23 -03001576AZTECH FM RADIO RECEIVER DRIVER
1577M: Hans Verkuil <hverkuil@xs4all.nl>
1578L: linux-media@vger.kernel.org
1579T: git git://linuxtv.org/media_tree.git
1580W: http://linuxtv.org
1581S: Maintained
1582F: drivers/media/radio/radio-aztech*
1583
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001584B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001586L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001587L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001588W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001590F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591
1592B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Larry Finger <Larry.Finger@lwfinger.net>
1594M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001595L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001596L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001597W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001599F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001600
Richard Purdie300abeb2007-02-07 22:21:07 +00001601BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001604F: drivers/video/backlight/
1605F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001606
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001607BATMAN ADVANCED
1608M: Marek Lindner <lindner_marek@yahoo.de>
1609M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001610M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001611L: b.a.t.m.a.n@lists.open-mesh.org
1612W: http://www.open-mesh.org/
1613S: Maintained
1614F: net/batman-adv/
1615
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001616BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001617M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618L: linux-hams@vger.kernel.org
1619W: http://www.baycom.org/~tom/ham/ham.html
1620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001621F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001622
Kent Overstreetcafe5632013-03-23 16:11:31 -07001623BCACHE (BLOCK LAYER CACHE)
1624M: Kent Overstreet <koverstreet@google.com>
1625L: linux-bcache@vger.kernel.org
1626W: http://bcache.evilpiepirate.org
1627S: Maintained:
1628F: drivers/md/bcache/
1629
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001630BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001631S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001632F: Documentation/filesystems/befs.txt
1633F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001634
1635BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001638F: Documentation/filesystems/bfs.txt
1639F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001640F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001641
Bryan Wu1394f032007-05-06 14:50:22 -07001642BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001643M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001644L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001645W: http://blackfin.uclinux.org
1646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001647F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001648
Bryan Wue190d6b2007-07-17 14:43:44 +08001649BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001650L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001651W: http://blackfin.uclinux.org
1652S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001653F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001654
Mike Frysinger566da5b2007-06-11 15:31:30 +08001655BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001657L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001658W: http://blackfin.uclinux.org
1659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001660F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001661
Mike Frysinger936ed492010-03-10 15:20:38 -08001662BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001663M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001664L: uclinux-dist-devel@blackfin.uclinux.org
1665W: http://blackfin.uclinux.org
1666S: Supported
1667F: drivers/mmc/host/bfin_sdh.c
1668
Bryan Wu1394f032007-05-06 14:50:22 -07001669BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001671L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001672W: http://blackfin.uclinux.org
1673S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001674F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001675
Bryan Wu1e6d3202007-07-15 02:50:02 +08001676BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001678L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001679W: http://blackfin.uclinux.org
1680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001682
Bryan Wud24ecfc2007-05-01 23:26:32 +02001683BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001684M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001685L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001686W: http://blackfin.uclinux.org/
1687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001688F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001689
Scott Jiang1e204372013-01-18 17:09:47 -03001690BLACKFIN MEDIA DRIVER
1691M: Scott Jiang <scott.jiang.linux@gmail.com>
1692L: uclinux-dist-devel@blackfin.uclinux.org
1693W: http://blackfin.uclinux.org/
1694S: Supported
1695F: drivers/media/platform/blackfin/
1696F: drivers/media/i2c/adv7183*
1697F: drivers/media/i2c/vs6624*
1698
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001699BLINKM RGB LED DRIVER
1700M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1701S: Maintained
1702F: drivers/leds/leds-blinkm.c
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001706T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001708F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Joern Engel2b54aae2008-02-06 01:38:02 -08001710BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001711M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001712L: linux-mtd@lists.infradead.org
1713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001715
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001716BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001718M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001719M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001720L: linux-bluetooth@vger.kernel.org
1721W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1723T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001728M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001729M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001730M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001731L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001732W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001733T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1734T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001736F: net/bluetooth/
1737F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001740M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001741M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001742L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001743W: http://sourceforge.net/projects/bonding/
1744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001745F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001746F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Gary Zambrano39105892006-06-22 17:26:20 -07001748BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001749M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001750L: netdev@vger.kernel.org
1751S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001752F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001753
Michael Chan948c51e2006-06-04 02:51:39 -07001754BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001755M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001756L: netdev@vger.kernel.org
1757S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001758F: drivers/net/ethernet/broadcom/bnx2.*
1759F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001760
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001761BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001762M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001763L: netdev@vger.kernel.org
1764S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001765F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001766
Stephen Warrenf680f252012-09-15 00:18:54 -06001767BROADCOM BCM2835 ARM ARCHICTURE
1768M: Stephen Warren <swarren@wwwdotorg.org>
1769L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1770T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1771S: Maintained
1772F: arch/arm/mach-bcm2835/
1773F: arch/arm/boot/dts/bcm2835*
1774F: arch/arm/configs/bcm2835_defconfig
1775F: drivers/*/*bcm2835*
1776
Michael Chan948c51e2006-06-04 02:51:39 -07001777BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001778M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001779M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001780L: netdev@vger.kernel.org
1781S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001782F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001783
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001784BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1785M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001786M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001787M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001788M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001789L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001790L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001791S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001792F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001793
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001794BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1795M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1796L: linux-scsi@vger.kernel.org
1797S: Supported
1798F: drivers/scsi/bnx2fc/
1799
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001800BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1801M: Rafał Miłecki <zajec5@gmail.com>
1802L: linux-wireless@vger.kernel.org
1803S: Maintained
1804F: drivers/bcma/
1805F: include/linux/bcma/
1806
Jing Huang7725ccf2009-09-23 17:46:15 -07001807BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001808M: Anil Gurumurthy <agurumur@brocade.com>
1809M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001810L: linux-scsi@vger.kernel.org
1811S: Supported
1812F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001813
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001814BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1815M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001816L: netdev@vger.kernel.org
1817S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001818F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001819
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001820BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001822L: linux-scsi@vger.kernel.org
1823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001824F: block/bsg.c
1825F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001826F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001827
Clemens Ladischaf399172011-01-10 16:32:54 +01001828BT87X AUDIO DRIVER
1829M: Clemens Ladisch <clemens@ladisch.de>
1830L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1831T: git git://git.alsa-project.org/alsa-kernel.git
1832S: Maintained
1833F: Documentation/sound/alsa/Bt87x.txt
1834F: sound/pci/bt87x.c
1835
Michael Bueschff1d5c22008-07-25 01:46:10 -07001836BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001837M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001838W: http://bu3sch.de/btgpio.php
1839S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001840F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001841
Joe Percheseb1eb042009-01-21 10:49:16 -05001842BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001843M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001844L: linux-btrfs@vger.kernel.org
1845W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001846Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001847T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001849F: Documentation/filesystems/btrfs.txt
1850F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001853M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001854L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001855W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001856T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001857S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001858F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001859F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Clemens Ladischaf399172011-01-10 16:32:54 +01001861C-MEDIA CMI8788 DRIVER
1862M: Clemens Ladisch <clemens@ladisch.de>
1863L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1864T: git git://git.alsa-project.org/alsa-kernel.git
1865S: Maintained
1866F: sound/pci/oxygen/
1867
Mark Salter21413552011-10-04 11:21:42 -04001868C6X ARCHITECTURE
1869M: Mark Salter <msalter@redhat.com>
1870M: Aurelien Jacquiot <a-jacquiot@ti.com>
1871L: linux-c6x-dev@linux-c6x.org
1872W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1873S: Maintained
1874F: arch/c6x/
1875
David Howellsa5432f5a2009-04-20 15:46:45 +01001876CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001877M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001878L: linux-cachefs@redhat.com
1879S: Supported
1880F: Documentation/filesystems/caching/cachefiles.txt
1881F: fs/cachefiles/
1882
Hans Verkuilc815ca32012-11-23 07:05:54 -03001883CADET FM/AM RADIO RECEIVER DRIVER
1884M: Hans Verkuil <hverkuil@xs4all.nl>
1885L: linux-media@vger.kernel.org
1886T: git git://linuxtv.org/media_tree.git
1887W: http://linuxtv.org
1888S: Maintained
1889F: drivers/media/radio/radio-cadet*
1890
Jonathan Corbet77d51402007-03-22 19:44:17 -03001891CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001892M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001893L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001894T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001896F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001897F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001898
Joe Perches201b6ba2010-09-07 20:33:24 +00001899CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001900M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001901L: netdev@vger.kernel.org
1902S: Supported
1903F: Documentation/networking/caif/
1904F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001905F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001906F: include/net/caif/
1907F: net/caif/
1908
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001909CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001910M: Muli Ben-Yehuda <muli@il.ibm.com>
1911M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001912L: discuss@x86-64.org
1913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001914F: arch/x86/kernel/pci-calgary_64.c
1915F: arch/x86/kernel/tce_64.c
1916F: arch/x86/include/asm/calgary.h
1917F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001918
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001919CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001920M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001921L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001922W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001923T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001924S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001925F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001926F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001927F: include/uapi/linux/can.h
1928F: include/uapi/linux/can/bcm.h
1929F: include/uapi/linux/can/raw.h
1930F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001931
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001932CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001933M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001934M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001935L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001936W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001937T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001938S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001939F: drivers/net/can/
1940F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001941F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001942F: include/uapi/linux/can/error.h
1943F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001944
James Morris95d16c72012-03-16 12:05:48 +11001945CAPABILITIES
1946M: Serge Hallyn <serge.hallyn@canonical.com>
1947L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001948S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001949F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001950F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001951F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001952F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001953F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001954
Arnd Bergmannb8154542008-05-16 11:10:59 +02001955CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001956M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001957L: linuxppc-dev@lists.ozlabs.org
1958L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001959W: http://www.ibm.com/developerworks/power/cell/
1960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001961F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001962F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001963F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001964F: arch/powerpc/oprofile/*cell*
1965F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001966
Sage Weil9030aaf2009-10-06 11:31:15 -07001967CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001968M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001969L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001970W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001971T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001972S: Supported
1973F: Documentation/filesystems/ceph.txt
1974F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001975F: net/ceph
1976F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001977F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001978
David Vrabel18332a82008-09-17 16:34:44 +01001979CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001980L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001981S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001982F: Documentation/usb/WUSB-Design-overview.txt
1983F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001984F: drivers/usb/host/hwa-hc.c
1985F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001986F: drivers/usb/wusbcore/
1987F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001988
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001989CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001990M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001991W: http://miguelojeda.es/auxdisplay.htm
1992W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001994F: drivers/auxdisplay/cfag12864b.c
1995F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001996
1997CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001998M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001999W: http://miguelojeda.es/auxdisplay.htm
2000W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002002F: drivers/auxdisplay/cfag12864bfb.c
2003F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002004
Johannes Berg704232c2007-04-23 12:20:05 -07002005CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002006M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002007L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002008W: http://wireless.kernel.org/
2009T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2010T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002011S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002012F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002013F: include/net/cfg80211.h
2014F: net/wireless/*
2015X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002016
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002017CHAR and MISC DRIVERS
2018M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002019M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002020T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002021S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002022F: drivers/char/*
2023F: drivers/misc/*
2024
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002025CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002027M: Joe Perches <joe@perches.com>
2028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002029F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002030
Harry Weif8407f262011-02-25 14:44:15 -08002031CHINESE DOCUMENTATION
2032M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002033L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002034L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2035S: Maintained
2036F: Documentation/zh_CN/
2037
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002038CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2039M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2040L: linux-usb@vger.kernel.org
2041S: Maintained
2042F: drivers/usb/chipidea/
2043
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002044CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002045M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002046M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002047M: Neel Patel <neepatel@cisco.com>
2048M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002049S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002050F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002051
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002052CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002053M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002054L: netdev@vger.kernel.org
2055S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002056F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002057
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002058CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002059M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002060L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002063
Timur Tabid9e9d822008-04-24 08:45:26 +10002064CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002065M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002066L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002067S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002068F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002069
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002070CLEANCACHE API
2071M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2072L: linux-kernel@vger.kernel.org
2073S: Maintained
2074F: mm/cleancache.c
2075F: include/linux/cleancache.h
2076
Russell Kingd4275352009-04-16 14:05:27 +01002077CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002078M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002079S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002080F: include/linux/clk.h
2081
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002082CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002083M: Hiral Patel <hiralpat@cisco.com>
2084M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002085M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002086L: linux-scsi@vger.kernel.org
2087S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002088F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002089
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002090CMPC ACPI DRIVER
2091M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2092M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002093L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002094S: Supported
2095F: drivers/platform/x86/classmate-laptop.c
2096
Nicolas Palix74425ee2010-06-06 17:15:01 +02002097COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002098M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002099M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002100M: Nicolas Palix <nicolas.palix@imag.fr>
Nicolas Palixc00b5112013-06-06 23:39:53 +02002101M: Michal Marek <mmarek@suse.cz>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002102L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002103T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002104W: http://coccinelle.lip6.fr/
2105S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002106F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002107F: scripts/coccinelle/
2108F: scripts/coccicheck
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112M: coda@cs.cmu.edu
2113L: codalist@coda.cs.cmu.edu
2114W: http://www.coda.cs.cmu.edu/
2115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002116F: Documentation/filesystems/coda.txt
2117F: fs/coda/
2118F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002119F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Mike Turquette7704add2012-05-02 18:37:45 -07002121COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002122M: Mike Turquette <mturquette@linaro.org>
2123L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2124T: git git://git.linaro.org/people/mturquette/linux.git
2125S: Maintained
2126F: drivers/clk/clk.c
2127F: drivers/clk/clk-*
2128F: include/linux/clk-pr*
2129
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002130COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002132L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002133L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002134W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002135Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002136T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002138F: Documentation/filesystems/cifs.txt
2139F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002142M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002143L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002145F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
2147COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002148M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002149L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002151F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002154M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002155L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002157F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002159COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002160M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002161L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002163F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002164
Simon Arlott949be0f2007-03-06 02:47:46 -08002165CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002167L: accessrunner-general@lists.sourceforge.net
2168W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002170F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002171
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002172CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002173M: Joel Becker <jlbec@evilplan.org>
2174T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002176F: fs/configfs/
2177F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002178
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002179CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002181L: netdev@vger.kernel.org
2182S: Maintained
2183F: drivers/connector/
2184
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002185CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002186M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002187M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002188L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002189L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002190T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: include/linux/cgroup*
2193F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002194F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002195
Rudolf Marekbebe4672007-05-08 17:22:02 +02002196CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002197M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002198L: lm-sensors@lm-sensors.org
2199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002200F: Documentation/hwmon/coretemp
2201F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002204M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205W: http://www.fi.muni.cz/~kas/cosa/
2206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002207F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Florian Fainelli4371ee32009-06-01 02:43:17 -07002209CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002211L: netdev@vger.kernel.org
2212S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002213F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002216M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002217M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002218L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002219L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220S: Maintained
viresh kumar45c009a2013-04-26 12:53:16 +00002221T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perches679655d2009-04-07 20:44:32 -07002222F: drivers/cpufreq/
2223F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002225CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2226M: Viresh Kumar <viresh.kumar@linaro.org>
2227M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2228L: cpufreq@vger.kernel.org
2229L: linux-pm@vger.kernel.org
2230W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2231S: Maintained
2232F: drivers/cpufreq/arm_big_little.h
2233F: drivers/cpufreq/arm_big_little.c
2234F: drivers/cpufreq/arm_big_little_dt.c
2235
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002236CPUIDLE DRIVERS
2237M: Rafael J. Wysocki <rjw@sisk.pl>
2238M: Daniel Lezcano <daniel.lezcano@linaro.org>
2239L: linux-pm@vger.kernel.org
2240S: Maintained
2241T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2242F: drivers/cpuidle/*
2243F: include/linux/cpuidle.h
2244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002248F: arch/x86/kernel/cpuid.c
2249F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002251CPU POWER MONITORING SUBSYSTEM
2252M: Dominik Brodowski <linux@dominikbrodowski.net>
2253M: Thomas Renninger <trenn@suse.de>
2254S: Maintained
2255F: tools/power/cpupower
2256
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002257CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002258M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002259W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002260W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002262F: Documentation/cgroups/cpusets.txt
2263F: include/linux/cpuset.h
2264F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002267W: http://sourceforge.net/projects/cramfs/
2268S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002269F: Documentation/filesystems/cramfs.txt
2270F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002273M: Mikael Starvik <starvik@axis.com>
2274M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002275L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276W: http://developer.axis.com
2277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002278F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002279F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002282M: Herbert Xu <herbert@gondor.apana.org.au>
2283M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002285T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002287F: Documentation/crypto/
2288F: arch/*/crypto/
2289F: crypto/
2290F: drivers/crypto/
2291F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Neil Horman5b07bd52009-02-05 16:03:04 +11002293CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002294M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002295L: linux-crypto@vger.kernel.org
2296S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002297F: crypto/ansi_cprng.c
2298F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002299
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002300CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002301M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002303F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002304
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002305CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002306M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002307L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002308L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002309T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002310W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002311W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002313F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002314F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002315F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002316
Hans Verkuil3f101d92012-11-23 07:00:02 -03002317CX2341X MPEG ENCODER HELPER MODULE
2318M: Hans Verkuil <hverkuil@xs4all.nl>
2319L: linux-media@vger.kernel.org
2320T: git git://linuxtv.org/media_tree.git
2321W: http://linuxtv.org
2322S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002323F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002324F: include/media/cx2341x*
2325
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002326CX88 VIDEO4LINUX DRIVER
2327M: Mauro Carvalho Chehab <mchehab@redhat.com>
2328L: linux-media@vger.kernel.org
2329W: http://linuxtv.org
2330T: git git://linuxtv.org/media_tree.git
2331S: Odd fixes
2332F: Documentation/video4linux/cx88/
2333F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002334
Antti Palosaari91952bc2012-10-01 12:28:46 -03002335CXD2820R MEDIA DRIVER
2336M: Antti Palosaari <crope@iki.fi>
2337L: linux-media@vger.kernel.org
2338W: http://linuxtv.org/
2339W: http://palosaari.fi/linux/
2340Q: http://patchwork.linuxtv.org/project/linux-media/list/
2341T: git git://linuxtv.org/anttip/media_tree.git
2342S: Maintained
2343F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002344
Steve Wisee5ec3782008-05-20 14:06:33 -07002345CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002346M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002347L: netdev@vger.kernel.org
2348W: http://www.chelsio.com
2349S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002350F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002351
2352CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002353M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002354L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002355W: http://www.openfabrics.org
2356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002357F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002358
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002359CXGB4 ETHERNET DRIVER (CXGB4)
2360M: Dimitris Michailidis <dm@chelsio.com>
2361L: netdev@vger.kernel.org
2362W: http://www.chelsio.com
2363S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002364F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002365
2366CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2367M: Steve Wise <swise@chelsio.com>
2368L: linux-rdma@vger.kernel.org
2369W: http://www.openfabrics.org
2370S: Supported
2371F: drivers/infiniband/hw/cxgb4/
2372
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002373CXGB4VF ETHERNET DRIVER (CXGB4VF)
2374M: Casey Leedom <leedom@chelsio.com>
2375L: netdev@vger.kernel.org
2376W: http://www.chelsio.com
2377S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002378F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002379
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002380STMMAC ETHERNET DRIVER
2381M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2382L: netdev@vger.kernel.org
2383W: http://www.stlinux.com
2384S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002385F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002388M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002389L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390W: http://www.arm.linux.org.uk/
2391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002396S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002397F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002398F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002399F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002403S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002404F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002406CYPRESS_FIRMWARE MEDIA DRIVER
2407M: Antti Palosaari <crope@iki.fi>
2408L: linux-media@vger.kernel.org
2409W: http://linuxtv.org/
2410W: http://palosaari.fi/linux/
2411Q: http://patchwork.linuxtv.org/project/linux-media/list/
2412T: git git://linuxtv.org/anttip/media_tree.git
2413S: Maintained
2414F: drivers/media/common/cypress_firmware*
2415
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002416CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002417M: Javier Martinez Canillas <javier@dowhile0.org>
2418L: linux-input@vger.kernel.org
2419S: Maintained
2420F: drivers/input/touchscreen/cyttsp*
2421F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002424M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425W: http://yaina.de/jreuter/
2426W: http://www.qsl.net/dl1bke/
2427L: linux-hams@vger.kernel.org
2428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002429F: net/ax25/af_ax25.c
2430F: net/ax25/ax25_dev.c
2431F: net/ax25/ax25_ds_*
2432F: net/ax25/ax25_in.c
2433F: net/ax25/ax25_out.c
2434F: net/ax25/ax25_timer.c
2435F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002437DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002438L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002439S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002440F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002441F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002442
2443DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002444M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002445W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002446M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002448F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002451M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002452M: Ali Akcaagac <aliakc@web.de>
2453M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002455L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456L: http://lists.twibble.org/mailman/listinfo/dc395x/
2457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002458F: Documentation/scsi/dc395x.txt
2459F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002461DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002462M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002463L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002464W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002466F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002467F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002468F: include/linux/tfrc.h
2469F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472W: http://linux-decnet.sourceforge.net
2473L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002474S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002475F: Documentation/networking/decnet.txt
2476F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002479M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002481F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002483DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002484M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002485L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002487F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002490S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002491F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002492F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Doug Warzecha90563ec2005-09-06 15:17:15 -07002494DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002495M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002497F: Documentation/dcdbas.txt
2498F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002499
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002500DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002501M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002502S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002503F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002504
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002505DESIGNWARE USB2 DRD IP DRIVER
2506M: Paul Zimmerman <paulz@synopsys.com>
2507L: linux-usb@vger.kernel.org
2508S: Maintained
2509F: drivers/staging/dwc2/
2510
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002511DESIGNWARE USB3 DRD IP DRIVER
2512M: Felipe Balbi <balbi@ti.com>
2513L: linux-usb@vger.kernel.org
2514L: linux-omap@vger.kernel.org
2515T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2516S: Maintained
2517F: drivers/usb/dwc3/
2518
Kyungmin Park89d07762012-01-10 15:09:09 -08002519DEVICE FREQUENCY (DEVFREQ)
2520M: MyungJoo Ham <myungjoo.ham@samsung.com>
2521M: Kyungmin Park <kyungmin.park@samsung.com>
2522L: linux-kernel@vger.kernel.org
2523S: Maintained
2524F: drivers/devfreq/
2525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002527M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529S: Maintained
2530
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002531DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002532M: Alasdair Kergon <agk@redhat.com>
2533M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002534L: dm-devel@redhat.com
2535W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002536Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002537T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002539F: Documentation/device-mapper/
2540F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002541F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002542F: include/linux/device-mapper.h
2543F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002544
Guenter Roeck335d7c52011-01-26 11:45:49 -08002545DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002546M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002547L: linux-i2c@vger.kernel.org
2548S: Maintained
2549F: drivers/i2c/busses/i2c-diolan-u2c.c
2550
Randy Dunlape7839f22008-10-12 16:11:45 -07002551DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002552M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002554F: Documentation/filesystems/dnotify.txt
2555F: fs/notify/dnotify/
2556F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002559M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2561W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2562W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2563S: Maintained
2564
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002565DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002566M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002568F: Documentation/filesystems/quota.txt
2569F: fs/quota/
2570F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002571F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Bernie Thompson702686a2012-03-01 13:52:13 -08002573DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2574M: Bernie Thompson <bernie@plugable.com>
2575L: linux-fbdev@vger.kernel.org
2576S: Maintained
2577W: http://plugable.com/category/projects/udlfb/
2578F: drivers/video/udlfb.c
2579F: include/video/udlfb.h
2580F: Documentation/fb/udlfb.txt
2581
Randy Dunlape7839f22008-10-12 16:11:45 -07002582DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002583M: Christine Caulfield <ccaulfie@redhat.com>
2584M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002585L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002586W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002587T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002589F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002590
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302591DMA BUFFER SHARING FRAMEWORK
2592M: Sumit Semwal <sumit.semwal@linaro.org>
2593S: Maintained
2594L: linux-media@vger.kernel.org
2595L: dri-devel@lists.freedesktop.org
2596L: linaro-mm-sig@lists.linaro.org
2597F: drivers/base/dma-buf*
2598F: include/linux/dma-buf*
2599F: Documentation/dma-buf-sharing.txt
2600T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2601
Dan Williamsb3e5f262007-08-07 10:26:35 -07002602DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002603M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002604M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002605S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002606F: drivers/dma/
2607F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302608T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2609T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002610
Juerg Haefligerb8250372007-06-09 10:11:16 -04002611DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002612M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002613L: lm-sensors@lm-sensors.org
2614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002615F: Documentation/hwmon/dme1737
2616F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002617
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002618DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002619M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002620L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002621S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002622F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002623
Joe Perches7d2c86b2009-04-07 20:59:01 -07002624DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002625M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002626L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002627T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002629F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002632M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633L: blinux-list@redhat.com
2634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002635F: drivers/char/dtlk.c
2636F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002638DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002639M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002640L: linux-scsi@vger.kernel.org
2641W: http://www.adaptec.com/
2642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002643F: drivers/scsi/dpt*
2644F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002645
Philipp Reisnerb411b362009-09-25 16:07:19 -07002646DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002647P: Philipp Reisner
2648P: Lars Ellenberg
2649M: drbd-dev@lists.linbit.com
2650L: drbd-user@lists.linbit.com
2651W: http://www.drbd.org
2652T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2653T: git git://git.drbd.org/drbd-8.3.git
2654S: Supported
2655F: drivers/block/drbd/
2656F: lib/lru_cache.c
2657F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002658
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002659DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002660M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002661T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002663F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002664F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002665F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002666F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002667F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002668F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002669F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002672M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002673L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002674T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002676F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002677F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002678F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Chris Wilson8daf7472010-09-28 14:07:26 +01002680INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002681M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002682L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002683L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002684T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002685S: Supported
2686F: drivers/gpu/drm/i915
2687F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002688F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002689
Kyungmin Park398a6d42011-11-02 11:33:16 +09002690DRM DRIVERS FOR EXYNOS
2691M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002692M: Joonyoung Shim <jy0922.shim@samsung.com>
2693M: Seung-Woo Kim <sw0312.kim@samsung.com>
2694M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002695L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002696T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002697S: Supported
2698F: drivers/gpu/drm/exynos
2699F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002700F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002701
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002702DRM DRIVERS FOR NVIDIA TEGRA
2703M: Thierry Reding <thierry.reding@avionic-design.de>
2704L: dri-devel@lists.freedesktop.org
2705L: linux-tegra@vger.kernel.org
2706T: git git://gitorious.org/thierryreding/linux.git
2707S: Maintained
2708F: drivers/gpu/drm/tegra/
2709F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2710
Alexey Klimov598df1a2012-11-28 17:16:32 -03002711DSBR100 USB FM RADIO DRIVER
2712M: Alexey Klimov <klimov.linux@gmail.com>
2713L: linux-media@vger.kernel.org
2714T: git git://linuxtv.org/media_tree.git
2715S: Maintained
2716F: drivers/media/radio/dsbr100.c
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002719M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002720L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002722F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Antti Palosaari91952bc2012-10-01 12:28:46 -03002724DVB_USB_AF9015 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/af9015*
2733
2734DVB_USB_AF9035 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/af9035*
2743
2744DVB_USB_ANYSEE 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/anysee*
2753
2754DVB_USB_AU6610 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/au6610*
2763
2764DVB_USB_CE6230 MEDIA DRIVER
2765M: Antti Palosaari <crope@iki.fi>
2766L: linux-media@vger.kernel.org
2767W: http://linuxtv.org/
2768W: http://palosaari.fi/linux/
2769Q: http://patchwork.linuxtv.org/project/linux-media/list/
2770T: git git://linuxtv.org/anttip/media_tree.git
2771S: Maintained
2772F: drivers/media/usb/dvb-usb-v2/ce6230*
2773
Michael Krufkyd099dea2012-10-02 00:56:20 -03002774DVB_USB_CXUSB MEDIA DRIVER
2775M: Michael Krufky <mkrufky@linuxtv.org>
2776L: linux-media@vger.kernel.org
2777W: http://linuxtv.org/
2778W: http://github.com/mkrufky
2779Q: http://patchwork.linuxtv.org/project/linux-media/list/
2780T: git git://linuxtv.org/media_tree.git
2781S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002782F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002783
Antti Palosaari91952bc2012-10-01 12:28:46 -03002784DVB_USB_EC168 MEDIA DRIVER
2785M: Antti Palosaari <crope@iki.fi>
2786L: linux-media@vger.kernel.org
2787W: http://linuxtv.org/
2788W: http://palosaari.fi/linux/
2789Q: http://patchwork.linuxtv.org/project/linux-media/list/
2790T: git git://linuxtv.org/anttip/media_tree.git
2791S: Maintained
2792F: drivers/media/usb/dvb-usb-v2/ec168*
2793
Antti Palosaari55609832013-04-09 20:30:42 -03002794DVB_USB_GL861 MEDIA DRIVER
2795M: Antti Palosaari <crope@iki.fi>
2796L: linux-media@vger.kernel.org
2797W: http://linuxtv.org/
2798Q: http://patchwork.linuxtv.org/project/linux-media/list/
2799T: git git://linuxtv.org/anttip/media_tree.git
2800S: Maintained
2801F: drivers/media/usb/dvb-usb-v2/gl861*
2802
Michael Krufky8856f5f2012-10-02 00:55:50 -03002803DVB_USB_MXL111SF MEDIA DRIVER
2804M: Michael Krufky <mkrufky@linuxtv.org>
2805L: linux-media@vger.kernel.org
2806W: http://linuxtv.org/
2807W: http://github.com/mkrufky
2808Q: http://patchwork.linuxtv.org/project/linux-media/list/
2809T: git git://linuxtv.org/mkrufky/mxl111sf.git
2810S: Maintained
2811F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2812
Antti Palosaari91952bc2012-10-01 12:28:46 -03002813DVB_USB_RTL28XXU 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/rtl28xxu*
2822
2823DVB_USB_V2 MEDIA DRIVER
2824M: Antti Palosaari <crope@iki.fi>
2825L: linux-media@vger.kernel.org
2826W: http://linuxtv.org/
2827W: http://palosaari.fi/linux/
2828Q: http://patchwork.linuxtv.org/project/linux-media/list/
2829T: git git://linuxtv.org/anttip/media_tree.git
2830S: Maintained
2831F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2832F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2833
Jason Baronac0ac382011-08-11 14:36:43 -04002834DYNAMIC DEBUG
2835M: Jason Baron <jbaron@redhat.com>
2836S: Maintained
2837F: lib/dynamic_debug.c
2838F: include/linux/dynamic_debug.h
2839
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002840DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002841M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002842S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002843F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002844
Antti Palosaari91952bc2012-10-01 12:28:46 -03002845E4000 MEDIA DRIVER
2846M: Antti Palosaari <crope@iki.fi>
2847L: linux-media@vger.kernel.org
2848W: http://linuxtv.org/
2849W: http://palosaari.fi/linux/
2850Q: http://patchwork.linuxtv.org/project/linux-media/list/
2851T: git git://linuxtv.org/anttip/media_tree.git
2852S: Maintained
2853F: drivers/media/tuners/e4000*
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002856M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002857L: linux-eata@i-connect.net
2858L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002860F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002863M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864L: linux-scsi@vger.kernel.org
2865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002866F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002869M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002870L: linux-eata@i-connect.net
2871L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002873F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
2875EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002876M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002877L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878W: http://ebtables.sourceforge.net/
2879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002880F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002881F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002882F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Antti Palosaari91952bc2012-10-01 12:28:46 -03002884EC100 MEDIA DRIVER
2885M: Antti Palosaari <crope@iki.fi>
2886L: linux-media@vger.kernel.org
2887W: http://linuxtv.org/
2888W: http://palosaari.fi/linux/
2889Q: http://patchwork.linuxtv.org/project/linux-media/list/
2890T: git git://linuxtv.org/anttip/media_tree.git
2891S: Maintained
2892F: drivers/media/dvb-frontends/ec100*
2893
Michael Halcrow237fead2006-10-04 02:16:22 -07002894ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002895M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002896M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002897L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002898W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002900F: Documentation/filesystems/ecryptfs.txt
2901F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002902
Alan Coxda9bb1d2006-01-18 17:44:13 -08002903EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002904M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002905L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002906W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002908F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002909F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002910F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002911
Borislav Petkovc476c232009-05-20 20:31:58 +02002912EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002913M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002914M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002915L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002916W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002917S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002918F: drivers/edac/amd64_edac*
2919
Ralf Baechlef65aad42012-10-17 00:39:09 +02002920EDAC-CAVIUM
2921M: Ralf Baechle <ralf@linux-mips.org>
2922M: David Daney <david.daney@cavium.com>
2923L: linux-edac@vger.kernel.org
2924L: linux-mips@linux-mips.org
2925W: bluesmoke.sourceforge.net
2926S: Supported
2927F: drivers/edac/octeon_edac*
2928
Dave Peterson0e438e32006-03-26 01:38:55 -08002929EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002930M: Mark Gross <mark.gross@intel.com>
2931M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002932L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002933W: bluesmoke.sourceforge.net
2934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002935F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002936
2937EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002938M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002939L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002940W: bluesmoke.sourceforge.net
2941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002942F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002943
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002944EDAC-GHES
2945M: Mauro Carvalho Chehab <mchehab@redhat.com>
2946L: linux-edac@vger.kernel.org
2947W: bluesmoke.sourceforge.net
2948S: Maintained
2949F: drivers/edac/ghes-edac.c
2950
Douglas Thompson6bc78402007-07-19 01:50:12 -07002951EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002952M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002953L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002954W: bluesmoke.sourceforge.net
2955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002956F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002957
2958EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002959M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002960L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002961W: bluesmoke.sourceforge.net
2962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002964
2965EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002966M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002967L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002968W: bluesmoke.sourceforge.net
2969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002970F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002971
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002972EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002973M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002974L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002975W: bluesmoke.sourceforge.net
2976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002977F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002978
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002979EDAC-I7300
2980M: Mauro Carvalho Chehab <mchehab@redhat.com>
2981L: linux-edac@vger.kernel.org
2982W: bluesmoke.sourceforge.net
2983S: Maintained
2984F: drivers/edac/i7300_edac.c
2985
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002986EDAC-I7CORE
2987M: Mauro Carvalho Chehab <mchehab@redhat.com>
2988L: linux-edac@vger.kernel.org
2989W: bluesmoke.sourceforge.net
2990S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002991F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002992
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002993EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002994M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302995M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002996L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002997W: bluesmoke.sourceforge.net
2998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002999F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003000
3001EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003002M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003003L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003004W: bluesmoke.sourceforge.net
3005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003006F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003007
Dave Peterson0e438e32006-03-26 01:38:55 -08003008EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003009M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003010L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003011W: bluesmoke.sourceforge.net
3012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003013F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003014
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003015EDAC-SBRIDGE
3016M: Mauro Carvalho Chehab <mchehab@redhat.com>
3017L: linux-edac@vger.kernel.org
3018W: bluesmoke.sourceforge.net
3019S: Maintained
3020F: drivers/edac/sb_edac.c
3021
Clemens Ladischaf399172011-01-10 16:32:54 +01003022EDIROL UA-101/UA-1000 DRIVER
3023M: Clemens Ladisch <clemens@ladisch.de>
3024L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3025T: git git://git.alsa-project.org/alsa-kernel.git
3026S: Maintained
3027F: sound/usb/misc/ua101.c
3028
Matt Fleming1f7df952012-10-03 10:04:02 +01003029EXTENSIBLE FIRMWARE INTERFACE (EFI)
3030M: Matt Fleming <matt.fleming@intel.com>
3031L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003032T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003033S: Maintained
3034F: Documentation/x86/efi-stub.txt
3035F: arch/ia64/kernel/efi.c
3036F: arch/x86/boot/compressed/eboot.[ch]
3037F: arch/x86/include/asm/efi.h
3038F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003039F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003040F: include/linux/efi*.h
3041
Matt Flemingd68772b2013-02-08 16:27:24 +00003042EFI VARIABLE FILESYSTEM
3043M: Matthew Garrett <matthew.garrett@nebula.com>
3044M: Jeremy Kerr <jk@ozlabs.org>
3045M: Matt Fleming <matt.fleming@intel.com>
3046T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3047L: linux-efi@vger.kernel.org
3048S: Maintained
3049F: fs/efivarfs/
3050
Peter Jones85a00d92010-09-22 13:05:04 -07003051EFIFB FRAMEBUFFER DRIVER
3052L: linux-fbdev@vger.kernel.org
3053M: Peter Jones <pjones@redhat.com>
3054S: Maintained
3055F: drivers/video/efifb.c
3056
Josh Triplett0bee8d22006-07-30 03:03:58 -07003057EFS FILESYSTEM
3058W: http://aeschi.ch.eu.org/efs/
3059S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003060F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003061
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003062EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003063M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3064M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003065L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003067F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003068
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003069EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003070M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003071L: netdev@vger.kernel.org
3072S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003073F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003074
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003075EM28XX VIDEO4LINUX DRIVER
3076M: Mauro Carvalho Chehab <mchehab@redhat.com>
3077L: linux-media@vger.kernel.org
3078W: http://linuxtv.org
3079T: git git://linuxtv.org/media_tree.git
3080S: Maintained
3081F: drivers/media/usb/em28xx/
3082
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003083EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003084M: Paul Gortmaker <paul.gortmaker@windriver.com>
3085M: Matt Mackall <mpm@selenic.com>
3086M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003087L: linux-embedded@vger.kernel.org
3088S: Maintained
3089
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003090EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003091M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003092L: linux-scsi@vger.kernel.org
3093W: http://sourceforge.net/projects/lpfcxxxx
3094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003095F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003096
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003097ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003098M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003099S: Maintained
3100F: drivers/misc/cb710/
3101F: drivers/mmc/host/cb710-mmc.*
3102F: include/linux/cb710.h
3103
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003104ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3105M: Maxim Levitsky <maximlevitsky@gmail.com>
3106S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003107F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003108
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003109EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003110M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003111S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003112T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003113F: drivers/video/s1d13xxxfb.c
3114F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003117M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003118L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003119L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003120W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: include/linux/netfilter_bridge/
3123F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003126M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003127L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003129F: Documentation/filesystems/ext2.txt
3130F: fs/ext2/
3131F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
3133EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003134M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003135M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003136M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003137L: linux-ext4@vger.kernel.org
3138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003139F: Documentation/filesystems/ext3.txt
3140F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003141
3142EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003143M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003144M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003145L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003146W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003147Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003149F: Documentation/filesystems/ext4.txt
3150F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Mimi Zoharc5532b02011-08-17 18:52:24 -04003152Extended Verification Module (EVM)
3153M: Mimi Zohar <zohar@us.ibm.com>
3154S: Supported
3155F: security/integrity/evm/
3156
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003157EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3158M: MyungJoo Ham <myungjoo.ham@samsung.com>
3159M: Chanwoo Choi <cw00.choi@samsung.com>
3160L: linux-kernel@vger.kernel.org
3161S: Maintained
3162F: drivers/extcon/
3163F: Documentation/extcon/
3164
Jingoo Han0a799512012-02-06 11:30:39 +09003165EXYNOS DP DRIVER
3166M: Jingoo Han <jg1.han@samsung.com>
3167L: linux-fbdev@vger.kernel.org
3168S: Maintained
3169F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003170F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003171
Donghwa Lee33ad3912012-03-06 11:44:58 +09003172EXYNOS MIPI DISPLAY DRIVERS
3173M: Inki Dae <inki.dae@samsung.com>
3174M: Donghwa Lee <dh09.lee@samsung.com>
3175M: Kyungmin Park <kyungmin.park@samsung.com>
3176L: linux-fbdev@vger.kernel.org
3177S: Maintained
3178F: drivers/video/exynos/exynos_mipi*
3179F: include/video/exynos_mipi*
3180
Jean Delvaree53004e2006-01-09 23:26:14 +01003181F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003182M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003183L: lm-sensors@lm-sensors.org
3184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003185F: Documentation/hwmon/f71805f
3186F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003187
Michael Büscheea977e2012-04-02 12:14:32 -03003188FC0011 TUNER DRIVER
3189M: Michael Buesch <m@bues.ch>
3190L: linux-media@vger.kernel.org
3191S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003192F: drivers/media/tuners/fc0011.h
3193F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003194
Antti Palosaari91952bc2012-10-01 12:28:46 -03003195FC2580 MEDIA DRIVER
3196M: Antti Palosaari <crope@iki.fi>
3197L: linux-media@vger.kernel.org
3198W: http://linuxtv.org/
3199W: http://palosaari.fi/linux/
3200Q: http://patchwork.linuxtv.org/project/linux-media/list/
3201T: git git://linuxtv.org/anttip/media_tree.git
3202S: Maintained
3203F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Eric Paris88b2dbd2010-08-18 12:25:50 -04003205FANOTIFY
3206M: Eric Paris <eparis@redhat.com>
3207S: Maintained
3208F: fs/notify/fanotify/
3209F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003210F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003213M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214W: http://www.farsite.co.uk/
3215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003216F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Akinobu Mitac5408b82007-04-23 14:41:20 -07003218FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003219M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003221F: Documentation/fault-injection/
3222F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003223
Robert Lovecae727d2010-02-16 12:16:00 -08003224FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3225M: Robert Love <robert.w.love@intel.com>
3226L: devel@open-fcoe.org
3227W: www.Open-FCoE.org
3228S: Supported
3229F: drivers/scsi/libfc/
3230F: drivers/scsi/fcoe/
3231F: include/scsi/fc/
3232F: include/scsi/libfc.h
3233F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003234F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003235
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003236FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003237M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003238L: linux-fsdevel@vger.kernel.org
3239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003240F: include/linux/fcntl.h
3241F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003242F: include/uapi/linux/fcntl.h
3243F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003244F: fs/fcntl.c
3245F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003246
3247FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003249L: linux-fsdevel@vger.kernel.org
3250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003252
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003253FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003254M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003255L: lm-sensors@lm-sensors.org
3256S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003257F: drivers/hwmon/f75375s.c
3258F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003259
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003260FIREWIRE AUDIO DRIVERS
3261M: Clemens Ladisch <clemens@ladisch.de>
3262L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3263T: git git://git.alsa-project.org/alsa-kernel.git
3264S: Maintained
3265F: sound/firewire/
3266
Stefan Richtereb86ec52012-11-03 09:25:20 +01003267FIREWIRE MEDIA DRIVERS (firedtv)
3268M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3269L: linux-media@vger.kernel.org
3270L: linux1394-devel@lists.sourceforge.net
3271T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3272S: Maintained
3273F: drivers/media/firewire/
3274
Chris Boota511ce32012-04-14 17:50:35 -07003275FIREWIRE SBP-2 TARGET
3276M: Chris Boot <bootc@bootc.net>
3277L: linux-scsi@vger.kernel.org
3278L: target-devel@vger.kernel.org
3279L: linux1394-devel@lists.sourceforge.net
3280T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3281S: Maintained
3282F: drivers/target/sbp/
3283
Joe Perches7d2c86b2009-04-07 20:59:01 -07003284FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003285M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003286L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003287W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003288T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003290F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003291F: include/linux/firewire.h
3292F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003293F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003294
3295FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003296M: Ming Lei <ming.lei@canonical.com>
3297L: linux-kernel@vger.kernel.org
3298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003299F: Documentation/firmware_class/
3300F: drivers/base/firmware*.c
3301F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003302
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003303FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3304M: Joshua Morris <josh.h.morris@us.ibm.com>
3305M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3306S: Maintained
3307F: drivers/block/rsxx/
3308
Jiri Kosina8206f662012-05-18 13:52:29 +02003309FLOPPY DRIVER
3310M: Jiri Kosina <jkosina@suse.cz>
3311T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3312S: Odd fixes
3313F: drivers/block/floppy.c
3314
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003315FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003316M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003317W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003319F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003320
3321FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003322L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003323S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003324F: drivers/net/wan/dlci.c
3325F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003328M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003329L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003331Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003332T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003334F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003335F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003336F: drivers/video/
3337F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003338F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003339F: include/uapi/video/
3340F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Timur Tabia57c1882012-10-16 17:33:42 -05003342FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003343M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003344L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003345S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003346F: drivers/video/fsl-diu-fb.*
3347
Zhang Wei173acc72008-03-01 07:42:48 -07003348FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003349M: Li Yang <leoli@freescale.com>
3350M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003351L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003353F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003354
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003355FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003356M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003357L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003358L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003360F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003361
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003362FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003363M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003364L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003365L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003366S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003367F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003368F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003369
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003370FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3372M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003373L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003374L: netdev@vger.kernel.org
3375S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003376F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003377F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003378
Timur Tabid9e9d822008-04-24 08:45:26 +10003379FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003380L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003381S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003382F: arch/powerpc/sysdev/qe_lib/
3383F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003384
Joe Perchesb55ef9292009-10-26 16:49:46 -07003385FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003386M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003387L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003388L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003389S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003390F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003391
Li Yangbeaf53b2007-05-25 13:54:02 +08003392FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003393M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003394L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003395L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003396S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003397F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003398
Timur Tabid9e9d822008-04-24 08:45:26 +10003399FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003400M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003401L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003402S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003403F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003404
3405FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003406M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003407L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003408L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003409S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003410F: sound/soc/fsl/fsl*
3411F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003412
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003414M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003417F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Pavel Machek71038f52009-01-15 13:51:02 -08003419FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003420M: Pavel Machek <pavel@ucw.cz>
3421M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003422L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003424F: Documentation/power/freezing-of-tasks.txt
3425F: include/linux/freezer.h
3426F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003427
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003428FRONTSWAP API
3429M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3430L: linux-kernel@vger.kernel.org
3431S: Maintained
3432F: mm/frontswap.c
3433F: include/linux/frontswap.h
3434
David Howellsa5432f5a2009-04-20 15:46:45 +01003435FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003436M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003437L: linux-cachefs@redhat.com
3438S: Supported
3439F: Documentation/filesystems/caching/
3440F: fs/fscache/
3441F: include/linux/fscache*.h
3442
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003443F2FS FILE SYSTEM
3444M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3445L: linux-f2fs-devel@lists.sourceforge.net
3446W: http://en.wikipedia.org/wiki/F2FS
3447T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3448S: Maintained
3449F: Documentation/filesystems/f2fs.txt
3450F: fs/f2fs/
3451F: include/linux/f2fs_fs.h
3452
David Howells5ab7ffe2007-04-10 15:10:45 +01003453FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003454M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003456F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Jonathan Woithe20b93732008-06-11 10:14:56 +09303458FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303459M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003460L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003462F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303463
Heungjun Kim4da621b62011-11-11 08:05:33 -03003464FUJITSU M-5MO LS CAMERA ISP DRIVER
3465M: Kyungmin Park <kyungmin.park@samsung.com>
3466M: Heungjun Kim <riverful.kim@samsung.com>
3467L: linux-media@vger.kernel.org
3468S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003469F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003470F: include/media/m5mols.h
3471
Robert Gerlach2d24c492012-01-18 14:26:22 +01003472FUJITSU TABLET EXTRAS
3473M: Robert Gerlach <khnz@gmx.de>
3474L: platform-driver-x86@vger.kernel.org
3475S: Maintained
3476F: drivers/platform/x86/fujitsu-tablet.c
3477
Miklos Szeredi04578f12005-09-09 13:10:22 -07003478FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003479M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003480L: fuse-devel@lists.sourceforge.net
3481W: http://fuse.sourceforge.net/
3482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003483F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003484F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003487M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003489S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003490F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
3492GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003493M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494L: linux-scsi@vger.kernel.org
3495W: http://www.icp-vortex.com/
3496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003497F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003499GEMTEK FM RADIO RECEIVER DRIVER
3500M: Hans Verkuil <hverkuil@xs4all.nl>
3501L: linux-media@vger.kernel.org
3502T: git git://linuxtv.org/media_tree.git
3503W: http://linuxtv.org
3504S: Maintained
3505F: drivers/media/radio/radio-gemtek*
3506
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003507GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003508M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003510F: drivers/i2c/busses/i2c-gpio.c
3511F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003512
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003513GENERIC GPIO I2C MULTIPLEXER DRIVER
3514M: Peter Korsgaard <peter.korsgaard@barco.com>
3515L: linux-i2c@vger.kernel.org
3516S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003517F: drivers/i2c/muxes/i2c-mux-gpio.c
3518F: include/linux/i2c-mux-gpio.h
3519F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003520
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003521GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003522M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003525F: drivers/net/wan/c101.c
3526F: drivers/net/wan/hd6457*
3527F: drivers/net/wan/hdlc*
3528F: drivers/net/wan/n2.c
3529F: drivers/net/wan/pc300too.c
3530F: drivers/net/wan/pci200syn.c
3531F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003533GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003534M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003535L: linux-arch@vger.kernel.org
3536T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3537S: Maintained
3538F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003539F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003540
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003541GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003542M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003543L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003544S: Supported
3545F: drivers/uio/uio_pci_generic.c
3546
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003547GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003549L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003550W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003551T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3552T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003554F: Documentation/filesystems/gfs2*.txt
3555F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003556F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003557
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003558GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003559M: Hansjoerg Lipp <hjlipp@web.de>
3560M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003561L: gigaset307x-common@lists.sourceforge.net
3562W: http://gigaset307x.sourceforge.net/
3563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: Documentation/isdn/README.gigaset
3565F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003566F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003567
Grant Likelya0dc00b2011-02-12 01:48:14 -07003568GPIO SUBSYSTEM
Grant Likely19624232013-04-08 11:51:42 +01003569M: Grant Likely <grant.likely@linaro.org>
Linus Walleije4651a92012-08-06 09:52:52 +02003570M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003571S: Maintained
3572T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003573F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003574F: drivers/gpio/
3575F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003576F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003577
Harry Wei71a6d0a2011-05-11 15:13:33 -07003578GRE DEMULTIPLEXER DRIVER
3579M: Dmitry Kozlov <xeb@mail.ru>
3580L: netdev@vger.kernel.org
3581S: Maintained
3582F: net/ipv4/gre.c
3583F: include/net/gre.h
3584
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003585GRETH 10/100/1G Ethernet MAC device driver
3586M: Kristoffer Glembo <kristoffer@gaisler.com>
3587L: netdev@vger.kernel.org
3588S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003589F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003590
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003591GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003592M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003593L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003594T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003595S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003596F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003597
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003598GSPCA GL860 SUBDRIVER
3599M: Olivier Lorin <o.lorin@laposte.net>
3600L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003601T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003602S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003603F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003604
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003605GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003606M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003607L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003608T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003609S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003610F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003611
3612GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003613M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003614L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003615T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003616S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003617F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003618
Brian Johnson261982f2009-07-19 15:58:56 -03003619GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003620M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003621L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003622T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003623S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003624F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003625
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003626GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003627M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003628L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003629T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003630S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003631F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003632
3633GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003634M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003635L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003636T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003637S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003638F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003639
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003640STK1160 USB VIDEO CAPTURE DRIVER
3641M: Ezequiel Garcia <elezegarcia@gmail.com>
3642L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003643T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003644S: Maintained
3645F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003646
Harry Wei71a6d0a2011-05-11 15:13:33 -07003647HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3648M: Frank Seidel <frank@f-seidel.de>
3649L: platform-driver-x86@vger.kernel.org
3650W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3651S: Maintained
3652F: drivers/platform/x86/hdaps.c
3653
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003654HDPVR USB VIDEO ENCODER DRIVER
3655M: Hans Verkuil <hverkuil@xs4all.nl>
3656L: linux-media@vger.kernel.org
3657T: git git://linuxtv.org/media_tree.git
3658W: http://linuxtv.org
3659S: Odd Fixes
3660F: drivers/media/usb/hdpvr
3661
Harry Wei71a6d0a2011-05-11 15:13:33 -07003662HWPOISON MEMORY FAILURE HANDLING
3663M: Andi Kleen <andi@firstfloor.org>
3664L: linux-mm@kvack.org
3665T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3666S: Maintained
3667F: mm/memory-failure.c
3668F: mm/hwpoison-inject.c
3669
3670HYPERVISOR VIRTUAL CONSOLE DRIVER
3671L: linuxppc-dev@lists.ozlabs.org
3672S: Odd Fixes
3673F: drivers/tty/hvc/
3674
Michael Buesch844dd052006-06-26 00:24:59 -07003675HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003676M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003677M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003678L: lm-sensors@lm-sensors.org
3679W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003680T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003681T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003682S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003683F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003684F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003685F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003686
3687HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003688M: Matt Mackall <mpm@selenic.com>
3689M: Herbert Xu <herbert@gondor.apana.org.au>
3690S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003691F: Documentation/hw_random.txt
3692F: drivers/char/hw_random/
3693F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003694
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003695HARDWARE SPINLOCK CORE
3696M: Ohad Ben-Cohen <ohad@wizery.com>
3697S: Maintained
3698F: Documentation/hwspinlock.txt
3699F: drivers/hwspinlock/hwspinlock_*
3700F: include/linux/hwspinlock.h
3701
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003703L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Antti Palosaari91952bc2012-10-01 12:28:46 -03003707HD29L2 MEDIA DRIVER
3708M: Antti Palosaari <crope@iki.fi>
3709L: linux-media@vger.kernel.org
3710W: http://linuxtv.org/
3711W: http://palosaari.fi/linux/
3712Q: http://patchwork.linuxtv.org/project/linux-media/list/
3713T: git git://linuxtv.org/anttip/media_tree.git
3714S: Maintained
3715F: drivers/media/dvb-frontends/hd29l2*
3716
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003717HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003718M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003719L: iss_storagedev@hp.com
3720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003721F: Documentation/blockdev/cpqarray.txt
3722F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003723
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003724HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003725M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003726L: iss_storagedev@hp.com
3727S: Supported
3728F: Documentation/scsi/hpsa.txt
3729F: drivers/scsi/hpsa*.[ch]
3730F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003731F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003732
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003733HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003734M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003735L: iss_storagedev@hp.com
3736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003737F: Documentation/blockdev/cciss.txt
3738F: drivers/block/cciss*
3739F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003740F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003741
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003743L: linux-fsdevel@vger.kernel.org
3744S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003745F: Documentation/filesystems/hfs.txt
3746F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
3748HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003749M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750L: linux-nvidia@lists.surfsouth.com
3751W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003753F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003755HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003756M: Pavel Machek <pavel@ucw.cz>
3757M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003758L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003759S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003760F: arch/x86/power/
3761F: drivers/base/power/
3762F: kernel/power/
3763F: include/linux/suspend.h
3764F: include/linux/freezer.h
3765F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003766F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003767
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003768HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003769M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003770L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003771T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003773F: drivers/hid/
3774F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003775F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003776
Ingo Molnar38bed542007-02-22 09:09:34 +01003777HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003778M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003779T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: Documentation/timers/
3782F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003783F: kernel/time/clockevents.c
3784F: kernel/time/tick*.*
3785F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003786F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003787F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003791S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003792F: drivers/net/hamradio/dmascc.c
3793F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003795HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003796M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003797W: http://www.highpoint-tech.com
3798S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003799F: Documentation/scsi/hptiop.txt
3800F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003803M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804L: linux-hippi@sunsite.dk
3805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003806F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003807F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003808F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003809F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
Jouni Malinenff1d2762005-05-12 22:54:16 -04003811HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003812M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003813L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003814L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003815W: http://hostap.epitest.fi/
3816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003817F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003818
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003819HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003820L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003821S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003822F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003823
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003824HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003826S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003827F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003828
Joe Perches7d2c86b2009-04-07 20:59:01 -07003829HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003832F: Documentation/timers/hpet.txt
3833F: drivers/char/hpet.c
3834F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003835F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003836
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003837HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003838M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003840F: arch/x86/kernel/hpet.c
3841F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003842
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003844M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003847F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
Joe Perches7d2c86b2009-04-07 20:59:01 -07003849HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003850M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003851W: http://www.pharscape.org
3852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003853F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003854
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003855HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003856M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003857L: linux-input@vger.kernel.org
3858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003859F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003862M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003864F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003866Hyper-V CORE AND DRIVERS
3867M: K. Y. Srinivasan <kys@microsoft.com>
3868M: Haiyang Zhang <haiyangz@microsoft.com>
3869L: devel@linuxdriverproject.org
3870S: Maintained
3871F: drivers/hv/
3872F: drivers/hid/hid-hyperv.c
3873F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003874
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003875I2C OVER PARALLEL PORT
3876M: Jean Delvare <khali@linux-fr.org>
3877L: linux-i2c@vger.kernel.org
3878S: Maintained
3879F: Documentation/i2c/busses/i2c-parport
3880F: Documentation/i2c/busses/i2c-parport-light
3881F: drivers/i2c/busses/i2c-parport.c
3882F: drivers/i2c/busses/i2c-parport-light.c
3883
3884I2C/SMBUS CONTROLLER DRIVERS FOR PC
3885M: Jean Delvare <khali@linux-fr.org>
3886L: linux-i2c@vger.kernel.org
3887S: Maintained
3888F: Documentation/i2c/busses/i2c-ali1535
3889F: Documentation/i2c/busses/i2c-ali1563
3890F: Documentation/i2c/busses/i2c-ali15x3
3891F: Documentation/i2c/busses/i2c-amd756
3892F: Documentation/i2c/busses/i2c-amd8111
3893F: Documentation/i2c/busses/i2c-i801
3894F: Documentation/i2c/busses/i2c-nforce2
3895F: Documentation/i2c/busses/i2c-piix4
3896F: Documentation/i2c/busses/i2c-sis5595
3897F: Documentation/i2c/busses/i2c-sis630
3898F: Documentation/i2c/busses/i2c-sis96x
3899F: Documentation/i2c/busses/i2c-via
3900F: Documentation/i2c/busses/i2c-viapro
3901F: drivers/i2c/busses/i2c-ali1535.c
3902F: drivers/i2c/busses/i2c-ali1563.c
3903F: drivers/i2c/busses/i2c-ali15x3.c
3904F: drivers/i2c/busses/i2c-amd756.c
3905F: drivers/i2c/busses/i2c-amd756-s4882.c
3906F: drivers/i2c/busses/i2c-amd8111.c
3907F: drivers/i2c/busses/i2c-i801.c
3908F: drivers/i2c/busses/i2c-isch.c
3909F: drivers/i2c/busses/i2c-nforce2.c
3910F: drivers/i2c/busses/i2c-nforce2-s4985.c
3911F: drivers/i2c/busses/i2c-piix4.c
3912F: drivers/i2c/busses/i2c-sis5595.c
3913F: drivers/i2c/busses/i2c-sis630.c
3914F: drivers/i2c/busses/i2c-sis96x.c
3915F: drivers/i2c/busses/i2c-via.c
3916F: drivers/i2c/busses/i2c-viapro.c
3917
Neil Hormancb7f07a2013-02-10 11:59:03 -05003918I2C/SMBUS ISMT DRIVER
3919M: Seth Heasley <seth.heasley@intel.com>
3920M: Neil Horman <nhorman@tuxdriver.com>
3921L: linux-i2c@vger.kernel.org
3922F: drivers/i2c/busses/i2c-ismt.c
3923F: Documentation/i2c/busses/i2c-ismt
3924
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003925I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003926M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003927L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003928S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003929F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003930
Jean Delvare5b543962005-08-15 19:51:02 +02003931I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003932M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003933L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003934W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003935T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003937F: Documentation/i2c/
3938F: drivers/i2c/
3939F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003940F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003941F: include/uapi/linux/i2c.h
3942F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003944I2C-TAOS-EVM DRIVER
3945M: Jean Delvare <khali@linux-fr.org>
3946L: linux-i2c@vger.kernel.org
3947S: Maintained
3948F: Documentation/i2c/busses/i2c-taos-evm
3949F: drivers/i2c/busses/i2c-taos-evm.c
3950
Till Harbaume8c76ee2007-05-01 23:26:35 +02003951I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003952M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003953L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003954W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003956F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003959M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003961F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
3963i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003964M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003965T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966S: Maintained
3967
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003969M: Tony Luck <tony.luck@intel.com>
3970M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003972T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
Kent Yoder956c2032012-09-07 04:17:01 +08003976IBM Power in-Nest Crypto Acceleration
3977M: Kent Yoder <key@linux.vnet.ibm.com>
3978L: linux-crypto@vger.kernel.org
3979S: Supported
3980F: drivers/crypto/nx/
3981
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003982IBM Power 842 compression accelerator
3983M: Robert Jennings <rcj@linux.vnet.ibm.com>
3984S: Supported
3985F: drivers/crypto/nx/nx-842.c
3986F: include/linux/nx842.h
3987
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003989M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003991F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
Santiago Leon9d348af2010-09-03 18:29:53 +00003993IBM Power Virtual Ethernet Device Driver
3994M: Santiago Leon <santil@linux.vnet.ibm.com>
3995L: netdev@vger.kernel.org
3996S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003997F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003998
Robert Jennings4b7652c2012-07-31 12:34:36 -05003999IBM Power Virtual SCSI/FC Device Drivers
4000M: Robert Jennings <rcj@linux.vnet.ibm.com>
4001L: linux-scsi@vger.kernel.org
4002S: Supported
4003F: drivers/scsi/ibmvscsi/
4004X: drivers/scsi/ibmvscsi/ibmvstgt.c
4005
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006IBM ServeRAID RAID DRIVER
4007P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07004008M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004011F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004013ICH LPC AND GPIO DRIVER
4014M: Peter Tyser <ptyser@xes-inc.com>
4015S: Maintained
4016F: drivers/mfd/lpc_ich.c
4017F: drivers/gpio/gpio-ich.c
4018
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004019IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004020M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004022Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004023T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004025F: Documentation/ide/
4026F: drivers/ide/
4027F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
Ike Panhc6cb8c132011-08-25 22:28:45 +08004029IDEAPAD LAPTOP EXTRAS DRIVER
4030M: Ike Panhc <ike.pan@canonical.com>
4031L: platform-driver-x86@vger.kernel.org
4032W: http://launchpad.net/ideapad-laptop
4033S: Maintained
4034F: drivers/platform/x86/ideapad-laptop.c
4035
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004036IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004037M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004038L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004040F: Documentation/cdrom/ide-cd
4041F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
Andy Henroid27471fd2008-10-09 11:45:22 -07004043IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004044M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004045L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004047F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004048
Sergey Lapin02cf2282009-06-08 12:18:50 +00004049IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004050M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004052L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004053W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004054T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004055S: Maintained
4056F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004057F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004058F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004059
Sean Young40ad4a32012-11-19 10:32:53 -03004060IGUANAWORKS USB IR TRANSCEIVER
4061M: Sean Young <sean@mess.org>
4062L: linux-media@vger.kernel.org
4063S: Maintained
4064F: drivers/media/rc/iguanair.c
4065
Ameya Palande9545f862012-01-10 09:00:58 -08004066IIO SUBSYSTEM AND DRIVERS
4067M: Jonathan Cameron <jic23@cam.ac.uk>
4068L: linux-iio@vger.kernel.org
4069S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004070F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004071F: drivers/staging/iio/
4072
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004073IKANOS/ADI EAGLE ADSL USB DRIVER
4074M: Matthieu Castet <castet.matthieu@free.fr>
4075M: Stanislaw Gruszka <stf_xl@wp.pl>
4076S: Maintained
4077F: drivers/usb/atm/ueagle-atm.c
4078
Guenter Roecke89ab512013-03-08 08:13:09 -08004079INA209 HARDWARE MONITOR DRIVER
4080M: Guenter Roeck <linux@roeck-us.net>
4081L: lm-sensors@lm-sensors.org
4082S: Maintained
4083F: Documentation/hwmon/ina209
4084F: Documentation/devicetree/bindings/i2c/ina209.txt
4085F: drivers/hwmon/ina209.c
4086
4087INA2XX HARDWARE MONITOR DRIVER
4088M: Guenter Roeck <linux@roeck-us.net>
4089L: lm-sensors@lm-sensors.org
4090S: Maintained
4091F: Documentation/hwmon/ina2xx
4092F: drivers/hwmon/ina2xx.c
4093F: include/linux/platform_data/ina2xx.h
4094
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004095INDUSTRY PACK SUBSYSTEM (IPACK)
4096M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4097M: Jens Taprogge <jens.taprogge@taprogge.org>
4098M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4099L: industrypack-devel@lists.sourceforge.net
4100W: http://industrypack.sourceforge.net
4101S: Maintained
4102F: drivers/ipack/
4103
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004104INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004105M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004106S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004107F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004108
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004110L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004111S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004112F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
4114INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004115M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004116M: Sean Hefty <sean.hefty@intel.com>
4117M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004118L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004119W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004120Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004121T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004123F: Documentation/infiniband/
4124F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004125F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Robert Lovec9f04f52005-07-15 12:21:07 -04004127INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: John McCutchan <john@johnmccutchan.com>
4129M: Robert Love <rlove@rlove.org>
4130M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004132F: Documentation/filesystems/inotify.txt
4133F: fs/notify/inotify/
4134F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004135F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004136
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004137INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004138M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4139M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004140L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004141Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004142T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004144F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004145F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004146F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004147F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004148
Henrik Rydberg3267a872010-06-24 19:10:40 -07004149INPUT MULTITOUCH (MT) PROTOCOL
4150M: Henrik Rydberg <rydberg@euromail.se>
4151L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004152T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004153S: Maintained
4154F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004155F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004156K: \b(ABS|SYN)_MT_
4157
Dave Jiang4ac13e12011-07-29 17:16:55 -07004158INTEL C600 SERIES SAS CONTROLLER DRIVER
4159M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004160M: Lukasz Dorau <lukasz.dorau@intel.com>
4161M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004162M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004163L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004164T: git git://git.code.sf.net/p/intel-sas/isci
4165S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004166F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004167
Len Brown26717172010-03-08 14:07:30 -05004168INTEL IDLE DRIVER
4169M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004170L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004171T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004172S: Supported
4173F: drivers/idle/intel_idle.c
4174
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004175INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004176M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004177L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004179F: Documentation/fb/intelfb.txt
4180F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004181
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004183M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004184L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004186F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304188INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004189M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004190L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304191W: http://www.lesswatts.org/projects/acpi/
4192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004193F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304194
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: arch/x86/kernel/microcode_core.c
4199F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004201INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004202M: Dan Williams <djbw@fb.com>
4203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004204F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004205
David Woodhouse6c8909b2008-10-18 16:12:17 +01004206INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004207M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004208L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004209T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004210S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004211F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004212F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004213
Dan Williamsb3e5f262007-08-07 10:26:35 -07004214INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004215M: Dan Williams <djbw@fb.com>
4216S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004217F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004218
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004219INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004220M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004222F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4223F: arch/arm/mach-ixp4xx/include/mach/npe.h
4224F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4225F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004226F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004227F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004228
Michael Buesch844dd052006-06-26 00:24:59 -07004229INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004230M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004232F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004233
Jeff Kirsher0d164402010-10-05 01:15:17 +00004234INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004235M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4236M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4237M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004238M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4239M: Don Skidmore <donald.c.skidmore@intel.com>
4240M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004241M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004242M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004243M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004244M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004245L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004246W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004247W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004248T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4249T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004251F: Documentation/networking/e100.txt
4252F: Documentation/networking/e1000.txt
4253F: Documentation/networking/e1000e.txt
4254F: Documentation/networking/igb.txt
4255F: Documentation/networking/igbvf.txt
4256F: Documentation/networking/ixgb.txt
4257F: Documentation/networking/ixgbe.txt
4258F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004259F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004261INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4262M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004263L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004265F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004266F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004267F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004268
Shane Wang4bd96a72010-03-10 14:36:10 +08004269INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004270M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4271M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004272M: Shane Wang <shane.wang@intel.com>
4273L: tboot-devel@lists.sourceforge.net
4274W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004275T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004276S: Supported
4277F: Documentation/intel_txt.txt
4278F: include/linux/tboot.h
4279F: arch/x86/kernel/tboot.c
4280
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004281INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004282M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004283M: linux-wimax@intel.com
4284L: wimax@linuxwimax.org
4285S: Supported
4286W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004287F: Documentation/wimax/README.i2400m
4288F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004289F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004290
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004291INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4292M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004293L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004294S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004295F: drivers/net/wireless/iwlegacy/
4296
Zhu Yib481de92007-09-25 17:54:57 -07004297INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004298M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004299M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004300M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004301L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004302W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004303T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004305F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004306
Tomas Winklerde8fe022012-05-09 16:39:02 +03004307INTEL MANAGEMENT ENGINE (mei)
4308M: Tomas Winkler <tomas.winkler@intel.com>
4309L: linux-kernel@vger.kernel.org
4310S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004311F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004312F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08004313F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004314
Ralf Baechlecb109a02007-08-30 23:56:30 -07004315IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004316M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317L: linux-mips@linux-mips.org
4318S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004319F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Ralf Baechlecb109a02007-08-30 23:56:30 -07004321IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004322M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004323L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004324S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004325F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004326
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004327IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004328M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004330F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Francois Romieu1202d6f2007-09-17 17:13:55 -07004332IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004333M: Francois Romieu <romieu@fr.zoreil.com>
4334M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004335L: netdev@vger.kernel.org
4336S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004337F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004338
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004339IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004340M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004341L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004343F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004344
Corey Minyard4409ebe2006-04-20 02:43:12 -07004345IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004347L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004348W: http://openipmi.sourceforge.net/
4349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004350F: Documentation/IPMI.txt
4351F: drivers/char/ipmi/
4352F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004353F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004354
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004355IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004356M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004357L: linux-scsi@vger.kernel.org
4358W: http://www.adaptec.com/
4359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004360F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004361
4362IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004363M: Wensong Zhang <wensong@linux-vs.org>
4364M: Simon Horman <horms@verge.net.au>
4365M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004366L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004367L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004369F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004370F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004371F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004372F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Randy Dunlape7839f22008-10-12 16:11:45 -07004374IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004375M: Jiri Kosina <jkosina@suse.cz>
4376M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004377S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004378F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004379
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004380IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004381M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004382L: netdev@vger.kernel.org
4383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004384F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004385F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004386F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004389M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004390L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004391L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004393S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004394T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004395F: Documentation/networking/irda.txt
4396F: drivers/net/irda/
4397F: include/net/irda/
4398F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004400IRQ SUBSYSTEM
4401M: Thomas Gleixner <tglx@linutronix.de>
4402S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004403T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004404F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004405F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004406
Grant Likely7ab3a832012-02-14 14:06:47 -07004407IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4408M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely19624232013-04-08 11:51:42 +01004409M: Grant Likely <grant.likely@linaro.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004410T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4411S: Maintained
4412F: Documentation/IRQ-domain.txt
4413F: include/linux/irqdomain.h
4414F: kernel/irq/irqdomain.c
4415
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004416ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004417M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004419F: Documentation/isapnp.txt
4420F: drivers/pnp/isapnp/
4421F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004422
Hans Verkuild39b84202012-11-23 07:07:02 -03004423ISA RADIO MODULE
4424M: Hans Verkuil <hverkuil@xs4all.nl>
4425L: linux-media@vger.kernel.org
4426T: git git://linuxtv.org/media_tree.git
4427W: http://linuxtv.org
4428S: Maintained
4429F: drivers/media/radio/radio-isa*
4430
Harry Wei71a6d0a2011-05-11 15:13:33 -07004431iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4432M: Peter Jones <pjones@redhat.com>
4433M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4434S: Maintained
4435F: drivers/firmware/iscsi_ibft*
4436
Mike Christie14816b1e2007-11-28 16:22:06 -08004437ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004438M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004439L: open-iscsi@googlegroups.com
4440W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004441T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004443F: drivers/scsi/*iscsi*
4444F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004445
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004447M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004448L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004449L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004451T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004453F: Documentation/isdn/
4454F: drivers/isdn/
4455F: include/linux/isdn.h
4456F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004457F: include/uapi/linux/isdn.h
4458F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
4460ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004462L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463W: http://www.melware.de
4464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004465F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
Jean Delvared6248702010-03-05 22:17:20 +01004467IT87 HARDWARE MONITORING DRIVER
4468M: Jean Delvare <khali@linux-fr.org>
4469L: lm-sensors@lm-sensors.org
4470S: Maintained
4471F: Documentation/hwmon/it87
4472F: drivers/hwmon/it87.c
4473
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004474IT913X MEDIA DRIVER
4475M: Malcolm Priestley <tvboxspy@gmail.com>
4476L: linux-media@vger.kernel.org
4477W: http://linuxtv.org/
4478Q: http://patchwork.linuxtv.org/project/linux-media/list/
4479S: Maintained
4480F: drivers/media/usb/dvb-usb-v2/it913x*
4481
4482IT913X FE MEDIA DRIVER
4483M: Malcolm Priestley <tvboxspy@gmail.com>
4484L: linux-media@vger.kernel.org
4485W: http://linuxtv.org/
4486Q: http://patchwork.linuxtv.org/project/linux-media/list/
4487S: Maintained
4488F: drivers/media/dvb-frontends/it913x-fe*
4489
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004490IT913X MEDIA DRIVER
4491M: Antti Palosaari <crope@iki.fi>
4492L: linux-media@vger.kernel.org
4493W: http://linuxtv.org/
4494W: http://palosaari.fi/linux/
4495Q: http://patchwork.linuxtv.org/project/linux-media/list/
4496T: git git://linuxtv.org/anttip/media_tree.git
4497S: Maintained
4498F: drivers/media/tuners/it913x*
4499
Hans Verkuil91821ff2007-12-02 09:35:33 -03004500IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004501M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004502L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004503L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004504T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004505W: http://www.ivtvdriver.org
4506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004507F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004508F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004509F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004510
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004511IX2505V MEDIA DRIVER
4512M: Malcolm Priestley <tvboxspy@gmail.com>
4513L: linux-media@vger.kernel.org
4514W: http://linuxtv.org/
4515Q: http://patchwork.linuxtv.org/project/linux-media/list/
4516S: Maintained
4517F: drivers/media/dvb-frontends/ix2505v*
4518
Guenter Roeck4453d732010-08-09 17:21:08 -07004519JC42.4 TEMPERATURE SENSOR DRIVER
4520M: Guenter Roeck <linux@roeck-us.net>
4521L: lm-sensors@lm-sensors.org
4522S: Maintained
4523F: drivers/hwmon/jc42.c
4524F: Documentation/hwmon/jc42
4525
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004526JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004527M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004528L: jfs-discussion@lists.sourceforge.net
4529W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004530T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004532F: Documentation/filesystems/jfs.txt
4533F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004534
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004535JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004536M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004537L: netdev@vger.kernel.org
4538S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004539F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004543L: linux-mtd@lists.infradead.org
4544W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004546F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004547F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Josh Triplettde456d32006-07-30 03:04:00 -07004549JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004551M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004552L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004553S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004554F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004555F: include/linux/jbd.h
4556
4557JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4558M: "Theodore Ts'o" <tytso@mit.edu>
4559L: linux-ext4@vger.kernel.org
4560S: Maintained
4561F: fs/jbd2/
4562F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004563
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004564JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004565M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004566L: linux-serial@vger.kernel.org
4567S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004568F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004569
Clemens Ladischaf399172011-01-10 16:32:54 +01004570K10TEMP HARDWARE MONITORING DRIVER
4571M: Clemens Ladisch <clemens@ladisch.de>
4572L: lm-sensors@lm-sensors.org
4573S: Maintained
4574F: Documentation/hwmon/k10temp
4575F: drivers/hwmon/k10temp.c
4576
Rudolf Marek4660cb32006-10-08 22:01:26 +02004577K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004578M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004579L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004581F: Documentation/hwmon/k8temp
4582F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
4584KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004585M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004586L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004587S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004588F: Documentation/kbuild/kconfig-language.txt
4589F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Vivek Goyalea6c2082006-05-20 14:59:55 -07004591KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004592M: Vivek Goyal <vgoyal@redhat.com>
4593M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004594L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004595W: http://lse.sourceforge.net/kdump/
4596S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004597F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004598
Hans Verkuilf41bf022012-11-23 07:04:36 -03004599KEENE FM RADIO TRANSMITTER DRIVER
4600M: Hans Verkuil <hverkuil@xs4all.nl>
4601L: linux-media@vger.kernel.org
4602T: git git://linuxtv.org/media_tree.git
4603W: http://linuxtv.org
4604S: Maintained
4605F: drivers/media/radio/radio-keene*
4606
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004608M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004609L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004611F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Michal Marek70fb7ba2010-01-29 14:22:43 +01004613KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004614M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004615T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4616T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004617L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004619F: Documentation/kbuild/
4620F: Makefile
4621F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004622F: scripts/basic/
4623F: scripts/mk*
4624F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
4626KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004627L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004628W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004629S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004631KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004632M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004633L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004636F: fs/nfsd/
4637F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004638F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004639F: fs/lockd/
4640F: fs/nfs_common/
4641F: net/sunrpc/
4642F: include/linux/lockd/
4643F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004644F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
Avi Kivity426d62e2006-12-13 00:34:03 -08004646KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004647M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004648M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004649L: kvm@vger.kernel.org
4650W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004652F: Documentation/*/kvm.txt
4653F: arch/*/kvm/
4654F: arch/*/include/asm/kvm*
4655F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004656F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004657F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004658
Joerg Roedelad8003d2008-09-10 20:01:07 +02004659KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004660M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004661L: kvm@vger.kernel.org
4662W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004664F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004665F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004666
Hollis Blanchard513014b2008-04-16 23:28:08 -05004667KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004668M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004669L: kvm-ppc@vger.kernel.org
4670W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004671T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004673F: arch/powerpc/include/asm/kvm*
4674F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004675
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004676KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004677M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004678L: kvm-ia64@vger.kernel.org
4679W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004681F: Documentation/ia64/kvm.txt
4682F: arch/ia64/include/asm/kvm*
4683F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004684
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004685KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004687M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004688M: linux390@de.ibm.com
4689L: linux-s390@vger.kernel.org
4690W: http://www.ibm.com/developerworks/linux/linux390/
4691S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004692F: Documentation/s390/kvm.txt
4693F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004694F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004695F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004696
Christoffer Dalla7494742013-01-20 18:42:26 -05004697KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4698M: Christoffer Dall <cdall@cs.columbia.edu>
4699L: kvmarm@lists.cs.columbia.edu
4700W: http://systems.cs.columbia.edu/projects/kvm-arm
4701S: Maintained
4702F: arch/arm/include/uapi/asm/kvm*
4703F: arch/arm/include/asm/kvm*
4704F: arch/arm/kvm/
4705
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004706KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004707M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004708W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004709L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004711F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004712F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004713F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004714
David Howellse9714612010-03-29 23:42:09 +01004715KEYS/KEYRINGS:
4716M: David Howells <dhowells@redhat.com>
4717L: keyrings@linux-nfs.org
4718S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004719F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004720F: include/linux/key.h
4721F: include/linux/key-type.h
4722F: include/keys/
4723F: security/keys/
4724
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004725KEYS-TRUSTED
4726M: David Safford <safford@watson.ibm.com>
4727M: Mimi Zohar <zohar@us.ibm.com>
4728L: linux-security-module@vger.kernel.org
4729L: keyrings@linux-nfs.org
4730S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004731F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004732F: include/keys/trusted-type.h
4733F: security/keys/trusted.c
4734F: security/keys/trusted.h
4735
4736KEYS-ENCRYPTED
4737M: Mimi Zohar <zohar@us.ibm.com>
4738M: David Safford <safford@watson.ibm.com>
4739L: linux-security-module@vger.kernel.org
4740L: keyrings@linux-nfs.org
4741S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004742F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004743F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004744F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004745
Jason Wessel5b778da2010-05-20 21:04:28 -05004746KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004747M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004748W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004749L: kgdb-bugreport@lists.sourceforge.net
4750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004751F: Documentation/DocBook/kgdb.tmpl
4752F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004753F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004754F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004755F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004756F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004757
Pekka Enberg456db8c2008-04-28 22:47:29 +03004758KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004760M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004761S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004762F: Documentation/kmemcheck.txt
4763F: arch/x86/include/asm/kmemcheck.h
4764F: arch/x86/mm/kmemcheck/
4765F: include/linux/kmemcheck.h
4766F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004767
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004768KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004769M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004770S: Maintained
4771F: Documentation/kmemleak.txt
4772F: include/linux/kmemleak.h
4773F: mm/kmemleak.c
4774F: mm/kmemleak-test.c
4775
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004776KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4778M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4779M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004780M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004782F: Documentation/kprobes.txt
4783F: include/linux/kprobes.h
4784F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004785
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004786KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004787M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004788W: http://miguelojeda.es/auxdisplay.htm
4789W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004791F: Documentation/auxdisplay/ks0108
4792F: drivers/auxdisplay/ks0108.c
4793F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004794
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004797S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004798F: Documentation/networking/lapb-module.txt
4799F: include/*/lapb.h
4800F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
4802LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004803M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804L: linux-scsi@vger.kernel.org
4805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004806F: Documentation/scsi/53c700.txt
4807F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
Richard Purdie263de9b2006-05-15 09:44:16 -07004809LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004810M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004811M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004812L: linux-leds@vger.kernel.org
4813T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004815F: drivers/leds/
4816F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004817
Jean Delvareb0461a42011-06-15 15:08:46 -07004818LEGACY EEPROM DRIVER
4819M: Jean Delvare <khali@linux-fr.org>
4820S: Maintained
4821F: Documentation/misc-devices/eeprom
4822F: drivers/misc/eeprom/eeprom.c
4823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004825M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826L: legousb-devel@lists.sourceforge.net
4827W: http://legousb.sourceforge.net/
4828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004829F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Michael Krufky055616a2012-10-02 00:56:06 -03004831LG2160 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/lg2160.*
4840
Michael Krufky6f0e7722012-10-02 00:56:00 -03004841LGDT3305 MEDIA DRIVER
4842M: Michael Krufky <mkrufky@linuxtv.org>
4843L: linux-media@vger.kernel.org
4844W: http://linuxtv.org/
4845W: http://github.com/mkrufky
4846Q: http://patchwork.linuxtv.org/project/linux-media/list/
4847T: git git://linuxtv.org/mkrufky/tuners.git
4848S: Maintained
4849F: drivers/media/dvb-frontends/lgdt3305.*
4850
Rusty Russell568a17f2007-10-25 14:12:24 +10004851LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004853L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004854W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004855S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004856F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004857F: arch/x86/lguest/
4858F: drivers/lguest/
4859F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004860F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004861
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004863M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864W: http://www.ibm.com/linux/ltc/projects/ppc
4865S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004866F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004868LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4870M: Paul Mackerras <paulus@samba.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
Joe Perches8a6e2532010-03-05 13:43:11 -08004873Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004874T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004876F: Documentation/powerpc/
4877F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878
4879LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004880M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004882L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004884F: arch/powerpc/platforms/powermac/
4885F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
Grant Likely77a76362008-07-12 12:11:43 -06004887LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004888M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004889L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004890T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004892F: arch/powerpc/platforms/512x/
4893F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
4895LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004896M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004897M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004899L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004900T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004902F: arch/powerpc/platforms/40x/
4903F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
Grant Likely260c02a2007-10-02 12:15:34 +10004905LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004906L: linuxppc-dev@lists.ozlabs.org
Grant Likely19624232013-04-08 11:51:42 +01004907S: Unmaintained
Joe Perches11c34c72009-12-04 07:16:59 +00004908F: arch/powerpc/*/*virtex*
4909F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910
Tom Rinie93adf12005-07-26 12:49:53 -07004911LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004912M: Vitaly Bordug <vitb@kernel.crashing.org>
4913M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004914W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004915L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004916S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004917F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004918
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004920M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004921W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004922L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004923S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004924F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004925F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926
Olof Johanssonab06ff32006-09-06 14:44:54 -05004927LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004928M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004929L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004930S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004931F: arch/powerpc/platforms/pasemi/
4932F: drivers/*/*pasemi*
4933F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004934
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004936M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004937L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938S: Supported
4939
Harry Weia23ce6d2011-02-11 16:52:20 +01004940LIS3LV02D ACCELEROMETER DRIVER
4941M: Eric Piel <eric.piel@tremplin-utc.net>
4942S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004943F: Documentation/misc-devices/lis3lv02d
4944F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004945F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004946
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004947LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004948M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004950F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004951F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004952F: include/net/llc*
4953F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004954
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004955LM73 HARDWARE MONITOR DRIVER
4956M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4957L: lm-sensors@lm-sensors.org
4958S: Maintained
4959F: drivers/hwmon/lm73.c
4960
Jean Delvare156e2d12011-07-25 21:46:11 +02004961LM78 HARDWARE MONITOR DRIVER
4962M: Jean Delvare <khali@linux-fr.org>
4963L: lm-sensors@lm-sensors.org
4964S: Maintained
4965F: Documentation/hwmon/lm78
4966F: drivers/hwmon/lm78.c
4967
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004969M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004970L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004972F: Documentation/hwmon/lm83
4973F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974
4975LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004976M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004977L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004979F: Documentation/hwmon/lm90
4980F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004982LME2510 MEDIA DRIVER
4983M: Malcolm Priestley <tvboxspy@gmail.com>
4984L: linux-media@vger.kernel.org
4985W: http://linuxtv.org/
4986Q: http://patchwork.linuxtv.org/project/linux-media/list/
4987S: Maintained
4988F: drivers/media/usb/dvb-usb-v2/lmedm04*
4989
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004990LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: Peter Zijlstra <peterz@infradead.org>
4992M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004993T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004995F: Documentation/lockdep*.txt
4996F: Documentation/lockstat.txt
4997F: include/linux/lockdep.h
4998F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004999
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005000LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07005001M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005002L: linux-ntfs-dev@lists.sourceforge.net
5003W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005005F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08005006F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
Joern Engelef6ada32009-11-20 22:17:12 +01005008LogFS
5009M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305010M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005011L: logfs@logfs.org
5012W: logfs.org
5013S: Maintained
5014F: fs/logfs/
5015
Roland Stiggeb62d7942013-04-02 19:37:11 +02005016LPC32XX MACHINE SUPPORT
5017M: Roland Stigge <stigge@antcom.de>
5018L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5019S: Maintained
5020F: arch/arm/mach-lpc32xx/
5021
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005022LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305023M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5024M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005025M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005026L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005027L: linux-scsi@vger.kernel.org
5028W: http://www.lsilogic.com/support
5029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005030F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305031F: drivers/scsi/mpt2sas/
5032F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005033
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005035M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036L: linux-scsi@vger.kernel.org
5037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005038F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039
Guenter Roecke5f5c992010-06-25 11:59:54 -07005040LTC4261 HARDWARE MONITOR DRIVER
5041M: Guenter Roeck <linux@roeck-us.net>
5042L: lm-sensors@lm-sensors.org
5043S: Maintained
5044F: Documentation/hwmon/ltc4261
5045F: drivers/hwmon/ltc4261.c
5046
Mike Frysinger81365c32008-10-29 14:01:12 -07005047LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005048M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005049M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005050M: Cyril Hrubis <chrubis@suse.cz>
5051M: Caspar Zhang <caspar@casparzhang.com>
5052M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005053L: ltp-list@lists.sourceforge.net (subscribers-only)
5054W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005055T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005056T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005057S: Maintained
5058
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005059M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005060M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005061L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005062L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5063W: http://www.linux-m32r.org/
5064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005065F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005066
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005068M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069L: linux-m68k@lists.linux-m68k.org
5070W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005071T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005073F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005074F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075
5076M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005077M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005079L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005081F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
5083M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005084M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085W: http://www.tazenda.demon.co.uk/phil/linux-hp
5086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005087F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005089M88RS2000 MEDIA DRIVER
5090M: Malcolm Priestley <tvboxspy@gmail.com>
5091L: linux-media@vger.kernel.org
5092W: http://linuxtv.org/
5093Q: http://patchwork.linuxtv.org/project/linux-media/list/
5094S: Maintained
5095F: drivers/media/dvb-frontends/m88rs2000*
5096
Alexey Klimov07a092f2012-11-12 02:57:32 -03005097MA901 MASTERKIT USB FM RADIO DRIVER
5098M: Alexey Klimov <klimov.linux@gmail.com>
5099L: linux-media@vger.kernel.org
5100T: git git://linuxtv.org/media_tree.git
5101S: Maintained
5102F: drivers/media/radio/radio-ma901.c
5103
Jiri Benc64a327a2007-05-05 11:47:08 -07005104MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005105M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005106L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005107W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005108T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5109T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005111F: Documentation/networking/mac80211-injection.txt
5112F: include/net/mac80211.h
5113F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005114
Stefano Brivio1036d862007-12-23 04:46:27 +01005115MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005116M: Stefano Brivio <stefano.brivio@polimi.it>
5117M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005118L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005119W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005120T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5121T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005123F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005124
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005125MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005126M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005127L: netdev@vger.kernel.org
5128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005129F: drivers/net/macvlan.c
5130F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005131
Michael Kerriskfaf16682005-07-31 22:34:47 -07005132MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005133M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005134W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005135L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005136S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005137
stephen hemminger44c14c12012-04-02 12:59:47 +00005138MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5139M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005140M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005141L: netdev@vger.kernel.org
5142S: Maintained
5143F: drivers/net/ethernet/marvell/sk*
5144
Stefano Brivio74cda162007-11-19 20:27:46 +01005145MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005146L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005147S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005148F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005149
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005150MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005151M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005152L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005153S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005154F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005155F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005157MARVELL MVNETA ETHERNET DRIVER
5158M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5159L: netdev@vger.kernel.org
5160S: Maintained
5161F: drivers/net/ethernet/marvell/mvneta.*
5162
Bing Zhaofcad5842011-07-13 13:11:58 -07005163MARVELL MWIFIEX WIRELESS DRIVER
5164M: Bing Zhao <bzhao@marvell.com>
5165L: linux-wireless@vger.kernel.org
5166S: Maintained
5167F: drivers/net/wireless/mwifiex/
5168
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005169MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005170M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005171L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005172S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005173F: drivers/net/wireless/mwl8k.c
5174
Pierre Ossman2a695672009-03-16 19:52:26 +01005175MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005176M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005177S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005178F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005179
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005181L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005182S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005183F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005184F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
Guenter Roeckca462082012-06-01 23:28:23 -07005186MAX16065 HARDWARE MONITOR DRIVER
5187M: Guenter Roeck <linux@roeck-us.net>
5188L: lm-sensors@lm-sensors.org
5189S: Maintained
5190F: Documentation/hwmon/max16065
5191F: drivers/hwmon/max16065.c
5192
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005193MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005194M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005195L: lm-sensors@lm-sensors.org
5196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005197F: Documentation/hwmon/max6650
5198F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005199
Guenter Roecke89ab512013-03-08 08:13:09 -08005200MAX6697 HARDWARE MONITOR DRIVER
5201M: Guenter Roeck <linux@roeck-us.net>
5202L: lm-sensors@lm-sensors.org
5203S: Maintained
5204F: Documentation/hwmon/max6697
5205F: Documentation/devicetree/bindings/i2c/max6697.txt
5206F: drivers/hwmon/max6697.c
5207F: include/linux/platform_data/max6697.h
5208
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005209MAXIRADIO FM RADIO RECEIVER DRIVER
5210M: Hans Verkuil <hverkuil@xs4all.nl>
5211L: linux-media@vger.kernel.org
5212T: git git://linuxtv.org/media_tree.git
5213W: http://linuxtv.org
5214S: Maintained
5215F: drivers/media/radio/radio-maxiradio*
5216
Joe Perches127c49a2009-04-08 08:34:04 -07005217MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005218M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005219P: LinuxTV.org Project
5220L: linux-media@vger.kernel.org
5221W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005222Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005223T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005224S: Maintained
5225F: Documentation/dvb/
5226F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005227F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005228F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005229F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005230F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005231F: include/uapi/linux/dvb/
5232F: include/uapi/linux/videodev2.h
5233F: include/uapi/linux/media.h
5234F: include/uapi/linux/v4l2-*
5235F: include/uapi/linux/meye.h
5236F: include/uapi/linux/ivtv*
5237F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005238
Hans Verkuil6149a932012-11-23 07:21:19 -03005239MEDIAVISION PRO MOVIE STUDIO DRIVER
5240M: Hans Verkuil <hverkuil@xs4all.nl>
5241L: linux-media@vger.kernel.org
5242T: git git://linuxtv.org/media_tree.git
5243W: http://linuxtv.org
5244S: Odd Fixes
5245F: drivers/media/parport/pms*
5246
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005247MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005248M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005249L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005250W: http://megaraid.lsilogic.com
5251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005252F: Documentation/scsi/megaraid.txt
5253F: drivers/scsi/megaraid.*
5254F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005255
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005256MELLANOX ETHERNET DRIVER (mlx4_en)
5257M: Amir Vadai <amirv@mellanox.com>
5258L: netdev@vger.kernel.org
5259S: Supported
5260W: http://www.mellanox.com
5261Q: http://patchwork.ozlabs.org/project/netdev/list/
5262F: drivers/net/ethernet/mellanox/mlx4/en_*
5263
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005264MEMORY MANAGEMENT
5265L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005266W: http://www.linux-mm.org
5267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005268F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005269F: include/linux/gfp.h
5270F: include/linux/mmzone.h
5271F: include/linux/memory_hotplug.h
5272F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005273F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005274
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005275MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005276M: Johannes Weiner <hannes@cmpxchg.org>
5277M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005278M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005279M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005280L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005281L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005283F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005284F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005285
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005286MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005287M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005289W: http://www.linux-mtd.infradead.org/
5290Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005291T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005293F: drivers/mtd/
5294F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005295F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296
James Hogan12285942012-10-10 12:59:49 +01005297METAG ARCHITECTURE
5298M: James Hogan <james.hogan@imgtec.com>
5299S: Supported
5300F: arch/metag/
5301F: Documentation/metag/
5302F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005303F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005304F: drivers/irqchip/irq-metag.c
5305F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005306F: drivers/tty/metag_da.c
5307F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005308
Michal Simekc6375b02009-03-27 14:25:52 +01005309MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005310M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005311L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005312W: http://www.monstr.eu/fdt/
5313T: git git://git.monstr.eu/linux-2.6-microblaze.git
5314S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005315F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316
5317MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005318M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005320F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
5322MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005323M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005325W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005326T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005327Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005328S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005329F: Documentation/mips/
5330F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331
Hans Verkuil08b76202012-11-23 07:15:42 -03005332MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5333M: Hans Verkuil <hverkuil@xs4all.nl>
5334L: linux-media@vger.kernel.org
5335T: git git://linuxtv.org/media_tree.git
5336W: http://linuxtv.org
5337S: Odd Fixes
5338F: drivers/media/radio/radio-miropcm20*
5339
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005341M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005343F: include/linux/module.h
5344F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345
5346MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005348S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005349F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005350F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005351F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
Jiri Slabyb9705b62008-04-30 00:53:48 -07005353MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005354M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005356F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005357F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005358
Alexey Klimov889b2f82012-11-16 17:43:59 -03005359MR800 AVERMEDIA USB FM RADIO DRIVER
5360M: Alexey Klimov <klimov.linux@gmail.com>
5361L: linux-media@vger.kernel.org
5362T: git git://linuxtv.org/media_tree.git
5363S: Maintained
5364F: drivers/media/radio/radio-mr800.c
5365
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005366MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005367M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005368L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005370F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005371
Anisse Astier0f1006b2009-12-17 11:28:49 +01005372MSI WMI SUPPORT
5373M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005374L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005375S: Supported
5376F: drivers/platform/x86/msi-wmi.c
5377
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005378MT9M032 SENSOR DRIVER
5379M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5380L: linux-media@vger.kernel.org
5381T: git git://linuxtv.org/media_tree.git
5382S: Maintained
5383F: drivers/media/i2c/mt9m032.c
5384F: include/media/mt9m032.h
5385
5386MT9P031 SENSOR DRIVER
5387M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5388L: linux-media@vger.kernel.org
5389T: git git://linuxtv.org/media_tree.git
5390S: Maintained
5391F: drivers/media/i2c/mt9p031.c
5392F: include/media/mt9p031.h
5393
5394MT9T001 SENSOR DRIVER
5395M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5396L: linux-media@vger.kernel.org
5397T: git git://linuxtv.org/media_tree.git
5398S: Maintained
5399F: drivers/media/i2c/mt9t001.c
5400F: include/media/mt9t001.h
5401
5402MT9V032 SENSOR DRIVER
5403M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5404L: linux-media@vger.kernel.org
5405T: git git://linuxtv.org/media_tree.git
5406S: Maintained
5407F: drivers/media/i2c/mt9v032.c
5408F: include/media/mt9v032.h
5409
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005410MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005411M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005412T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005414F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005415
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005416MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005417M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005418L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005419T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005421F: drivers/mmc/
5422F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005423F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005424
David Brownell15a05802007-08-08 09:12:54 -07005425MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005426S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005427F: drivers/mmc/host/mmc_spi.c
5428F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005429
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005431M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005433F: Documentation/sound/oss/MultiSound
5434F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435
Jiri Slabyd7354102006-12-08 02:38:35 -08005436MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005437S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005438F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005439F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005440
Felipe Balbi550a7372008-07-24 12:27:36 +03005441MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005442M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005443L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005444T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005446F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005447
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005448MXL5007T MEDIA DRIVER
5449M: Michael Krufky <mkrufky@linuxtv.org>
5450L: linux-media@vger.kernel.org
5451W: http://linuxtv.org/
5452W: http://github.com/mkrufky
5453Q: http://patchwork.linuxtv.org/project/linux-media/list/
5454T: git git://linuxtv.org/mkrufky/tuners.git
5455S: Maintained
5456F: drivers/media/tuners/mxl5007t.*
5457
Brice Goglin2d3cf582008-05-17 12:45:36 +02005458MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005459M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005460L: netdev@vger.kernel.org
5461W: http://www.myri.com/scs/download-Myri10GE.html
5462S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005463F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005464
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005466S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005467F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
Daniel Mack23dc05a2011-05-18 11:28:38 +02005469NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5470M: Daniel Mack <zonque@gmail.com>
5471S: Maintained
5472L: alsa-devel@alsa-project.org
5473W: http://www.native-instruments.com
5474F: sound/usb/caiaq/
5475
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005477M: Petr Vandrovec <petr@vandrovec.name>
5478S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005479F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480
5481NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005482M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483L: linux-scsi@vger.kernel.org
5484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005485F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005487NCT6775 HARDWARE MONITOR DRIVER
5488M: Guenter Roeck <linux@roeck-us.net>
5489L: lm-sensors@lm-sensors.org
5490S: Maintained
5491F: Documentation/hwmon/nct6775
5492F: drivers/hwmon/nct6775.c
5493
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005494NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005495M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005496L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005497W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005498S: Supported
5499F: drivers/infiniband/hw/nes/
5500
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005501NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005502M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005503L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005505F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005506
Jon Masonb2f5a052010-07-15 08:47:27 +00005507NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005508M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005509L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005511F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005512F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005513F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005514
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516P: Harald Welte
5517P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005518M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005519M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005520L: netfilter-devel@vger.kernel.org
5521L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005522L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523W: http://www.netfilter.org/
5524W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005525T: git git://1984.lsi.us.es/nf
5526T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005528F: include/linux/netfilter*
5529F: include/linux/netfilter/
5530F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005531F: include/uapi/linux/netfilter*
5532F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005533F: net/*/netfilter.c
5534F: net/*/netfilter/
5535F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536
Paul Moore4cc67732006-09-25 15:57:13 -07005537NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005538M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005539W: http://netlabel.sf.net
5540L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005541S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005542F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005543F: include/net/netlabel.h
5544F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005545
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005547M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005549W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005551F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005552F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005553F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005555NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005556M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005558L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005559F: Documentation/blockdev/nbd.txt
5560F: drivers/block/nbd.c
5561F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005562F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
Neil Horman6e436502009-10-05 03:56:55 +00005564NETWORK DROP MONITOR
5565M: Neil Horman <nhorman@tuxdriver.com>
5566L: netdev@vger.kernel.org
5567S: Maintained
5568W: https://fedorahosted.org/dropwatch/
5569F: net/core/drop_monitor.c
5570
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005572M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005573L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005574W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005575Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005576T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5577T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005579F: net/
5580F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005581F: include/linux/in.h
5582F: include/linux/net.h
5583F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005584F: include/uapi/linux/in.h
5585F: include/uapi/linux/net.h
5586F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587
5588NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005589M: "David S. Miller" <davem@davemloft.net>
5590M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005591M: James Morris <jmorris@namei.org>
5592M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5593M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005594L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005595T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005597F: net/ipv4/
5598F: net/ipv6/
5599F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005600F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601
David S. Miller73b76562012-10-16 14:08:40 -04005602NETWORKING [IPSEC]
5603M: Steffen Klassert <steffen.klassert@secunet.com>
5604M: Herbert Xu <herbert@gondor.apana.org.au>
5605M: "David S. Miller" <davem@davemloft.net>
5606L: netdev@vger.kernel.org
5607T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5608S: Maintained
5609F: net/xfrm/
5610F: net/key/
5611F: net/ipv4/xfrm*
5612F: net/ipv6/xfrm*
5613F: include/uapi/linux/xfrm.h
5614F: include/net/xfrm.h
5615
James Morris10e2ff12007-08-25 14:41:28 -07005616NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005617M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005618L: netdev@vger.kernel.org
5619S: Maintained
5620
John W. Linville29f8f632006-01-18 14:52:48 -08005621NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005622M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005623L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005624Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005625T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005626S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005627F: net/mac80211/
5628F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005629F: net/wireless/
5630F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005631F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005632F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005633F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005634F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005635
Joe Perches788873a2009-04-16 09:38:45 +00005636NETWORKING DRIVERS
5637L: netdev@vger.kernel.org
5638W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005639Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005640T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5641T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005642S: Odd Fixes
5643F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005644F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005645F: include/linux/netdevice.h
5646F: include/linux/arcdevice.h
5647F: include/linux/etherdevice.h
5648F: include/linux/fcdevice.h
5649F: include/linux/fddidevice.h
5650F: include/linux/hippidevice.h
5651F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005652F: include/uapi/linux/if_*
5653F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005654
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005655NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005656M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005657M: Sony Chacko <sony.chacko@qlogic.com>
5658M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005659L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005660W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005661S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005662F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005663
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005664NFC SUBSYSTEM
5665M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5666M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5667M: Samuel Ortiz <sameo@linux.intel.com>
5668L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005669L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005670S: Maintained
5671F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005672F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005673F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005674F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005675F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005677NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005678M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005679L: linux-nfs@vger.kernel.org
5680W: http://client.linux-nfs.org
5681T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005683F: fs/lockd/
5684F: fs/nfs/
5685F: fs/nfs_common/
5686F: net/sunrpc/
5687F: include/linux/lockd/
5688F: include/linux/nfs*
5689F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005690F: include/uapi/linux/nfs*
5691F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005693NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005694M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005695L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005696W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005697T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005699F: Documentation/filesystems/nilfs2.txt
5700F: fs/nilfs2/
5701F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005702
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005704M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005707F: Documentation/scsi/NinjaSCSI.txt
5708F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
5710NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005711M: GOTO Masanori <gotom@debian.or.jp>
5712M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005715F: Documentation/scsi/NinjaSCSI.txt
5716F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
Jon Masonfce8a7b2012-11-16 19:27:12 -07005718NTB DRIVER
5719M: Jon Mason <jon.mason@intel.com>
5720S: Supported
5721F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005722F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005723F: include/linux/ntb.h
5724
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005726M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005728W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005729T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005730S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005731F: Documentation/filesystems/ntfs.txt
5732F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005734NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005735M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005736L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005738F: drivers/video/riva/
5739F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740
Matthew Wilcox79461682012-11-10 08:54:53 -05005741NVM EXPRESS DRIVER
5742M: Matthew Wilcox <willy@linux.intel.com>
5743L: linux-nvme@lists.infradead.org
5744T: git git://git.infradead.org/users/willy/linux-nvme.git
5745S: Supported
5746F: drivers/block/nvme.c
5747F: include/linux/nvme.h
5748
Tony Lindgrenf5525782009-05-28 13:23:53 -07005749OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005750M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005751L: linux-omap@vger.kernel.org
5752W: http://www.muru.com/linux/omap/
5753W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005754Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005755T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005756S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005757F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005758F: drivers/i2c/busses/i2c-omap.c
5759F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005760
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005761OMAP DEVICE TREE SUPPORT
5762M: Benoît Cousson <b-cousson@ti.com>
5763M: Tony Lindgren <tony@atomide.com>
5764L: linux-omap@vger.kernel.org
5765L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5766S: Maintained
5767F: arch/arm/boot/dts/*omap*
5768F: arch/arm/boot/dts/*am3*
5769
Tony Lindgrenf5525782009-05-28 13:23:53 -07005770OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005771M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005772L: linux-omap@vger.kernel.org
5773S: Maintained
5774F: arch/arm/*omap*/*clock*
5775
5776OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005777M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005778L: linux-omap@vger.kernel.org
5779S: Maintained
5780F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005781F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005782
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005783OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5784M: Rajendra Nayak <rnayak@ti.com>
5785M: Paul Walmsley <paul@pwsan.com>
5786L: linux-omap@vger.kernel.org
5787S: Maintained
5788F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5789F: arch/arm/mach-omap2/powerdomain44xx.c
5790F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5791F: arch/arm/mach-omap2/clockdomain44xx.c
5792
Tony Lindgrenf5525782009-05-28 13:23:53 -07005793OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005794M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005795M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005796L: alsa-devel@alsa-project.org (subscribers-only)
5797L: linux-omap@vger.kernel.org
5798S: Maintained
5799F: sound/soc/omap/
5800
5801OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005802M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005803L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005804L: linux-omap@vger.kernel.org
5805S: Maintained
5806F: drivers/video/omap/
5807
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005808OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005809M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005810L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005811L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005812S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005813F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005814F: Documentation/arm/OMAP/DSS
5815
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005816OMAP HARDWARE SPINLOCK SUPPORT
5817M: Ohad Ben-Cohen <ohad@wizery.com>
5818L: linux-omap@vger.kernel.org
5819S: Maintained
5820F: drivers/hwspinlock/omap_hwspinlock.c
5821F: arch/arm/mach-omap2/hwspinlock.c
5822
Tony Lindgrenf5525782009-05-28 13:23:53 -07005823OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005824M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005825L: linux-omap@vger.kernel.org
5826S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005827F: drivers/mmc/host/omap.c
5828
5829OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305830M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305831L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005832L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305833S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005834F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005835
5836OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005837M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005838S: Maintained
5839F: drivers/char/hw_random/omap-rng.c
5840
Paul Walmsleyf400c822010-12-06 19:08:54 -07005841OMAP HWMOD SUPPORT
5842M: Benoît Cousson <b-cousson@ti.com>
5843M: Paul Walmsley <paul@pwsan.com>
5844L: linux-omap@vger.kernel.org
5845S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005846F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005847
5848OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5849M: Benoît Cousson <b-cousson@ti.com>
5850L: linux-omap@vger.kernel.org
5851S: Maintained
5852F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5853
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005854OMAP IMAGE SIGNAL PROCESSOR (ISP)
5855M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5856L: linux-media@vger.kernel.org
5857S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005858F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005859
Tony Lindgrenf5525782009-05-28 13:23:53 -07005860OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005861M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005862L: linux-usb@vger.kernel.org
5863L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005864T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005865S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005866F: drivers/usb/*/*omap*
5867F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005868
Kevin Hilman6d994712012-07-16 10:05:07 -07005869OMAP GPIO DRIVER
5870M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005871M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005872L: linux-omap@vger.kernel.org
5873S: Maintained
5874F: drivers/gpio/gpio-omap.c
5875
Bob Copeland0ad122d2008-07-25 19:45:18 -07005876OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005877M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005878L: linux-karma-devel@lists.sourceforge.net
5879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005880F: Documentation/filesystems/omfs.txt
5881F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005882
Harald Weltec1986ee2005-11-13 16:06:29 -08005883OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005884M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005886F: drivers/char/pcmcia/cm4000_cs.c
5887F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005888F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005889
Harald Welte77c44ab2005-11-13 16:06:26 -08005890OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005891M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005893F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005894
Jonathan Corbet77d51402007-03-22 19:44:17 -03005895OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005896M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005897L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005898T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005899S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005900F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005901
Thomas Gleixner431bca72007-05-02 09:31:35 +02005902ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005903M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005904L: linux-mtd@lists.infradead.org
5905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005906F: drivers/mtd/onenand/
5907F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005908
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005910M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911L: osst-users@lists.sourceforge.net
5912L: linux-scsi@vger.kernel.org
5913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005914F: drivers/scsi/osst*
5915F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005917OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005918M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005919L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005921F: Documentation/i2c/busses/i2c-ocores
5922F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005923
Grant Likely860c44c2009-10-26 16:49:49 -07005924OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01005925M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05005926M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005927L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005928W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005929T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005930S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005931F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005932F: drivers/of
5933F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005934F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005935K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005936K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005937
Jonas Bonn19f9d392011-06-04 22:00:38 +03005938OPENRISC ARCHITECTURE
5939M: Jonas Bonn <jonas@southpole.se>
5940W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005941L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005942S: Maintained
5943T: git git://openrisc.net/~jonas/linux
5944F: arch/openrisc
5945
Jesse Grossccb13522011-10-25 19:26:31 -07005946OPENVSWITCH
5947M: Jesse Gross <jesse@nicira.com>
5948L: dev@openvswitch.org
5949W: http://openvswitch.org
5950T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5951S: Maintained
5952F: net/openvswitch/
5953
Clemens Ladischaf399172011-01-10 16:32:54 +01005954OPL4 DRIVER
5955M: Clemens Ladisch <clemens@ladisch.de>
5956L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5957T: git git://git.alsa-project.org/alsa-kernel.git
5958S: Maintained
5959F: sound/drivers/opl4/
5960
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005962M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963L: oprofile-list@lists.sf.net
5964S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005965F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005966F: arch/*/oprofile/
5967F: drivers/oprofile/
5968F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005970ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005972M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005973L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5974W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005975T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005976S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005977F: Documentation/filesystems/ocfs2.txt
5978F: Documentation/filesystems/dlmfs.txt
5979F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005980
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005982L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005983W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005984W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005985S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005986F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005988OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005989M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005990M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005991L: osd-dev@open-osd.org
5992W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005993T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005994S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005995F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005996F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005997F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005998
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005999P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006000M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006001L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006002W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006004F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006005
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006006PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006007M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006008L: netdev@vger.kernel.org
6009S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006010F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006011
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006012PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006013M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006014L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006016F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006017
Steffen Klassert48fc2672010-08-13 10:10:46 -04006018PADATA PARALLEL EXECUTION MECHANISM
6019M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006020L: linux-crypto@vger.kernel.org
6021S: Maintained
6022F: kernel/padata.c
6023F: include/linux/padata.h
6024F: Documentation/padata.txt
6025
Harald Welte709ee532008-09-23 17:46:57 +02006026PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006027M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05006028L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006030F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006031
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006032PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006033M: David Howells <dhowells@redhat.com>
6034M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006035L: linux-am33-list@redhat.com (moderated for non-subscribers)
6036W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006038F: Documentation/mn10300/
6039F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006040
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006042L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006043S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006044F: drivers/parport/
6045F: include/linux/parport*.h
6046F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006047F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006049PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006050M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006051M: Chris Wright <chrisw@sous-sol.org>
6052M: Alok Kataria <akataria@vmware.com>
6053M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006054L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006056F: Documentation/ia64/paravirt_ops.txt
6057F: arch/*/kernel/paravirt*
6058F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006059
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006061M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006062L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063W: http://www.torque.net/linux-pp.html
6064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006065F: Documentation/blockdev/paride.txt
6066F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
6068PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006069M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006070M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006071L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006073Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006074T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006076F: arch/parisc/
6077F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078
Jim Cromie1662d322006-10-06 00:43:59 -07006079PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006080M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006081L: lm-sensors@lm-sensors.org
6082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006083F: Documentation/hwmon/pc87360
6084F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006085
6086PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006087M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006089F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006090
Jean Delvare1ad107f2010-08-14 21:09:00 +02006091PC87427 HARDWARE MONITORING DRIVER
6092M: Jean Delvare <khali@linux-fr.org>
6093L: lm-sensors@lm-sensors.org
6094S: Maintained
6095F: Documentation/hwmon/pc87427
6096F: drivers/hwmon/pc87427.c
6097
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006098PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006099M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006100S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006101F: drivers/leds/leds-pca9532.c
6102F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006103
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006104PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006105M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006106L: linux-i2c@vger.kernel.org
6107S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006108F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006109
Khalid Aziz3971dae2012-04-12 12:49:13 -07006110PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006111M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006112S: Maintained
6113F: drivers/firmware/pcdp.*
6114
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006115PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006116M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006117L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006119F: Documentation/PCI/pci-error-recovery.txt
6120F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006121
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006123M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006124L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006125Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006126T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006128F: Documentation/PCI/
6129F: drivers/pci/
6130F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006133P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006134L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006135W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006136T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006138F: Documentation/pcmcia/
6139F: drivers/pcmcia/
6140F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141
6142PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006143M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006144L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006146F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147
Steffen Klassert48fc2672010-08-13 10:10:46 -04006148PCRYPT PARALLEL CRYPTO ENGINE
6149M: Steffen Klassert <steffen.klassert@secunet.com>
6150L: linux-crypto@vger.kernel.org
6151S: Maintained
6152F: crypto/pcrypt.c
6153F: include/crypto/pcrypt.h
6154
Tejun Heoe72df0b2010-12-10 17:02:49 +01006155PER-CPU MEMORY ALLOCATOR
6156M: Tejun Heo <tj@kernel.org>
6157M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006158T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6159S: Maintained
6160F: include/linux/percpu*.h
6161F: mm/percpu*.c
6162F: arch/*/include/asm/percpu.h
6163
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006164PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006165M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006167F: include/linux/delayacct.h
6168F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006169
Ingo Molnar57c0c152009-09-21 12:20:38 +02006170PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006171M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6172M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006173M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006174M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006175T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006176S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006177F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006178F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006179F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006180F: arch/*/kernel/perf_event*.c
6181F: arch/*/kernel/*/perf_event*.c
6182F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006183F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006184F: arch/*/kernel/perf_callchain.c
6185F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006186
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006187PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006188M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006189L: linux-abi-devel@lists.sourceforge.net
6190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006191F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006192F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006193
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006194PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006195M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006196S: Supported
6197F: Documentation/networking/phonet.txt
6198F: include/linux/phonet.h
6199F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006200F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006201F: net/phonet/
6202
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006204M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205L: linux-mtd@lists.infradead.org
6206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006207F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208
Bruno Prémontefdbb102012-07-30 21:39:03 +02006209PICOLCD HID DRIVER
6210M: Bruno Prémont <bonbons@linux-vserver.org>
6211L: linux-input@vger.kernel.org
6212S: Maintained
6213F: drivers/hid/hid-picolcd*
6214
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006215PICOXCELL SUPPORT
6216M: Jamie Iles <jamie@jamieiles.com>
6217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6218T: git git://github.com/jamieiles/linux-2.6-ji.git
6219S: Supported
6220F: arch/arm/mach-picoxcell
6221F: drivers/*/picoxcell*
6222F: drivers/*/*/picoxcell*
6223
Linus Walleij2744e8a2011-05-02 20:50:54 +02006224PIN CONTROL SUBSYSTEM
6225M: Linus Walleij <linus.walleij@linaro.org>
6226S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006227F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006228F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006229
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006230PIN CONTROLLER - ATMEL AT91
6231M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6232L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6233S: Maintained
6234F: drivers/pinctrl/pinctrl-at91.c
6235
Viresh Kumardeda8282012-03-28 22:27:07 +05306236PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006237M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306238L: spear-devel@list.st.com
6239L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6240W: http://www.st.com/spear
6241S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006242F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306243
Peter Osterlund249a6772005-09-27 21:45:30 -07006244PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006245M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006247F: drivers/block/pktcdvd.c
6248F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006249F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006250
GuanXuetaob31d8272011-01-16 00:35:49 +08006251PKUNITY SOC DRIVERS
6252M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6253W: http://mprc.pku.edu.cn/~guanxuetao/linux
6254S: Maintained
6255T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6256F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006257F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006258F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006259F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006260
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006261PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006262M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006263L: lm-sensors@lm-sensors.org
6264W: http://www.lm-sensors.org/
6265W: http://www.roeck-us.net/linux/drivers/
6266T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6267S: Maintained
6268F: Documentation/hwmon/pmbus
6269F: drivers/hwmon/pmbus/
6270F: include/linux/i2c/pmbus.h
6271
Anil Ravindranath89a36812009-08-25 17:35:18 -07006272PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006273M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006274L: linux-scsi@vger.kernel.org
6275W: http://www.pmc-sierra.com/
6276S: Supported
6277F: drivers/scsi/pmcraid.*
6278
jack wangdbf9bfe2009-10-14 16:19:21 +08006279PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006280M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006281M: lindar_liu@usish.com
6282L: linux-scsi@vger.kernel.org
6283S: Supported
6284F: drivers/scsi/pm8001/
6285
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006287M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006288T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006290F: fs/timerfd.c
6291F: include/linux/timer*
6292F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
Anton Vorontsov3be86142007-07-15 04:43:36 +04006294POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006295M: Anton Vorontsov <cbou@mail.ru>
6296M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006297T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006299F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006300F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006301
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006303M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006304M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006306F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
Vitaly Wool999445d2007-01-04 13:07:03 +01006308PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006309M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006310L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006313
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006315M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316L: linux-ppp@vger.kernel.org
6317S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006318F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319
6320PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006323F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006324F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325
6326PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006327M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006329F: drivers/net/ppp/pppoe.c
6330F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331
James Chapmana6d23702007-06-27 15:53:17 -07006332PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006333M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006334S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006335F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006336F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006337F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006338
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006339PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006340M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006341W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6342L: linuxpps@ml.enneenne.com (subscribers-only)
6343S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006344F: Documentation/pps/
6345F: drivers/pps/
6346F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006347
Harry Wei71a6d0a2011-05-11 15:13:33 -07006348PPTP DRIVER
6349M: Dmitry Kozlov <xeb@mail.ru>
6350L: netdev@vger.kernel.org
6351S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006352F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006353W: http://sourceforge.net/projects/accel-pptp
6354
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006356M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357L: kpreempt-tech@lists.sourceforge.net
6358W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6359S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006360F: Documentation/preempt-locking.txt
6361F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362
6363PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006364M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006365L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006366W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006367S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006368F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006370PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006371M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006372L: linux-ide@vger.kernel.org
6373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006374F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006375
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006376PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006377M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006378L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006379L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006380S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006381F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006382
Geoff Levandf58a9d12006-11-23 00:46:51 +01006383PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006384M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006385L: linuxppc-dev@lists.ozlabs.org
6386L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006388F: arch/powerpc/boot/ps3*
6389F: arch/powerpc/include/asm/lv1call.h
6390F: arch/powerpc/include/asm/ps3*.h
6391F: arch/powerpc/platforms/ps3/
6392F: drivers/*/ps3*
6393F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006394F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006395F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006396F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006397
Jim Pariscffb4add2009-01-06 11:32:10 +00006398PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006399M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006400L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006401S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006402F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006403
Anton Vorontsov8defe592012-08-03 18:07:20 -07006404PSTORE FILESYSTEM
6405M: Anton Vorontsov <cbouatmailru@gmail.com>
6406M: Colin Cross <ccross@android.com>
6407M: Kees Cook <keescook@chromium.org>
6408M: Tony Luck <tony.luck@intel.com>
6409S: Maintained
6410T: git git://git.infradead.org/users/cbou/linux-pstore.git
6411F: fs/pstore/
6412F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006413F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006414F: drivers/acpi/apei/erst.c
6415
Richard Cochran7fbc4152012-03-10 01:55:53 +00006416PTP HARDWARE CLOCK SUPPORT
6417M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006418L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006419S: Maintained
6420W: http://linuxptp.sourceforge.net/
6421F: Documentation/ABI/testing/sysfs-ptp
6422F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006423F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006424F: drivers/net/phy/dp83640*
6425F: drivers/ptp/*
6426F: include/linux/ptp_cl*
6427
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006428PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Roland McGrath <roland@redhat.com>
6430M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006431S: Maintained
6432F: include/asm-generic/syscall.h
6433F: include/linux/ptrace.h
6434F: include/linux/regset.h
6435F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006436F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006437F: kernel/ptrace.c
6438
Michael Krufky83202042006-07-03 00:24:18 -07006439PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006440M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006441L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006442L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006443W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006444T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006446F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006447F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006448
Hans de Goede39532e62012-11-04 17:05:59 -03006449PWC WEBCAM DRIVER
6450M: Hans de Goede <hdegoede@redhat.com>
6451L: linux-media@vger.kernel.org
6452T: git git://linuxtv.org/media_tree.git
6453S: Maintained
6454F: drivers/media/usb/pwc/*
6455
Thierry Reding200efed2012-03-27 13:16:18 +02006456PWM SUBSYSTEM
6457M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006458L: linux-kernel@vger.kernel.org
6459S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006460W: http://gitorious.org/linux-pwm
6461T: git git://gitorious.org/linux-pwm/linux-pwm.git
6462F: Documentation/pwm.txt
6463F: Documentation/devicetree/bindings/pwm/
6464F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006465F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006466F: drivers/video/backlight/pwm_bl.c
6467F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006468
Eric Miao30ec2612008-06-12 15:21:41 -07006469PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006470M: Eric Miao <eric.y.miao@gmail.com>
6471M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006472M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006473L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006474T: git git://github.com/hzhuang1/linux.git
6475T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006477F: arch/arm/mach-pxa/
6478F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006479F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006480F: drivers/usb/gadget/pxa2*
6481F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006482F: sound/arm/pxa*
6483F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006485MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006486M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006487M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006488L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006489T: git git://github.com/hzhuang1/linux.git
6490T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006491S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006492F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006493
Pierre Ossman272f1332007-05-14 21:25:26 +02006494PXA MMCI DRIVER
6495S: Orphan
6496
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006497PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006498M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006499L: rtc-linux@googlegroups.com
6500S: Maintained
6501
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006502QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006503M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006504L: linux-rdma@vger.kernel.org
6505S: Supported
6506F: drivers/infiniband/hw/qib/
6507
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006508QLOGIC QLA1280 SCSI DRIVER
6509M: Michael Reed <mdr@sgi.com>
6510L: linux-scsi@vger.kernel.org
6511S: Maintained
6512F: drivers/scsi/qla1280.[ch]
6513
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006515M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006516M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517L: linux-scsi@vger.kernel.org
6518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006519F: Documentation/scsi/LICENSE.qla2xxx
6520F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
Ravi Anand883c98f2010-04-28 11:45:49 +05306522QLOGIC QLA4XXX iSCSI DRIVER
6523M: Ravi Anand <ravi.anand@qlogic.com>
6524M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6525M: iscsi-driver@qlogic.com
6526L: linux-scsi@vger.kernel.org
6527S: Supported
6528F: drivers/scsi/qla4xxx/
6529
Ron Mercer5a4faa872006-07-25 00:40:21 -07006530QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006531M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006532M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006533M: linux-driver@qlogic.com
6534L: netdev@vger.kernel.org
6535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006536F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006537F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006538
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006539QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca3822013-03-06 13:03:25 +00006540M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6541M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006542M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006543M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006544M: linux-driver@qlogic.com
6545L: netdev@vger.kernel.org
6546S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006547F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006548
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006549QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006550M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006551M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006552M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006553M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006554L: netdev@vger.kernel.org
6555S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006556F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006557
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006559M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560W: http://www.alarsen.net/linux/qnx4fs/
6561S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006562F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006563F: include/uapi/linux/qnx4_fs.h
6564F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565
Antti Palosaari91952bc2012-10-01 12:28:46 -03006566QT1010 MEDIA DRIVER
6567M: Antti Palosaari <crope@iki.fi>
6568L: linux-media@vger.kernel.org
6569W: http://linuxtv.org/
6570W: http://palosaari.fi/linux/
6571Q: http://patchwork.linuxtv.org/project/linux-media/list/
6572T: git git://linuxtv.org/anttip/media_tree.git
6573S: Maintained
6574F: drivers/media/tuners/qt1010*
6575
Richard Kuo4f4567c2011-10-31 18:56:38 -05006576QUALCOMM HEXAGON ARCHITECTURE
6577M: Richard Kuo <rkuo@codeaurora.org>
6578L: linux-hexagon@vger.kernel.org
6579S: Supported
6580F: arch/hexagon/
6581
Hans Verkuil35e35402012-11-23 07:02:29 -03006582QUICKCAM PARALLEL PORT WEBCAMS
6583M: Hans Verkuil <hverkuil@xs4all.nl>
6584L: linux-media@vger.kernel.org
6585T: git git://linuxtv.org/media_tree.git
6586W: http://linuxtv.org
6587S: Odd Fixes
6588F: drivers/media/parport/*-qcam*
6589
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006590RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006591M: Yehuda Sadeh <yehuda@inktank.com>
6592M: Sage Weil <sage@inktank.com>
6593M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006594M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006595W: http://ceph.com/
6596T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006597S: Supported
6598F: drivers/block/rbd.c
6599F: drivers/block/rbd_types.h
6600
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006602M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006603L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006605F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006606F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607
Hans de Goedec6c9b342012-11-04 17:03:58 -03006608RADIOSHARK RADIO DRIVER
6609M: Hans de Goede <hdegoede@redhat.com>
6610L: linux-media@vger.kernel.org
6611T: git git://linuxtv.org/media_tree.git
6612S: Maintained
6613F: drivers/media/radio/radio-shark.c
6614
6615RADIOSHARK2 RADIO DRIVER
6616M: Hans de Goede <hdegoede@redhat.com>
6617L: linux-media@vger.kernel.org
6618T: git git://linuxtv.org/media_tree.git
6619S: Maintained
6620F: drivers/media/radio/radio-shark2.c
6621F: drivers/media/radio/radio-tea5777.c
6622
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006624M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006625L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006627F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628
Randy Dunlape7839f22008-10-12 16:11:45 -07006629RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006630P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006631M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006632M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006633M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006634L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006635L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006636W: http://rt2x00.serialmonkey.com/
6637S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006638T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006639F: drivers/net/wireless/rt2x00/
6640
Nick Piggin9db55792008-02-08 04:19:49 -08006641RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006642M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006644F: Documentation/blockdev/ramdisk.txt
6645F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006646
Matt Mackall9e95ce22005-04-16 15:25:56 -07006647RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006648M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006650F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006651
Matt Porter394b7012005-11-07 01:00:15 -08006652RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006653M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006654M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006656F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006657
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006658RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006659L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006660S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006661F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006662
6663RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006664M: Josh Triplett <josh@freedesktop.org>
6665M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006666S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006667T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006668F: Documentation/RCU/torture.txt
6669F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006670
Florian Fainellic1f766b2008-02-06 22:39:44 +01006671RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006672M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006673S: Maintained
6674
Florian Fainellidb17f3952007-12-19 11:30:30 +01006675RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006676M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006677L: netdev@vger.kernel.org
6678S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006679F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006680
Andy Grovera09ed662009-02-24 15:30:41 +00006681RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006682M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006683L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006684S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006685F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006686
Josh Triplett595182b2006-10-04 02:17:21 -07006687READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006688M: Dipankar Sarma <dipankar@in.ibm.com>
6689M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006690W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006691S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006692T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006693F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006694X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006695F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006696F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006697X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006698
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006699REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006700M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006701L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006702Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006704F: Documentation/rtc.txt
6705F: drivers/rtc/
6706F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006707F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006708
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006710L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006712F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713
Mark Brownb83a3132011-05-11 19:59:58 +02006714REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006715M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006716T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6717S: Supported
6718F: drivers/base/regmap/
6719F: include/linux/regmap.h
6720
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006721REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6722M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006723T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006724S: Maintained
6725F: drivers/remoteproc/
6726F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006727F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006728
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03006729REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
6730M: Ohad Ben-Cohen <ohad@wizery.com>
6731T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
6732S: Maintained
6733F: drivers/rpmsg/
6734F: Documentation/rpmsg.txt
6735F: include/linux/rpmsg.h
6736
Ivo van Doorne08976452008-04-12 19:23:55 +02006737RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006738M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006739L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006740W: http://wireless.kernel.org/
6741T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6742T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006743S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006744F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006745F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006746
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006747RICOH SMARTMEDIA/XD DRIVER
6748M: Maxim Levitsky <maximlevitsky@gmail.com>
6749S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006750F: drivers/mtd/nand/r852.c
6751F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006752
Maxim Levitsky92634122011-03-25 01:56:59 -07006753RICOH R5C592 MEMORYSTICK DRIVER
6754M: Maxim Levitsky <maximlevitsky@gmail.com>
6755S: Maintained
6756F: drivers/memstick/host/r592.*
6757
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758ROCKETPORT DRIVER
6759P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760W: http://www.comtrol.com
6761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006762F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006763F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764
6765ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006766M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006768W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006770F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006771F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006772F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773
Antti Palosaari91952bc2012-10-01 12:28:46 -03006774RTL2830 MEDIA DRIVER
6775M: Antti Palosaari <crope@iki.fi>
6776L: linux-media@vger.kernel.org
6777W: http://linuxtv.org/
6778W: http://palosaari.fi/linux/
6779Q: http://patchwork.linuxtv.org/project/linux-media/list/
6780T: git git://linuxtv.org/anttip/media_tree.git
6781S: Maintained
6782F: drivers/media/dvb-frontends/rtl2830*
6783
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006784RTL2832 MEDIA DRIVER
6785M: Antti Palosaari <crope@iki.fi>
6786L: linux-media@vger.kernel.org
6787W: http://linuxtv.org/
6788W: http://palosaari.fi/linux/
6789Q: http://patchwork.linuxtv.org/project/linux-media/list/
6790T: git git://linuxtv.org/anttip/media_tree.git
6791S: Maintained
6792F: drivers/media/dvb-frontends/rtl2832*
6793
Larry Finger59840482008-11-12 17:13:09 -06006794RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006795M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006796L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006797W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006798T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006799S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006800F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006801
Larry Finger59840482008-11-12 17:13:09 -06006802RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006803M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006804M: Hin-Tak Leung <htl10@users.sourceforge.net>
6805M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006806L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006807W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006808T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006809S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006810F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006811
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006812RTL8192CE WIRELESS DRIVER
6813M: Larry Finger <Larry.Finger@lwfinger.net>
6814M: Chaoming Li <chaoming_li@realsil.com.cn>
6815L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006816W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006817T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6818S: Maintained
6819F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006820F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006821
6822S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006823M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006824L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006826F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006827
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828S390
Joe Perches8b58be82009-07-29 15:04:30 -07006829M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6830M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006832L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006833W: http://www.ibm.com/developerworks/linux/linux390/
6834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006835F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006836F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006837F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006838F: Documentation/s390/
6839F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006840
6841S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006842M: Ursula Braun <ursula.braun@de.ibm.com>
6843M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006844M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006845L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006846W: http://www.ibm.com/developerworks/linux/linux390/
6847S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006848F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006849
Felix Beckfeed9b62009-03-26 15:24:23 +01006850S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006851M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006852M: linux390@de.ibm.com
6853L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006854W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006855S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006856F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006857
Heiko Carstens5238da42006-02-11 17:56:01 -08006858S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006859M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006860M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006861L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006862W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006864F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006865
Ursula Braundd96df22007-09-19 13:09:02 +02006866S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006867M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006868M: linux390@de.ibm.com
6869L: linux-s390@vger.kernel.org
6870W: http://www.ibm.com/developerworks/linux/linux390/
6871S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006872F: drivers/s390/net/*iucv*
6873F: include/net/iucv/
6874F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006875
Ben Dooks4dde7f72008-06-30 22:40:38 +01006876S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006877M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006880F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006881
Hans Verkuil1f15a222012-11-23 07:45:29 -03006882SAA6588 RDS RECEIVER DRIVER
6883M: Hans Verkuil <hverkuil@xs4all.nl>
6884L: linux-media@vger.kernel.org
6885T: git git://linuxtv.org/media_tree.git
6886W: http://linuxtv.org
6887S: Odd Fixes
6888F: drivers/media/i2c/saa6588*
6889
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006890SAA7134 VIDEO4LINUX DRIVER
6891M: Mauro Carvalho Chehab <mchehab@redhat.com>
6892L: linux-media@vger.kernel.org
6893W: http://linuxtv.org
6894T: git git://linuxtv.org/media_tree.git
6895S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006896F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006897F: drivers/media/pci/saa7134/
6898
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006900M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006901L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006902T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006904F: drivers/media/common/saa7146/
6905F: drivers/media/pci/saa7146/
6906F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907
Corentin Chary92304a42011-12-05 12:38:35 -05006908SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006909M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006910L: platform-driver-x86@vger.kernel.org
6911S: Maintained
6912F: drivers/platform/x86/samsung-laptop.c
6913
Mark Brown4a109cc2010-09-24 10:50:46 +01006914SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006915M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006916L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6917S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006918F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006919
Jingoo Han0d89a282011-12-19 11:09:35 +09006920SAMSUNG FRAMEBUFFER DRIVER
6921M: Jingoo Han <jg1.han@samsung.com>
6922L: linux-fbdev@vger.kernel.org
6923S: Maintained
6924F: drivers/video/s3c-fb.c
6925
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006926SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6927M: Sangbeom Kim <sbkim73@samsung.com>
6928L: linux-kernel@vger.kernel.org
6929S: Supported
6930F: drivers/mfd/sec*.c
6931F: drivers/regulator/s2m*.c
6932F: drivers/regulator/s5m*.c
6933F: drivers/rtc/rtc-sec.c
6934F: include/linux/mfd/samsung/
6935
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006936SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6937M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6938L: linux-media@vger.kernel.org
6939L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6940S: Maintained
6941F: drivers/media/platform/s3c-camif/
6942F: include/media/s3c_camif.h
6943
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006944SAMSUNG S5C73M3 CAMERA DRIVER
6945M: Kyungmin Park <kyungmin.park@samsung.com>
6946M: Andrzej Hajda <a.hajda@samsung.com>
6947L: linux-media@vger.kernel.org
6948S: Supported
6949F: drivers/media/i2c/s5c73m3/*
6950
Alan Coxca749e22011-03-18 13:56:14 +00006951SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006952M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006953L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006954S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006955F: drivers/tty/serial
6956
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306957SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006958M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306959S: Maintained
6960F: include/linux/dw_dmac.h
6961F: drivers/dma/dw_dmac_regs.h
6962F: drivers/dma/dw_dmac.c
6963
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006964SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6965M: Seungwon Jeon <tgih.jun@samsung.com>
6966M: Jaehoon Chung <jh80.chung@samsung.com>
6967L: linux-mmc@vger.kernel.org
6968S: Maintained
6969F: include/linux/mmc/dw_mmc.h
6970F: drivers/mmc/host/dw_mmc*
6971
Thomas Gleixner88606e82010-12-14 21:37:13 +01006972TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006973M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006974M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006975T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006976S: Supported
6977F: include/linux/clocksource.h
6978F: include/linux/time.h
6979F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006980F: include/uapi/linux/time.h
6981F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006982F: kernel/time/clocksource.c
6983F: kernel/time/time*.c
6984F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006985F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006986
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006987TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006988M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006989M: Hans Verkuil <hverkuil@xs4all.nl>
6990S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006991F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006992
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006994M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006996F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997
6998SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006999M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007000M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007001T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09007003F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07007004F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007005F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006
Chen Liqin6bcf6732009-06-13 15:24:33 +08007007SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07007008M: Chen Liqin <liqin.chen@sunplusct.com>
7009M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08007010W: http://www.sunplusct.com
7011S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07007012F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08007013
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007015M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016L: linux-scsi@vger.kernel.org
7017W: http://www.kernel.dk
7018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007019F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020
Roland Dreierfb50a832010-10-07 09:54:53 -07007021SCSI RDMA PROTOCOL (SRP) INITIATOR
7022M: David Dillow <dillowda@ornl.gov>
7023L: linux-rdma@vger.kernel.org
7024S: Supported
7025W: http://www.openfabrics.org
7026Q: http://patchwork.kernel.org/project/linux-rdma/list/
7027T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7028F: drivers/infiniband/ulp/srp/
7029F: include/scsi/srp.h
7030
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007032M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007033L: linux-scsi@vger.kernel.org
7034W: http://www.torque.net/sg
7035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007036F: drivers/scsi/sg.c
7037F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038
7039SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007040M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7043T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7044T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007046F: drivers/scsi/
7047F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048
7049SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051L: linux-scsi@vger.kernel.org
7052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007053F: Documentation/scsi/st.txt
7054F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055
7056SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007057M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007058M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007059L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007060W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007062F: Documentation/networking/sctp.txt
7063F: include/linux/sctp.h
7064F: include/net/sctp/
7065F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007066
7067SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007068M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007069S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007070F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007071F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007072F: drivers/watchdog/scx200_wdt.c
7073F: drivers/i2c/busses/scx200*
7074F: drivers/mtd/maps/scx200_docflash.c
7075F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007076
7077SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007078M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007080F: drivers/char/scx200_gpio.c
7081F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007082
7083SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007086F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087
Sascha Sommer6a369132008-07-15 14:21:29 +02007088SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007089M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007090L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007092F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007093
Randy Dunlape7839f22008-10-12 16:11:45 -07007094SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007095M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007096L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007097T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7098S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007099F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007100F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007101
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007102SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007103M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007104L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007105L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007107F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007108
Ben Dooks0d1bb412009-06-14 13:52:37 +01007109SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007110M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007111L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007112S: Maintained
7113F: drivers/mmc/host/sdhci-s3c.c
7114
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007115SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007116M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007117L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007118L: linux-mmc@vger.kernel.org
7119S: Maintained
7120F: drivers/mmc/host/sdhci-spear.c
7121
James Morris8711cca2008-12-04 03:19:45 +11007122SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007123M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007124L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007125T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007126W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007127S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007128F: security/
James Morris8711cca2008-12-04 03:19:45 +11007129
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007131M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132S: Supported
7133
7134SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007135M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007136M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007137M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007138L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007139W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007140T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007142F: include/linux/selinux*
7143F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007144F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145
John Johansenc1c124e2010-07-29 14:48:09 -07007146APPARMOR SECURITY MODULE
7147M: John Johansen <john.johansen@canonical.com>
7148L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7149W: apparmor.wiki.kernel.org
7150T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7151S: Supported
7152F: security/apparmor/
7153
Jiri Slabycef2cf02007-05-08 00:31:45 -07007154SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007155M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007157F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007158F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007159
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007160SERIAL ATA (SATA) SUBSYSTEM
Tejun Heo3d9b9352013-05-07 10:09:27 -07007161M: Tejun Heo <tj@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162L: linux-ide@vger.kernel.org
Tejun Heo3d9b9352013-05-07 10:09:27 -07007163T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007165F: drivers/ata/
7166F: include/linux/ata.h
7167F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307169SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007170M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007171L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007172W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007173S: Supported
7174F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307175
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007176SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007177M: Sathya Perla <sathya.perla@emulex.com>
7178M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7179M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007180L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007181W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007182S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007183F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007184
Ben Hutchings8ceee662008-04-27 12:55:59 +01007185SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007186M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007187M: Ben Hutchings <bhutchings@solarflare.com>
7188L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007189S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007190F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007191
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007192SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007193M: Dimitri Sivanich <sivanich@sgi.com>
7194M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007196F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007197
7198SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007199M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007200L: linux-ia64@vger.kernel.org
7201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007202F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007203F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007204F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007205
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007207M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208L: linux-visws-devel@lists.sf.net
7209W: http://linux-visws.sf.net
7210S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007211F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212
Jack Steiner75312612008-08-15 00:40:42 -07007213SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007214M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007216F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007217
Hans Verkuil49cc6292012-11-30 07:13:29 -03007218SI470X FM RADIO RECEIVER I2C DRIVER
7219M: Hans Verkuil <hverkuil@xs4all.nl>
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/si470x/radio-si470x-i2c.c
7225
7226SI470X FM RADIO RECEIVER USB DRIVER
7227M: Hans Verkuil <hverkuil@xs4all.nl>
7228L: linux-media@vger.kernel.org
7229T: git git://linuxtv.org/media_tree.git
7230W: http://linuxtv.org
7231S: Maintained
7232F: drivers/media/radio/si470x/radio-si470x-common.c
7233F: drivers/media/radio/si470x/radio-si470x.h
7234F: drivers/media/radio/si470x/radio-si470x-usb.c
7235
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007236SI4713 FM RADIO TRANSMITTER I2C DRIVER
7237M: Eduardo Valentin <edubezval@gmail.com>
7238L: linux-media@vger.kernel.org
7239T: git git://linuxtv.org/media_tree.git
7240W: http://linuxtv.org
7241S: Odd Fixes
7242F: drivers/media/radio/si4713-i2c.?
7243
7244SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7245M: Eduardo Valentin <edubezval@gmail.com>
7246L: linux-media@vger.kernel.org
7247T: git git://linuxtv.org/media_tree.git
7248W: http://linuxtv.org
7249S: Odd Fixes
7250F: drivers/media/radio/radio-si4713.h
7251
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007252SIANO DVB DRIVER
7253M: Mauro Carvalho Chehab <mchehab@redhat.com>
7254L: linux-media@vger.kernel.org
7255W: http://linuxtv.org
7256T: git git://linuxtv.org/media_tree.git
7257S: Odd fixes
7258F: drivers/media/common/siano/
7259F: drivers/media/dvb/siano/
7260F: drivers/media/usb/siano/
7261F: drivers/media/mmc/siano
7262
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007263SH_VEU V4L2 MEM2MEM DRIVER
7264M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7265L: linux-media@vger.kernel.org
7266S: Maintained
7267F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007268
7269SH_VOU V4L2 OUTPUT DRIVER
7270M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7271L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007272S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007273F: drivers/media/platform/sh_vou.c
7274F: include/media/sh_vou.h
7275
Len Brown6349d992009-08-14 15:07:14 -04007276SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007277M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007278L: sfi-devel@simplefirmware.org
7279W: http://simplefirmware.org/
7280T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007281S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007282F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007283F: drivers/sfi/
7284F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007285
Linus Torvalds1da177e2005-04-16 15:20:36 -07007286SIMTEC EB110ATX (Chalice CATS)
7287P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007288P: Vincent Sanders <vince@simtec.co.uk>
7289M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007290W: http://www.simtec.co.uk/products/EB110ATX/
7291S: Supported
7292
7293SIMTEC EB2410ITX (BAST)
7294P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007295P: Vincent Sanders <vince@simtec.co.uk>
7296M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007297W: http://www.simtec.co.uk/products/EB2410ITX/
7298S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007299F: arch/arm/mach-s3c2410/mach-bast.c
7300F: arch/arm/mach-s3c2410/bast-ide.c
7301F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007303TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007304M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007305M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307306L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307307T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007308Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007309S: Supported
7310F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007311F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007312
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007313TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007314M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007315L: linux-media@vger.kernel.org
7316L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7317W: http://linuxtv.org/
7318Q: http://patchwork.linuxtv.org/project/linux-media/list/
7319T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007320S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007321F: drivers/media/platform/davinci/
7322F: include/media/davinci/
7323
Francois Romieu92aab3c2005-07-30 13:11:18 +02007324SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007325M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007326L: netdev@vger.kernel.org
7327S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007328F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007329
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007331M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007333L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007335F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336
7337SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007338M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007341F: Documentation/fb/sisfb.txt
7342F: drivers/video/sis/
7343F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344
7345SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007346M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347W: http://www.winischhofer.at/linuxsisusbvga.shtml
7348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007349F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350
Christoph Lameter415ad262007-07-26 10:40:56 -07007351SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007352M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007353M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007354M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007355L: linux-mm@kvack.org
7356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007357F: include/linux/sl?b*.h
7358F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007359
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007360SLEEPABLE READ-COPY UPDATE (SRCU)
7361M: Lai Jiangshan <laijs@cn.fujitsu.com>
7362M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7363W: http://www.rdrop.com/users/paulmck/RCU/
7364S: Supported
7365T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7366F: include/linux/srcu*
7367F: kernel/srcu*
7368
Casey Schaufler66372842012-05-23 18:34:52 -07007369SMACK SECURITY MODULE
7370M: Casey Schaufler <casey@schaufler-ca.com>
7371L: linux-security-module@vger.kernel.org
7372W: http://schaufler-ca.com
7373T: git git://git.gitorious.org/smack-next/kernel.git
7374S: Maintained
7375F: Documentation/security/Smack.txt
7376F: security/smack/
7377
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007379M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007380S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007381F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382
Sakari Ailuse8e31622012-11-12 18:14:39 -03007383SMIA AND SMIA++ IMAGE SENSOR DRIVER
7384M: Sakari Ailus <sakari.ailus@iki.fi>
7385L: linux-media@vger.kernel.org
7386S: Maintained
7387F: drivers/media/i2c/smiapp
7388F: include/media/smiapp.h
7389F: drivers/media/i2c/smiapp-pll.c
7390F: drivers/media/i2c/smiapp-pll.h
7391
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007392SMM665 HARDWARE MONITOR DRIVER
7393M: Guenter Roeck <linux@roeck-us.net>
7394L: lm-sensors@lm-sensors.org
7395S: Maintained
7396F: Documentation/hwmon/smm665
7397F: drivers/hwmon/smm665.c
7398
Steve Glendinning9df73052010-08-14 21:08:54 +02007399SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007400M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007401L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007402S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007403F: Documentation/hwmon/emc2103
7404F: drivers/hwmon/emc2103.c
7405
Hans de Goedea98d5062011-03-21 17:59:36 +01007406SMSC SCH5627 HARDWARE MONITOR DRIVER
7407M: Hans de Goede <hdegoede@redhat.com>
7408L: lm-sensors@lm-sensors.org
7409S: Supported
7410F: Documentation/hwmon/sch5627
7411F: drivers/hwmon/sch5627.c
7412
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007413SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007414M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007415L: lm-sensors@lm-sensors.org
7416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007417F: Documentation/hwmon/smsc47b397
7418F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007419
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007420SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007421M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007422L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007424F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007425F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007426
Steve Glendinning2cb37722008-12-11 20:54:30 -08007427SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007428M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007429L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007430S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007431F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007432
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007433SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007434M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007435L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007436S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007437F: drivers/video/smscufx.c
7438
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007439SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007440M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007441L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007442T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007443S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007444F: include/media/soc*
7445F: drivers/media/i2c/soc_camera/
7446F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007447
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007448SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007449M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007451F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007452
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007454M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007456S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007457F: drivers/md/
7458F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007459F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007462M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007463L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007465F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466
Michael Buesch61e115a2007-09-18 15:12:50 -04007467SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007468M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007469L: netdev@vger.kernel.org
7470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007471F: drivers/ssb/
7472F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007473
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007475M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007476L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007477W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007479F: Documentation/laptops/sony-laptop.txt
7480F: drivers/char/sonypi.c
7481F: drivers/platform/x86/sony-laptop.c
7482F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483
Alex Dubovbaf85322008-02-09 10:20:54 -08007484SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007485M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007486W: http://tifmxx.berlios.de/
7487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007488F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007489
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007491M: Jaroslav Kysela <perex@perex.cz>
7492M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007493L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007494W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007495T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007496T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007498F: Documentation/sound/
7499F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007500F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007501F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007502
Mark Brownbd903bd2008-11-19 19:16:05 +00007503SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007504M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007505M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007506T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007507L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007508W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007510F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007511F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007512
Sam Ravnborg473321f2009-01-04 15:47:49 -08007513SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007514M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007516Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007517T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7518T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007520F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007521F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522
David S. Miller6404fcc2010-03-16 01:00:17 -07007523SPARC SERIAL DRIVERS
7524M: "David S. Miller" <davem@davemloft.net>
7525L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007526T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7527T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007528S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007529F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007530F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007531F: drivers/tty/serial/sunhv.c
7532F: drivers/tty/serial/sunsab.c
7533F: drivers/tty/serial/sunsab.h
7534F: drivers/tty/serial/sunsu.c
7535F: drivers/tty/serial/sunzilog.c
7536F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007537
Christopher Li389325b2012-04-05 14:25:14 -07007538SPARSE CHECKER
7539M: "Christopher Li" <sparse@chrisli.org>
7540L: linux-sparse@vger.kernel.org
7541W: https://sparse.wiki.kernel.org/
7542T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7543T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7544S: Maintained
7545F: include/linux/compiler.h
7546
viresh kumarfc0c1952010-04-01 12:31:21 +01007547SPEAR PLATFORM 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/plat-spear/
7555
Viresh Kumar71e09a92012-04-20 22:39:48 +05307556SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007557M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307558M: Shiraz Hashim <shiraz.hashim@st.com>
7559L: spear-devel@list.st.com
7560L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7561W: http://www.st.com/spear
7562S: Maintained
7563F: arch/arm/mach-spear13xx/
7564
viresh kumarfc0c1952010-04-01 12:31:21 +01007565SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007566M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307567M: Shiraz Hashim <shiraz.hashim@st.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
7572F: arch/arm/mach-spear3xx/
7573
7574SPEAR6XX MACHINE SUPPORT
7575M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307576M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007577M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007578L: spear-devel@list.st.com
7579L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007580W: http://www.st.com/spear
7581S: Maintained
7582F: arch/arm/mach-spear6xx/
7583
7584SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007585M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007586L: spear-devel@list.st.com
7587L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007588W: http://www.st.com/spear
7589S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307590F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007591
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007592SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007593M: Mark Brown <broonie@kernel.org>
Grant Likely19624232013-04-08 11:51:42 +01007594M: Grant Likely <grant.likely@linaro.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007595L: spi-devel-general@lists.sourceforge.net
Mark Browne7e4e132013-04-18 18:18:47 +01007596T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007597Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007599F: Documentation/spi/
7600F: drivers/spi/
7601F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007602F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007603
Jim Lewis2752e4012006-09-29 02:01:19 -07007604SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007605M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7606M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007607L: netdev@vger.kernel.org
7608S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007609F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007610F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007612SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007613M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007614L: linuxppc-dev@lists.ozlabs.org
7615L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007616W: http://www.ibm.com/developerworks/power/cell/
7617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007618F: Documentation/filesystems/spufs.txt
7619F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007620
Phillip Lougherfc555842009-01-05 08:46:29 +00007621SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007622M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007623L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7624W: http://squashfs.org.uk
7625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007626F: Documentation/filesystems/squashfs.txt
7627F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007628
Linus Torvalds1da177e2005-04-16 15:20:36 -07007629SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007630M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007632F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633
Linus Torvalds26e9a392008-10-17 09:50:12 -07007634STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007635M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007636L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007637S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007638
Linus Torvalds26e9a392008-10-17 09:50:12 -07007639STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007640M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007641T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007642L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007643S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007644F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007645
Joe Perchesc8c8b102011-07-05 09:42:12 -07007646STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7647M: Henk de Groot <pe1dnn@amsat.org>
7648S: Odd Fixes
7649F: drivers/staging/wlags49_h2/
7650F: drivers/staging/wlags49_h25/
7651
Joe Perchesc9555152011-07-05 09:42:01 -07007652STAGING - ASUS OLED
7653M: Jakub Schmidtke <sjakub@gmail.com>
7654S: Odd Fixes
7655F: drivers/staging/asus_oled/
7656
Joe Perchesebd3d012011-07-05 09:42:02 -07007657STAGING - COMEDI
7658M: Ian Abbott <abbotti@mev.co.uk>
7659M: Mori Hess <fmhess@users.sourceforge.net>
7660S: Odd Fixes
7661F: drivers/staging/comedi/
7662
Joe Perches8ca572c2011-07-05 09:42:03 -07007663STAGING - CRYSTAL HD VIDEO DECODER
7664M: Naren Sankar <nsankar@broadcom.com>
7665M: Jarod Wilson <jarod@wilsonet.com>
7666M: Scott Davilla <davilla@4pi.com>
7667M: Manu Abraham <abraham.manu@gmail.com>
7668S: Odd Fixes
7669F: drivers/staging/crystalhd/
7670
Joe Perches0f16ffc2011-07-05 09:42:04 -07007671STAGING - ECHO CANCELLER
7672M: Steve Underwood <steveu@coppice.org>
7673M: David Rowe <david@rowetel.com>
7674S: Odd Fixes
7675F: drivers/staging/echo/
7676
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007677STAGING - ET131X NETWORK DRIVER
7678M: Mark Einon <mark.einon@gmail.com>
7679S: Odd Fixes
7680F: drivers/staging/et131x/
7681
Joe Perchesa0138162011-07-05 15:21:34 -07007682STAGING - FLARION FT1000 DRIVERS
7683M: Marek Belisko <marek.belisko@gmail.com>
7684S: Odd Fixes
7685F: drivers/staging/ft1000/
7686
Joe Perchesec3fab92011-07-05 09:42:05 -07007687STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7688M: David Täht <d@teklibre.com>
7689S: Odd Fixes
7690F: drivers/staging/frontier/
7691
Hans Verkuil98ded592013-03-09 12:59:44 -03007692STAGING - GO7007 MPEG CODEC
7693M: Hans Verkuil <hans.verkuil@cisco.com>
7694S: Maintained
7695F: drivers/staging/media/go7007/
7696
Joe Perches6c1bb422011-07-05 09:42:07 -07007697STAGING - INDUSTRIAL IO
7698M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007699L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007700S: Odd Fixes
7701F: drivers/staging/iio/
7702
Joe Perchesa0138162011-07-05 15:21:34 -07007703STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7704M: Jarod Wilson <jarod@wilsonet.com>
7705W: http://www.lirc.org/
7706S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007707F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007708
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007709STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007710M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007711M: Marc Dietrich <marvin24@gmx.de>
7712L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007713L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007714S: Maintained
7715F: drivers/staging/nvec/
7716
Joe Perchesa0138162011-07-05 15:21:34 -07007717STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7718M: Andres Salomon <dilinger@queued.net>
7719M: Chris Ball <cjb@laptop.org>
7720M: Jon Nettleton <jon.nettleton@gmail.com>
7721W: http://wiki.laptop.org/go/DCON
7722S: Odd Fixes
7723F: drivers/staging/olpc_dcon/
7724
Chris Kelly94cfdd12012-03-14 10:55:42 +00007725STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007726M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007727S: Maintained
7728F: drivers/staging/ozwpan/
7729
Joe Perchesa0138162011-07-05 15:21:34 -07007730STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007731M: Willy Tarreau <willy@meta-x.org>
7732S: Odd Fixes
7733F: drivers/staging/panel/
7734
Joe Perchesa0138162011-07-05 15:21:34 -07007735STAGING - REALTEK RTL8712U DRIVERS
7736M: Larry Finger <Larry.Finger@lwfinger.net>
7737M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7738S: Odd Fixes
7739F: drivers/staging/rtl8712/
7740
Joe Perches9629fa82011-07-05 09:42:09 -07007741STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7742M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7743S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007744F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007745
Joe Perchesa0138162011-07-05 15:21:34 -07007746STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007747M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7748S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007749F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007750
7751STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7752M: William Hubbs <w.d.hubbs@gmail.com>
7753M: Chris Brannon <chris@the-brannons.com>
7754M: Kirk Reiser <kirk@braille.uwo.ca>
7755M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7756L: speakup@braille.uwo.ca
7757W: http://www.linux-speakup.org/
7758S: Odd Fixes
7759F: drivers/staging/speakup/
7760
7761STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007762M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007763S: Odd Fixes
7764F: drivers/staging/tidspbridge/
7765
Joe Perchesa0138162011-07-05 15:21:34 -07007766STAGING - USB ENE SM/MS CARD READER DRIVER
7767M: Al Cho <acho@novell.com>
7768S: Odd Fixes
7769F: drivers/staging/keucr/
7770
Joe Perchesb3e871c2011-07-05 09:42:10 -07007771STAGING - VIA VT665X DRIVERS
7772M: Forest Bond <forest@alittletooquiet.net>
7773S: Odd Fixes
7774F: drivers/staging/vt665?/
7775
Joe Perches81a9a522011-07-05 09:42:11 -07007776STAGING - WINBOND IS89C35 WLAN USB DRIVER
7777M: Pavel Machek <pavel@ucw.cz>
7778S: Odd Fixes
7779F: drivers/staging/winbond/
7780
Joe Perches709bcb02011-07-05 09:42:13 -07007781STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007782M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007783S: Odd Fixes
7784F: drivers/staging/xgifb/
7785
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007787M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007788S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007789F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007791SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007792M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007793W: http://sammy.net/sun3/
7794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007795F: arch/m68k/kernel/*sun3*
7796F: arch/m68k/sun3*/
7797F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007798F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007799
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007800SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007801M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007802L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007804Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007805T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007806S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007807F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007808F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007809F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007811SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007812M: Len Brown <len.brown@intel.com>
7813M: Pavel Machek <pavel@ucw.cz>
7814M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007815L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007816S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007817F: Documentation/power/
7818F: arch/x86/kernel/acpi/
7819F: drivers/base/power/
7820F: kernel/power/
7821F: include/linux/suspend.h
7822F: include/linux/freezer.h
7823F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824
7825SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007826M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827L: linux-video@atrey.karlin.mff.cuni.cz
7828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007829F: Documentation/svga.txt
7830F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007832SWIOTLB SUBSYSTEM
7833M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7834L: linux-kernel@vger.kernel.org
7835S: Supported
7836F: lib/swiotlb.c
7837F: arch/*/kernel/pci-swiotlb.c
7838F: include/linux/swiotlb.h
7839
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307840SYNOPSYS ARC ARCHITECTURE
7841M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307842S: Supported
7843F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307844F: Documentation/devicetree/bindings/arc/
7845F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307846
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007848M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007850F: Documentation/filesystems/sysv-fs.txt
7851F: fs/sysv/
7852F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007854TARGET SUBSYSTEM
7855M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7856L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007857L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007858L: http://groups.google.com/group/linux-iscsi-target-dev
7859W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007860T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007861S: Supported
7862F: drivers/target/
7863F: include/target/
7864F: Documentation/target/
7865
Alan Cox4e688522008-04-30 00:52:11 -07007866TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007867M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007869F: Documentation/accounting/taskstats*
7870F: include/linux/taskstats*
7871F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007872
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007873TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007874M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007875L: netdev@vger.kernel.org
7876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007877F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007878F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007879F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007880
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007881TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007882M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7883M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007884W: http://tcp-lp-mod.sourceforge.net/
7885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007886F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007887
Antti Palosaari91952bc2012-10-01 12:28:46 -03007888TDA10071 MEDIA DRIVER
7889M: Antti Palosaari <crope@iki.fi>
7890L: linux-media@vger.kernel.org
7891W: http://linuxtv.org/
7892W: http://palosaari.fi/linux/
7893Q: http://patchwork.linuxtv.org/project/linux-media/list/
7894T: git git://linuxtv.org/anttip/media_tree.git
7895S: Maintained
7896F: drivers/media/dvb-frontends/tda10071*
7897
7898TDA18212 MEDIA DRIVER
7899M: Antti Palosaari <crope@iki.fi>
7900L: linux-media@vger.kernel.org
7901W: http://linuxtv.org/
7902W: http://palosaari.fi/linux/
7903Q: http://patchwork.linuxtv.org/project/linux-media/list/
7904T: git git://linuxtv.org/anttip/media_tree.git
7905S: Maintained
7906F: drivers/media/tuners/tda18212*
7907
7908TDA18218 MEDIA DRIVER
7909M: Antti Palosaari <crope@iki.fi>
7910L: linux-media@vger.kernel.org
7911W: http://linuxtv.org/
7912W: http://palosaari.fi/linux/
7913Q: http://patchwork.linuxtv.org/project/linux-media/list/
7914T: git git://linuxtv.org/anttip/media_tree.git
7915S: Maintained
7916F: drivers/media/tuners/tda18218*
7917
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007918TDA18271 MEDIA DRIVER
7919M: Michael Krufky <mkrufky@linuxtv.org>
7920L: linux-media@vger.kernel.org
7921W: http://linuxtv.org/
7922W: http://github.com/mkrufky
7923Q: http://patchwork.linuxtv.org/project/linux-media/list/
7924T: git git://linuxtv.org/mkrufky/tuners.git
7925S: Maintained
7926F: drivers/media/tuners/tda18271*
7927
Michael Krufkye48307a2012-10-02 00:56:33 -03007928TDA827x MEDIA DRIVER
7929M: Michael Krufky <mkrufky@linuxtv.org>
7930L: linux-media@vger.kernel.org
7931W: http://linuxtv.org/
7932W: http://github.com/mkrufky
7933Q: http://patchwork.linuxtv.org/project/linux-media/list/
7934T: git git://linuxtv.org/mkrufky/tuners.git
7935S: Maintained
7936F: drivers/media/tuners/tda8290.*
7937
Michael Krufky66cf9212012-10-02 00:56:28 -03007938TDA8290 MEDIA DRIVER
7939M: Michael Krufky <mkrufky@linuxtv.org>
7940L: linux-media@vger.kernel.org
7941W: http://linuxtv.org/
7942W: http://github.com/mkrufky
7943Q: http://patchwork.linuxtv.org/project/linux-media/list/
7944T: git git://linuxtv.org/mkrufky/tuners.git
7945S: Maintained
7946F: drivers/media/tuners/tda8290.*
7947
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007948TDA9840 MEDIA DRIVER
7949M: Hans Verkuil <hverkuil@xs4all.nl>
7950L: linux-media@vger.kernel.org
7951T: git git://linuxtv.org/media_tree.git
7952W: http://linuxtv.org
7953S: Maintained
7954F: drivers/media/i2c/tda9840*
7955
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007956TEA5761 TUNER DRIVER
7957M: Mauro Carvalho Chehab <mchehab@redhat.com>
7958L: linux-media@vger.kernel.org
7959W: http://linuxtv.org
7960T: git git://linuxtv.org/media_tree.git
7961S: Odd fixes
7962F: drivers/media/tuners/tea5761.*
7963
7964TEA5767 TUNER DRIVER
7965M: Mauro Carvalho Chehab <mchehab@redhat.com>
7966L: linux-media@vger.kernel.org
7967W: http://linuxtv.org
7968T: git git://linuxtv.org/media_tree.git
7969S: Maintained
7970F: drivers/media/tuners/tea5767.*
7971
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007972TEA6415C MEDIA DRIVER
7973M: Hans Verkuil <hverkuil@xs4all.nl>
7974L: linux-media@vger.kernel.org
7975T: git git://linuxtv.org/media_tree.git
7976W: http://linuxtv.org
7977S: Maintained
7978F: drivers/media/i2c/tea6415c*
7979
7980TEA6420 MEDIA DRIVER
7981M: Hans Verkuil <hverkuil@xs4all.nl>
7982L: linux-media@vger.kernel.org
7983T: git git://linuxtv.org/media_tree.git
7984W: http://linuxtv.org
7985S: Maintained
7986F: drivers/media/i2c/tea6420*
7987
Jiri Pirko3d249d42011-11-11 22:16:48 +00007988TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007989M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007990L: netdev@vger.kernel.org
7991S: Supported
7992F: drivers/net/team/
7993F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007994F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007995
Vivien Didelot7d029122013-01-04 16:18:14 -05007996TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7997M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7998S: Maintained
7999F: arch/x86/platform/ts5500/
8000
Sean Young40ad4a32012-11-19 10:32:53 -03008001TECHNOTREND USB IR RECEIVER
8002M: Sean Young <sean@mess.org>
8003L: linux-media@vger.kernel.org
8004S: Maintained
8005F: drivers/media/rc/ttusbir.c
8006
Erik Gilling84b94142010-06-09 15:35:53 -07008007TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07008008M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07008009L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07008010Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8011T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07008012S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07008013N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07008014
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008015TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008016M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008017L: netdev@vger.kernel.org
8018S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008019F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008020
Alan Cox4e688522008-04-30 00:52:11 -07008021Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008022M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008024F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008025
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008026TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008027M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008028M: Max Filippov <jcmvbkbc@gmail.com>
8029L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008031F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008032
Zhang Ruid3fb6952012-11-15 08:58:27 +08008033THERMAL
8034M: Zhang Rui <rui.zhang@intel.com>
Eduardo Valentinfa3031d2013-04-10 14:44:08 +00008035M: Eduardo Valentin <eduardo.valentin@ti.com>
Zhang Ruid3fb6952012-11-15 08:58:27 +08008036L: linux-pm@vger.kernel.org
8037T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
Eduardo Valentin2f99a472013-04-10 14:44:09 +00008038Q: https://patchwork.kernel.org/project/linux-pm/list/
Zhang Ruid3fb6952012-11-15 08:58:27 +08008039S: Supported
8040F: drivers/thermal/
8041F: include/linux/thermal.h
Eduardo Valentincfaf7172013-04-17 17:12:21 +00008042F: include/linux/cpu_cooling.h
Zhang Ruid3fb6952012-11-15 08:58:27 +08008043
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008044THINGM BLINK(1) USB RGB LED DRIVER
8045M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8046S: Maintained
8047F: drivers/hid/hid-thingm.c
8048
Alan Cox4e688522008-04-30 00:52:11 -07008049THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008050M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008051L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05008052L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008053W: http://ibm-acpi.sourceforge.net
8054W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008055T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008057F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008058
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008059TI BANDGAP AND THERMAL DRIVER
8060M: Eduardo Valentin <eduardo.valentin@ti.com>
8061L: linux-pm@vger.kernel.org
8062S: Maintained
8063F: drivers/staging/omap-thermal/
8064
Alex Dubov4020f2d2006-10-04 02:15:37 -07008065TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008066M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008068F: drivers/misc/tifm*
8069F: drivers/mmc/host/tifm_sd.c
8070F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008071
M R Swami Reddy152ad442012-04-02 20:02:31 +05308072TI LM49xxx FAMILY ASoC CODEC DRIVERS
8073M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308074M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308075L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8076S: Maintained
8077F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308078F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308079
Kim, Milo0edd8072012-12-17 16:01:17 -08008080TI LP855x BACKLIGHT DRIVER
8081M: Milo Kim <milo.kim@ti.com>
8082S: Maintained
8083F: Documentation/backlight/lp855x-driver.txt
8084F: drivers/video/backlight/lp855x_bl.c
8085F: include/linux/platform_data/lp855x.h
8086
Kim, Milofaf13f62012-12-10 05:27:03 +00008087TI LP8727 CHARGER DRIVER
8088M: Milo Kim <milo.kim@ti.com>
8089S: Maintained
8090F: drivers/power/lp8727_charger.c
8091F: include/linux/platform_data/lp8727.h
8092
Kim, Milo22f12292012-12-10 05:27:55 +00008093TI LP8788 MFD DRIVER
8094M: Milo Kim <milo.kim@ti.com>
8095S: Maintained
8096F: drivers/iio/adc/lp8788_adc.c
8097F: drivers/leds/leds-lp8788.c
8098F: drivers/mfd/lp8788*.c
8099F: drivers/power/lp8788-charger.c
8100F: drivers/regulator/lp8788-*.c
8101F: include/linux/mfd/lp8788*.h
8102
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008103TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008104M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008105L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8106S: Maintained
8107F: sound/soc/codecs/twl4030*
8108
Luciano Coelho90921012011-11-20 21:40:41 +02008109TI WILINK WIRELESS DRIVERS
8110M: Luciano Coelho <coelho@ti.com>
8111L: linux-wireless@vger.kernel.org
8112W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8113W: http://wireless.kernel.org/en/users/Drivers/wl1251
8114T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8115S: Maintained
8116F: drivers/net/wireless/ti/
8117F: include/linux/wl12xx.h
8118
Per Lidene86eaa32006-01-12 16:45:18 +01008119TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008120M: Jon Maloy <jon.maloy@ericsson.com>
8121M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008122L: netdev@vger.kernel.org (core kernel code)
8123L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008124W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008125S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008126F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008127F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008128
Chris Metcalf867e3592010-05-28 23:09:12 -04008129TILE ARCHITECTURE
8130M: Chris Metcalf <cmetcalf@tilera.com>
8131W: http://www.tilera.com/scm/
8132S: Supported
8133F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008134F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008135F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008136F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008137
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008139M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008140L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141W: http://sourceforge.net/projects/tlan/
8142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008143F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008144F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008146TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008147M: Kentaro Takeda <takedakn@nttdata.co.jp>
8148M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008149L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8150L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008151L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8152L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8153W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008154T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008156F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008157
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008158TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008159M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05008160L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008161S: Maintained
8162F: drivers/platform/x86/topstar-laptop.c
8163
Linus Torvalds1da177e2005-04-16 15:20:36 -07008164TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05008165L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008166S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008167F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168
8169TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008170M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008171L: tlinux-users@tce.toshiba-dme.co.jp
8172W: http://www.buzzard.org.uk/toshiba/
8173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008174F: drivers/char/toshiba.c
8175F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008176F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177
Pierre Ossmand719f902009-03-24 21:06:09 +01008178TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008179M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008180M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008181L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008182S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008183F: drivers/mmc/host/tmio_mmc*
8184F: drivers/mmc/host/sh_mobile_sdhi.c
8185F: include/linux/mmc/tmio.h
8186F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008187
Hugh Dickins98f32602009-05-21 20:33:58 +01008188TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008189M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008190L: linux-mm@kvack.org
8191S: Maintained
8192F: include/linux/shmem_fs.h
8193F: mm/shmem.c
8194
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008195TM6000 VIDEO4LINUX DRIVER
8196M: Mauro Carvalho Chehab <mchehab@redhat.com>
8197L: linux-media@vger.kernel.org
8198W: http://linuxtv.org
8199T: git git://linuxtv.org/media_tree.git
8200S: Odd fixes
8201F: drivers/media/usb/tm6000/
8202
Alan Cox4e688522008-04-30 00:52:11 -07008203TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008204M: Kent Yoder <key@linux.vnet.ibm.com>
8205M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008206W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008207M: Marcel Selhorst <tpmdd@selhorst.net>
8208M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008209W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008210L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008212F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008213
Joe Perchesd6f005a2009-10-26 16:49:40 -07008214TRACING
8215M: Steven Rostedt <rostedt@goodmis.org>
8216M: Frederic Weisbecker <fweisbec@gmail.com>
8217M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008218T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008219S: Maintained
8220F: Documentation/trace/ftrace.txt
8221F: arch/*/*/*/ftrace.h
8222F: arch/*/kernel/ftrace.c
8223F: include/*/ftrace.h
8224F: include/linux/trace*.h
8225F: include/trace/
8226F: kernel/trace/
8227
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008229M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008230T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008231S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008232K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008233
Alan Cox4e688522008-04-30 00:52:11 -07008234TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008235M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008236M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008237S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008238T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008239F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008240F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008241F: include/linux/serial_core.h
8242F: include/linux/serial.h
8243F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008244F: include/uapi/linux/serial_core.h
8245F: include/uapi/linux/serial.h
8246F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008247
Antti Palosaari91952bc2012-10-01 12:28:46 -03008248TUA9001 MEDIA DRIVER
8249M: Antti Palosaari <crope@iki.fi>
8250L: linux-media@vger.kernel.org
8251W: http://linuxtv.org/
8252W: http://palosaari.fi/linux/
8253Q: http://patchwork.linuxtv.org/project/linux-media/list/
8254T: git git://linuxtv.org/anttip/media_tree.git
8255S: Maintained
8256F: drivers/media/tuners/tua9001*
8257
Grant Grundler740db6d2008-02-17 11:53:49 -07008258TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008259M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008260L: netdev@vger.kernel.org
8261S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008262F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263
8264TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008265M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266W: http://vtun.sourceforge.net/tun
8267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008268F: Documentation/networking/tuntap.txt
8269F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008270
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008271TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008272M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008274F: drivers/tc/
8275F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008276
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008278M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279L: linux-scsi@vger.kernel.org
8280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008281F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008282
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008283UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008284M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008285M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008286L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008287T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008288W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008290F: Documentation/filesystems/ubifs.txt
8291F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008292
Alan Coxcc2020e2008-05-19 14:21:51 +01008293UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008294M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008295W: http://www.uclinux.org/
8296L: uclinux-dev@uclinux.org (subscribers-only)
8297S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008298F: arch/m68k/*/*_no.*
8299F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008300
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008301UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008302M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008303W: http://uclinux-h8.sourceforge.jp/
8304S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008305F: arch/h8300/
8306F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008307F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008308
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008310M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008312F: Documentation/filesystems/udf.txt
8313F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314
Alan Coxcc2020e2008-05-19 14:21:51 +01008315UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008316M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008318F: Documentation/filesystems/ufs.txt
8319F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008320
David Herrmann0a09d3a2012-06-10 15:16:28 +02008321UHID USERSPACE HID IO DRIVER:
8322M: David Herrmann <dh.herrmann@googlemail.com>
8323L: linux-input@vger.kernel.org
8324S: Maintained
8325F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008326F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008327
David Vrabel18332a82008-09-17 16:34:44 +01008328ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008329L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008330S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008331F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008332F: include/linux/uwb.h
8333F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008334
GuanXuetaob31d8272011-01-16 00:35:49 +08008335UNICORE32 ARCHITECTURE:
8336M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8337W: http://mprc.pku.edu.cn/~guanxuetao/linux
8338S: Maintained
8339T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8340F: arch/unicore32/
8341
Tony Finchd8379ab2009-11-27 15:50:30 +00008342UNIFDEF
8343M: Tony Finch <dot@dotat.at>
8344W: http://dotat.at/prog/unifdef
8345S: Maintained
8346F: scripts/unifdef.c
8347
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008349M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008350W: http://www.kernel.dk
8351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008352F: Documentation/cdrom/
8353F: drivers/cdrom/cdrom.c
8354F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008355F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008356
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308357UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8358M: Vinayak Holikatti <vinholikatti@gmail.com>
8359M: Santosh Y <santoshsy@gmail.com>
8360L: linux-scsi@vger.kernel.org
8361S: Supported
8362F: Documentation/scsi/ufs.txt
8363F: drivers/scsi/ufs/
8364
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008365UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008366M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008367W: http://www.linux-mtd.infradead.org/
8368L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008369T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008370S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008371F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008372F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008373F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008374
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008375UNSORTED BLOCK IMAGES (UBI) Fastmap
8376M: Richard Weinberger <richard@nod.at>
8377L: linux-mtd@lists.infradead.org
8378S: Maintained
8379F: drivers/mtd/ubi/fastmap.c
8380
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008382M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008383L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008385F: Documentation/usb/acm.txt
8386F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008388USB AR5523 WIRELESS DRIVER
8389M: Pontus Fuchs <pontus.fuchs@gmail.com>
8390L: linux-wireless@vger.kernel.org
8391S: Maintained
8392F: drivers/net/wireless/ath/ar5523/
8393
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008394USB ATTACHED SCSI
8395M: Matthew Wilcox <willy@linux.intel.com>
8396M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008397M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008398L: linux-usb@vger.kernel.org
8399L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008400S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008401F: drivers/usb/storage/uas.c
8402
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008404M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008405L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008407F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008408F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008410USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008411M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008412L: linux-usb@vger.kernel.org
8413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008414F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008415
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008416USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008417M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008418L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008419W: http://www.linux-usb.org/usbnet
8420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008421F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008422
Alan Coxcc2020e2008-05-19 14:21:51 +01008423USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008424M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008425L: rio500-users@lists.sourceforge.net
8426W: http://rio500.sourceforge.net
8427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008428F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008429
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008431M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008432L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008434F: Documentation/usb/ehci.txt
8435F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436
David Brownell69ae9e32006-11-14 02:03:31 -08008437USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008438M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008439L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008440W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008441T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008443F: drivers/usb/gadget/
8444F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008445
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008446USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008447M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008448L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008449T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008451F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008452F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453
matt mooney857aab32011-06-17 15:50:46 -07008454USB/IP DRIVERS
8455M: Matt Mooney <mfm@muteddisk.com>
8456L: linux-usb@vger.kernel.org
8457S: Maintained
8458F: drivers/staging/usbip/
8459
Olav Kongas959eea22005-11-03 17:38:14 +02008460USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008461M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008462L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008464F: drivers/usb/host/isp116x*
8465F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008466
Linus Torvalds1da177e2005-04-16 15:20:36 -07008467USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008468M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008471F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472
8473USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008474M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008475L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008476L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008477S: Maintained
8478W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008479F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480
Clemens Ladischaf399172011-01-10 16:32:54 +01008481USB MIDI DRIVER
8482M: Clemens Ladisch <clemens@ladisch.de>
8483L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8484T: git git://git.alsa-project.org/alsa-kernel.git
8485S: Maintained
8486F: sound/usb/midi.*
8487
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008489M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008490L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008492F: Documentation/usb/ohci.txt
8493F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494
Matthias Urlichsba460e42005-07-14 00:33:47 -07008495USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008496M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008497L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008499F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008500
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008502M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008503L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008504L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008505T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506W: http://pegasus2.sourceforge.net/
8507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008508F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008509
Felipe Balbid3ad5582012-05-21 16:24:49 +03008510USB PHY LAYER
8511M: Felipe Balbi <balbi@ti.com>
8512L: linux-usb@vger.kernel.org
8513T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8514S: Maintained
8515F: drivers/usb/phy/
8516F: drivers/usb/otg/
8517
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008518USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008519M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008520L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008522F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008523
8524USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008525M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008526L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008527L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008528T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008529W: http://pegasus2.sourceforge.net/
8530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008531F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532
Alan Cox4e688522008-04-30 00:52:11 -07008533USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008534M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008535L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008537F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008538
8539USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008540M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008541L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008542S: Maintained
8543W: http://geocities.com/i0xox0i
8544W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008545F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008546
Linus Torvalds1da177e2005-04-16 15:20:36 -07008547USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008548M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008549W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008551F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552
8553USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008554M: Peter Berger <pberger@brimson.com>
8555M: Al Borchers <alborchers@steinerpoint.com>
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/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559
8560USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008561M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008562L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008564F: Documentation/usb/usb-serial.txt
8565F: drivers/usb/serial/generic.c
8566F: drivers/usb/serial/usb-serial.c
8567F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008570M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008571L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008573F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008574
8575USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008576M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008577L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008579F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008580
8581USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008582M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008583L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008584W: http://www.connecttech.com
8585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008586F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008588USB SMSC75XX ETHERNET DRIVER
8589M: Steve Glendinning <steve.glendinning@shawell.net>
8590L: netdev@vger.kernel.org
8591S: Maintained
8592F: drivers/net/usb/smsc75xx.*
8593
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008594USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008595M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008596L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008598F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008599
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008600USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008601M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008602L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008603L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008604T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605W: http://www.linux-projects.org
8606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008607F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008608F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008609
8610USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008611M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008612L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008614T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008615S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008616F: Documentation/usb/
8617F: drivers/net/usb/
8618F: drivers/usb/
8619F: include/linux/usb.h
8620F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008621
8622USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008623M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008624L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008626F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008627
David Brownell69ae9e32006-11-14 02:03:31 -08008628USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008629M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008630L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008631W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008633F: drivers/net/usb/usbnet.c
8634F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008636USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008637M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008638L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008639L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008640T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008641W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008642S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008643F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008644F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008646USB VISION DRIVER
8647M: Hans Verkuil <hverkuil@xs4all.nl>
8648L: linux-media@vger.kernel.org
8649T: git git://linuxtv.org/media_tree.git
8650W: http://linuxtv.org
8651S: Odd Fixes
8652F: drivers/media/usb/usbvision/
8653
Laurent Pinchart8282da42012-10-04 02:32:42 +02008654USB WEBCAM GADGET
8655M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8656L: linux-usb@vger.kernel.org
8657S: Maintained
8658F: drivers/usb/gadget/*uvc*.c
8659F: drivers/usb/gadget/webcam.c
8660
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008661USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008662M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008663L: linux-wireless@vger.kernel.org
8664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008665F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008666
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008667USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008668M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008669L: linux-usb@vger.kernel.org
8670S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008671F: drivers/usb/host/xhci*
8672F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008673
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008675L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008676W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008677S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008678F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008680USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008681M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008682L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008683L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008684T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008685W: http://royale.zerezo.com/zr364xx/
8686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008687F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008688F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008689
Randy Dunlape7839f22008-10-12 16:11:45 -07008690USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008691M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008692M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008693L: user-mode-linux-devel@lists.sourceforge.net
8694L: user-mode-linux-user@lists.sourceforge.net
8695W: http://user-mode-linux.sourceforge.net
8696S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008697F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008698F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008699F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008700F: fs/hostfs/
8701F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008702
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008703USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008704M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008705M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008707F: Documentation/DocBook/uio-howto.tmpl
8708F: drivers/uio/
8709F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008710
Karel Zak256cccb2012-06-01 10:13:09 +02008711UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008712M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008713L: util-linux@vger.kernel.org
8714W: http://en.wikipedia.org/wiki/Util-linux
8715T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008716S: Maintained
8717
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008718UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008719M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008720L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008721W: http://dev.gentoo.org/~spock/projects/uvesafb/
8722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008723F: Documentation/fb/uvesafb.txt
8724F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008725
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008726VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008727M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008729F: Documentation/filesystems/vfat.txt
8730F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008731
Alex Williamsoncba33452012-07-31 08:16:22 -06008732VFIO DRIVER
8733M: Alex Williamson <alex.williamson@redhat.com>
8734L: kvm@vger.kernel.org
8735S: Maintained
8736F: Documentation/vfio.txt
8737F: drivers/vfio/
8738F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008739F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008740
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008741VIDEOBUF2 FRAMEWORK
8742M: Pawel Osciak <pawel@osciak.com>
8743M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008744M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008745L: linux-media@vger.kernel.org
8746S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008747F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008748F: include/media/videobuf2-*
8749
Amit Shah9a824462010-03-23 18:23:09 +05308750VIRTIO CONSOLE DRIVER
8751M: Amit Shah <amit.shah@redhat.com>
8752L: virtualization@lists.linux-foundation.org
8753S: Maintained
8754F: drivers/char/virtio_console.c
8755F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008756F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308757
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308758VIRTIO CORE, NET AND BLOCK DRIVERS
8759M: Rusty Russell <rusty@rustcorp.com.au>
8760M: "Michael S. Tsirkin" <mst@redhat.com>
8761L: virtualization@lists.linux-foundation.org
8762S: Maintained
8763F: drivers/virtio/
8764F: drivers/net/virtio_net.c
8765F: drivers/block/virtio_blk.c
8766F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308767F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308768
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008769VIRTIO HOST (VHOST)
8770M: "Michael S. Tsirkin" <mst@redhat.com>
8771L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008772L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008773L: netdev@vger.kernel.org
8774S: Maintained
8775F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008776F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008777
Linus Torvalds1da177e2005-04-16 15:20:36 -07008778VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008779M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008780S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008781F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008782
Harald Weltef0bf7f62009-06-17 20:22:39 +02008783VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008784M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008785M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008786S: Maintained
8787F: drivers/mmc/host/via-sdmmc.c
8788
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008789VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008790M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008791L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008792S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008793F: include/linux/via-core.h
8794F: include/linux/via-gpio.h
8795F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008796F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008797
Francois Romieu01f20732007-01-26 00:57:17 -08008798VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008799M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008800L: netdev@vger.kernel.org
8801S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008802F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008803
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008804VIVI VIRTUAL VIDEO DRIVER
8805M: Hans Verkuil <hverkuil@xs4all.nl>
8806L: linux-media@vger.kernel.org
8807T: git git://linuxtv.org/media_tree.git
8808W: http://linuxtv.org
8809S: Maintained
8810F: drivers/media/platform/vivi*
8811
Patrick McHardybe7f8272007-10-23 20:26:36 -07008812VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008813M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008814L: netdev@vger.kernel.org
8815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008816F: drivers/net/macvlan.c
8817F: include/linux/if_*vlan.h
8818F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008819
Florian Fainelli55e331c2009-06-16 15:33:53 -07008820VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008821M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008822L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008823S: Maintained
8824F: drivers/vlynq/vlynq.c
8825F: include/linux/vlynq.h
8826
Martyn Welch390beae2012-05-03 17:52:36 +01008827VME SUBSYSTEM
8828M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008829M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008830M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8831L: devel@driverdev.osuosl.org
8832S: Maintained
8833T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8834F: Documentation/vme_api.txt
8835F: drivers/staging/vme/
8836F: drivers/vme/
8837F: include/linux/vme*
8838
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008839VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008840M: Shreyas Bhatewara <sbhatewara@vmware.com>
8841M: "VMware, Inc." <pv-drivers@vmware.com>
8842L: netdev@vger.kernel.org
8843S: Maintained
8844F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008845
Alok Kataria851b1642009-10-13 14:51:05 -07008846VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008847M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008848M: VMware PV-Drivers <pv-drivers@vmware.com>
8849L: linux-scsi@vger.kernel.org
8850S: Maintained
8851F: drivers/scsi/vmw_pvscsi.c
8852F: drivers/scsi/vmw_pvscsi.h
8853
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008854VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08008855M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008856M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008857W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008858W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008859T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008861F: drivers/regulator/
8862F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008863
Juerg Haefligerab413192006-09-24 20:54:04 +02008864VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008865M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008866L: lm-sensors@lm-sensors.org
8867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008868F: Documentation/hwmon/vt1211
8869F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008870
Roger Lucas1de9e372005-11-26 20:20:05 +01008871VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008872M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008873L: lm-sensors@lm-sensors.org
8874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008875F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008876
Tony Olech88095e72011-05-14 16:48:13 -04008877VUB300 USB to SDIO/SD/MMC bridge chip
8878M: Tony Olech <tony.olech@elandigitalsystems.com>
8879L: linux-mmc@vger.kernel.org
8880L: linux-usb@vger.kernel.org
8881S: Supported
8882F: drivers/mmc/host/vub300.c
8883
Linus Torvalds1da177e2005-04-16 15:20:36 -07008884W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008885M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008887F: Documentation/w1/
8888F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008889
Charles Spirakis13927072006-07-05 18:05:15 +02008890W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008891M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008892L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008894F: Documentation/hwmon/w83791d
8895F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008896
Rudolf Marek61db0112006-12-12 18:18:30 +01008897W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008898M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008899L: lm-sensors@lm-sensors.org
8900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008901F: Documentation/hwmon/w83793
8902F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008903
Jean Delvaree3760b42010-10-28 20:31:49 +02008904W83795 HARDWARE MONITORING DRIVER
8905M: Jean Delvare <khali@linux-fr.org>
8906L: lm-sensors@lm-sensors.org
8907S: Maintained
8908F: drivers/hwmon/w83795.c
8909
Linus Torvalds1da177e2005-04-16 15:20:36 -07008910W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008911M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008913F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008915WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008916M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008917L: linux-watchdog@vger.kernel.org
8918W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008919T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008921F: Documentation/watchdog/
8922F: drivers/watchdog/
8923F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008924F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008925
Linus Torvalds1da177e2005-04-16 15:20:36 -07008926WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008927M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008928L: linux-scsi@vger.kernel.org
8929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008930F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008931
David Herrmannb22e00f2011-09-06 13:50:40 +02008932WIIMOTE HID DRIVER
8933M: David Herrmann <dh.herrmann@googlemail.com>
8934L: linux-input@vger.kernel.org
8935S: Maintained
8936F: drivers/hid/hid-wiimote*
8937
David Härdemane258b802009-09-21 17:04:53 -07008938WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008939M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008940S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008941F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008942
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008943WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008944M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008945M: linux-wimax@intel.com
8946L: wimax@linuxwimax.org
8947S: Supported
8948W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008949F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008950F: include/linux/wimax/debug.h
8951F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008952F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008953F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008954
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008955WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008956M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008958F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008959
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008961M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008962L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008963W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008965F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008966
Mark Brownfebf1df2008-04-02 00:51:09 -04008967WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008968M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8969M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008970L: linux-input@vger.kernel.org
8971T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8972W: http://opensource.wolfsonmicro.com/node/7
8973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008974F: drivers/input/touchscreen/*wm97*
8975F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008976
Mark Brown055bcbc2010-08-13 14:18:12 +01008977WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008978M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008979L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008980T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008981T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008982W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008983S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008984F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008985F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008986F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008987F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008988F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008989F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008990F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008991F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008992F: drivers/input/misc/wm831x-on.c
8993F: drivers/input/touchscreen/wm831x-ts.c
8994F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008995F: drivers/mfd/arizona*
8996F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008997F: drivers/power/wm83*.c
8998F: drivers/rtc/rtc-wm83*.c
8999F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01009000F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01009001F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01009002F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01009003F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01009004F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08009005F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09009006F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01009007F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01009008F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01009009F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01009010
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009011WORKQUEUE
9012M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009013T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9014S: Maintained
9015F: include/linux/workqueue.h
9016F: kernel/workqueue.c
9017F: Documentation/workqueue.txt
9018
Linus Torvalds1da177e2005-04-16 15:20:36 -07009019X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009020M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009022S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009023F: Documentation/networking/x25*
9024F: include/net/x25*
9025F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009026
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009027X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009028M: Thomas Gleixner <tglx@linutronix.de>
9029M: Ingo Molnar <mingo@redhat.com>
9030M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009031M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009032T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009034F: Documentation/x86/
9035F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009036
Matthew Garrettd09448532010-02-11 10:40:13 -05009037X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009038M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05009039L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009040T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05009041S: Maintained
9042F: drivers/platform/x86
9043
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009044X86 MCE INFRASTRUCTURE
9045M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009046M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009047L: linux-edac@vger.kernel.org
9048S: Maintained
9049F: arch/x86/kernel/cpu/mcheck/*
9050
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009051XC2028/3028 TUNER DRIVER
9052M: Mauro Carvalho Chehab <mchehab@redhat.com>
9053L: linux-media@vger.kernel.org
9054W: http://linuxtv.org
9055T: git git://linuxtv.org/media_tree.git
9056S: Maintained
9057F: drivers/media/tuners/tuner-xc2028.*
9058
Ian Campbellc4468082011-04-27 15:26:46 -07009059XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009060M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009061M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009062L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9063L: virtualization@lists.linux-foundation.org
9064S: Supported
9065F: arch/x86/xen/
9066F: drivers/*/xen-*front.c
9067F: drivers/xen/
9068F: arch/x86/include/asm/xen/
9069F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009070F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009071
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009072XEN HYPERVISOR ARM
9073M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9074L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9075S: Supported
9076F: arch/arm/xen/
9077F: arch/arm/include/asm/xen/
9078
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009079XEN NETWORK BACKEND DRIVER
9080M: Ian Campbell <ian.campbell@citrix.com>
9081L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9082L: netdev@vger.kernel.org
9083S: Supported
9084F: drivers/net/xen-netback/*
9085
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009086XEN PCI SUBSYSTEM
9087M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009088L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009089S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009090F: arch/x86/pci/*xen*
9091F: drivers/pci/*xen*
9092
9093XEN SWIOTLB SUBSYSTEM
9094M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009095L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009096S: Supported
9097F: arch/x86/xen/*swiotlb*
9098F: drivers/xen/*swiotlb*
9099
Linus Torvalds1da177e2005-04-16 15:20:36 -07009100XFS FILESYSTEM
9101P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009102M: Ben Myers <bpm@sgi.com>
9103M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009104M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009105L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009107T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009109F: Documentation/filesystems/xfs.txt
9110F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009111
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009112XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009113M: Anirudha Sarangi <anirudh@xilinx.com>
9114M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009115S: Maintained
9116F: drivers/net/ethernet/xilinx/xilinx_axienet*
9117
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009118XILINX SYSTEMACE DRIVER
Grant Likely19624232013-04-08 11:51:42 +01009119S: Unmaintained
Joe Perches679655d2009-04-07 20:44:32 -07009120F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009121
Peter Korsgaard238b8722006-12-06 20:35:17 -08009122XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009123M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009124L: linux-serial@vger.kernel.org
9125S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009126F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009127
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009129M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009130L: linux-hams@vger.kernel.org
9131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009132F: drivers/net/hamradio/yam*
9133F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009134
Henkaf64a5e2005-10-12 15:02:56 +02009135YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009136M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009137L: usbb2k-api-dev@nongnu.org
9138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009139F: Documentation/input/yealink.txt
9140F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009141
Linus Torvalds1da177e2005-04-16 15:20:36 -07009142Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009143M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009144W: http://yaina.de/jreuter/
9145W: http://www.qsl.net/dl1bke/
9146L: linux-hams@vger.kernel.org
9147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009148F: Documentation/networking/z8530drv.txt
9149F: drivers/net/hamradio/*scc.c
9150F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009151
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009152ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009153M: Daniel Drake <dsd@gentoo.org>
9154M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009155W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009156L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009157L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009159F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009160
Linus Torvalds1da177e2005-04-16 15:20:36 -07009161ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009163L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009164W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009165T: Mercurial http://linuxtv.org/hg/v4l-dvb
9166S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009167F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009168
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009169ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009170M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009171S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009172F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009173
Linus Torvalds1da177e2005-04-16 15:20:36 -07009174THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009175M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009176L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009177Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009178T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009179S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009180F: *
9181F: */