blob: 46ccc20892af36b1f8e7e9447572d7d9fb839edc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070093 N: Files and directories with regex patterns.
94 N: [^a-z]tegra all files whose path contains the word tegra
95 One pattern per line. Multiple N: lines acceptable.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070096 X: Files and directories that are NOT maintained, same rules as F:
97 Files exclusions are tested before file matches.
98 Can be useful for excluding a specific subdirectory, for instance:
99 F: net/
100 X: net/ipv6/
101 matches all files in and below net excluding net/ipv6/
102 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700103 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700105 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700106 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700107 matches patches or files that contain one or more of the words
108 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700109 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111Note: For the hard of thinking, this list is meant to remain in alphabetical
112order. If you could add yourselves to it in alphabetical order that would be
113so much easier [Ed]
114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700118
Steffen Klasserta6d89912007-08-10 14:05:27 -07001193C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700120M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700121L: netdev@vger.kernel.org
122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700123F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700124F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700127M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700128L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700130F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
adam radfordc4de0ce2010-03-08 12:40:36 -08001323WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
133M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800135W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800137F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
13953C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700146M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-hams@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700152M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700153M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700156F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
1588250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800159M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700163T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800164F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700165F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000169S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700170F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001729P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Eric Van Hensbergen <ericvh@gmail.com>
174M: Ron Minnich <rminnich@sandia.gov>
175M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100176L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500177W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800178Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700181F: Documentation/filesystems/9p.txt
182F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800183
Antti Palosaari91952bc2012-10-01 12:28:46 -0300184A8293 MEDIA DRIVER
185M: Antti Palosaari <crope@iki.fi>
186L: linux-media@vger.kernel.org
187W: http://linuxtv.org/
188W: http://palosaari.fi/linux/
189Q: http://patchwork.linuxtv.org/project/linux-media/list/
190T: git git://linuxtv.org/anttip/media_tree.git
191S: Maintained
192F: drivers/media/dvb-frontends/a8293*
193
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700195M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700196L: linux-scsi@vger.kernel.org
197W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700199F: Documentation/scsi/aacraid.txt
200F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700202ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100203M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200204L: lm-sensors@lm-sensors.org
205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700206F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700209M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700210L: lm-sensors@lm-sensors.org
211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700212F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700215M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216L: linux-acenic@sunsite.dk
217S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700218F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Peter Feuerere86435e2009-06-21 18:53:03 +0200220ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700221M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500222L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700223W: http://piie.net/?section=acerhdf
224S: Maintained
225F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200226
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000227ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800228M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500229L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700234M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200235M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500236L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400237W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800238Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400239T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700241F: drivers/acpi/
242F: drivers/pnp/pnpacpi/
243F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700244F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500245
Len Brown8b59a452007-01-08 19:03:28 -0500246ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700247M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500248L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300249W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700251F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Len Brown8b59a452007-01-08 19:03:28 -0500253ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700254M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500255L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300256W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700258F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700259
Len Brown359acec2007-02-10 01:59:24 -0500260ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700261M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500266
Carlos Corbachobff431e2008-02-05 02:17:04 +0000267ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500268L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100269S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700270F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000271
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100272AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700273M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200274W: http://wiki.parisc-linux.org/AD1889
275L: linux-parisc@vger.kernel.org
276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700277F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100278
Michael Hennerich527a1a82010-10-28 11:31:28 +0000279AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
280M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100281L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700282W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000283S: Supported
284F: drivers/misc/ad525x_dpot.c
285
286AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
287M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100288L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700289W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000290S: Supported
291F: drivers/regulator/ad5398.c
292
293AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
294M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100295L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700296W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000297S: Supported
298F: drivers/input/misc/ad714x.c
299
300AD7877 TOUCHSCREEN DRIVER
301M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100302L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700303W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000304S: Supported
305F: drivers/input/touchscreen/ad7877.c
306
307AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
308M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100309L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700310W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000311S: Supported
312F: drivers/input/touchscreen/ad7879.c
313
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700314ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
315M: Jiri Kosina <jkosina@suse.cz>
316S: Maintained
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700319M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200320L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700322F: Documentation/hwmon/adm1025
323F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700326M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100327L: lm-sensors@lm-sensors.org
328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700329F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330
Michael Wucc0b88c2007-08-31 01:15:25 -0400331ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400332L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200333W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400334S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700335F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400336
Sakari Ailuse8e31622012-11-12 18:14:39 -0300337ADP1653 FLASH CONTROLLER DRIVER
338M: Sakari Ailus <sakari.ailus@iki.fi>
339L: linux-media@vger.kernel.org
340S: Maintained
341F: drivers/media/i2c/adp1653.c
342F: include/media/adp1653.h
343
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
345M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100346L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700347W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000348S: Supported
349F: drivers/mfd/adp5520.c
350F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700351F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800352F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000353F: drivers/input/keyboard/adp5520-keys.c
354
355ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
356M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100357L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700358W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000359S: Supported
360F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800361F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362
363ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
364M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100365L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700366W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000367S: Supported
368F: drivers/video/backlight/adp8860_bl.c
369
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100370ADS1015 HARDWARE MONITOR DRIVER
371M: Dirk Eibach <eibach@gdsys.de>
372L: lm-sensors@lm-sensors.org
373S: Maintained
374F: Documentation/hwmon/ads1015
375F: drivers/hwmon/ads1015.c
376F: include/linux/i2c/ads1015.h
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700379M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700381F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jean Delvareb058b852009-12-09 20:36:08 +0100383ADT7475 HARDWARE MONITOR DRIVER
384M: Jean Delvare <khali@linux-fr.org>
385L: lm-sensors@lm-sensors.org
386S: Maintained
387F: Documentation/hwmon/adt7475
388F: drivers/hwmon/adt7475.c
389
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
391M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100392L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700393W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000394S: Supported
395F: drivers/input/misc/adxl34x.c
396
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700398M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399L: linux-scsi@vger.kernel.org
400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700401F: Documentation/scsi/advansys.txt
402F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700405M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700407F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Antti Palosaari91952bc2012-10-01 12:28:46 -0300409AF9013 MEDIA DRIVER
410M: Antti Palosaari <crope@iki.fi>
411L: linux-media@vger.kernel.org
412W: http://linuxtv.org/
413W: http://palosaari.fi/linux/
414Q: http://patchwork.linuxtv.org/project/linux-media/list/
415T: git git://linuxtv.org/anttip/media_tree.git
416S: Maintained
417F: drivers/media/dvb-frontends/af9013*
418
419AF9033 MEDIA DRIVER
420M: Antti Palosaari <crope@iki.fi>
421L: linux-media@vger.kernel.org
422W: http://linuxtv.org/
423W: http://palosaari.fi/linux/
424Q: http://patchwork.linuxtv.org/project/linux-media/list/
425T: git git://linuxtv.org/anttip/media_tree.git
426S: Maintained
427F: drivers/media/dvb-frontends/af9033*
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200430L: linux-fsdevel@vger.kernel.org
431S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700432F: Documentation/filesystems/affs.txt
433F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700436M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700437L: linux-afs@lists.infradead.org
438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700439F: fs/afs/
440F: include/net/af_rxrpc.h
441F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700444M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700445T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700447F: drivers/char/agp/
448F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800449F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700452M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453L: linux-scsi@vger.kernel.org
454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/scsi/aha152x*
456F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700459M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460L: linux-scsi@vger.kernel.org
461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700462F: drivers/scsi/aic7xxx/
463F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200464
Hans Verkuil450500a2012-11-23 07:11:33 -0300465AIMSLAB FM RADIO RECEIVER DRIVER
466M: Hans Verkuil <hverkuil@xs4all.nl>
467L: linux-media@vger.kernel.org
468T: git git://linuxtv.org/media_tree.git
469W: http://linuxtv.org
470S: Maintained
471F: drivers/media/radio/radio-aimslab*
472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700474M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700475L: linux-aio@kvack.org
476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700477F: fs/aio.c
478F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700482L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483W: http://www.linux-usb.org/SpeedTouch/
484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/usb/atm/speedtch.c
486F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Pierre Ossman272f1332007-05-14 21:25:26 +0200488ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200492
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000493ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700494M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100495L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700497F: Documentation/i2c/busses/i2c-ali1563
498F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700501M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700502M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500503M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700504S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700505L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700506F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Tobias Klauseradf92512011-02-09 10:58:29 +0100508ALTERA UART/JTAG UART SERIAL DRIVERS
509M: Tobias Klauser <tklauser@distanz.ch>
510L: linux-serial@vger.kernel.org
511L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
512S: Maintained
513F: drivers/tty/serial/altera_uart.c
514F: drivers/tty/serial/altera_jtaguart.c
515F: include/linux/altera_uart.h
516F: include/linux/altera_jtaguart.h
517
Andreas Herrmann512d1022011-05-25 20:43:31 +0200518AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100519M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200520L: lm-sensors@lm-sensors.org
521S: Maintained
522F: Documentation/hwmon/fam15h_power
523F: drivers/hwmon/fam15h_power.c
524
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700525AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700526M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700527L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700530
Jordan Crousef90b8112006-01-06 00:12:14 -0800531AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800532P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700533L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800534W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700536F: drivers/char/hw_random/geode-rng.c
537F: drivers/crypto/geode*
538F: drivers/video/geode/
539F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800540
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200541AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200542M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100544T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200545S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800546F: drivers/iommu/amd_iommu*.[ch]
547F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200548
Peter Orubae7f5b302008-07-28 18:44:11 +0200549AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100550M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700551L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700553F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200554
Stelian Pop284f42b2006-12-12 18:18:31 +0100555AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700556M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100557S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200558F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100559
Tom Tuckerf94b5332006-09-22 15:22:48 -0700560AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700561M: Tom Tucker <tom@opengridcomputing.com>
562M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700563L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700565F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700566
Hans Verkuil531fca12012-11-23 06:53:24 -0300567ANALOG DEVICES INC AD9389B DRIVER
568M: Hans Verkuil <hans.verkuil@cisco.com>
569L: linux-media@vger.kernel.org
570S: Maintained
571F: drivers/media/i2c/ad9389b*
572
573ANALOG DEVICES INC ADV7604 DRIVER
574M: Hans Verkuil <hans.verkuil@cisco.com>
575L: linux-media@vger.kernel.org
576S: Maintained
577F: drivers/media/i2c/adv7604*
578
Michael Hennerich527a1a82010-10-28 11:31:28 +0000579ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200580M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100581L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700583W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000584S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100585F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200586F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000587F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000588F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100589F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400591ANALOG DEVICES INC ASOC DRIVERS
592L: uclinux-dist-devel@blackfin.uclinux.org
593L: alsa-devel@alsa-project.org (moderated for non-subscribers)
594W: http://blackfin.uclinux.org/
595S: Supported
596F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400597
Johannes Berg42269062006-07-25 16:15:50 +0200598AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000600L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700601L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700603F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200606M: Jiri Kosina <jkosina@suse.cz>
607S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700608F: arch/x86/kernel/apm_32.c
609F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800610F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200611F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700613APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700614M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700615L: linux-input@vger.kernel.org
616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700617F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700618
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700619APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200620M: Henrik Rydberg <rydberg@euromail.se>
621L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700623F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700628F: drivers/net/appletalk/
629F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Viresh Kumara4801672011-02-22 15:46:07 +0530631ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700632M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530633L: linux-ide@vger.kernel.org
634S: Maintained
635F: include/linux/pata_arasan_cf_data.h
636F: drivers/ata/pata_arasan_cf.c
637
Jaya Kumar1154ea72005-06-21 17:17:04 -0700638ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700639M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700641F: drivers/video/arcfb.c
642F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700645M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700647F: arch/arm/lib/floppydma.S
648F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Will Deacon6f965212011-07-01 14:38:53 +0100650ARM PMU PROFILING AND DEBUGGING
651M: Will Deacon <will.deacon@arm.com>
652S: Maintained
653F: arch/arm/kernel/perf_event*
654F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100655F: arch/arm/include/asm/pmu.h
656F: arch/arm/kernel/hw_breakpoint.c
657F: arch/arm/include/asm/hw_breakpoint.h
658
Russell Kingd4275352009-04-16 14:05:27 +0100659ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100662W: http://www.arm.linux.org.uk/
663S: Maintained
664F: arch/arm/
665
Stephen Boydd323c2432012-10-24 11:00:29 -0700666ARM SUB-ARCHITECTURES
667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800668S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700669F: arch/arm/mach-*/
670F: arch/arm/plat-*/
671T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
672
Russell Kingcefbf4e2009-11-22 17:40:28 +0000673ARM PRIMECELL AACI PL041 DRIVER
674M: Russell King <linux@arm.linux.org.uk>
675S: Maintained
676F: sound/arm/aaci.*
677
678ARM PRIMECELL CLCD PL110 DRIVER
679M: Russell King <linux@arm.linux.org.uk>
680S: Maintained
681F: drivers/video/amba-clcd.*
682
683ARM PRIMECELL KMI PL050 DRIVER
684M: Russell King <linux@arm.linux.org.uk>
685S: Maintained
686F: drivers/input/serio/ambakmi.*
687F: include/linux/amba/kmi.h
688
Russell King2761f5c2007-05-24 06:56:08 +0200689ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000690M: Russell King <linux@arm.linux.org.uk>
691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700692F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000693F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200694
Russell King1b4304e2013-02-11 15:26:27 +0000695ARM PRIMECELL UART PL010 AND PL011 DRIVERS
696M: Russell King <linux@arm.linux.org.uk>
697S: Maintained
698F: drivers/tty/serial/amba-pl01*.c
699F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700
Russell Kingcefbf4e2009-11-22 17:40:28 +0000701ARM PRIMECELL BUS SUPPORT
702M: Russell King <linux@arm.linux.org.uk>
703S: Maintained
704F: drivers/amba/
705F: include/linux/amba/bus.h
706
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700708M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700709L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710S: Maintained
711
Sergey Lapin9c784f92008-08-03 02:29:48 +0100712ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700713M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100715S: Maintained
716
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700718M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720S: Maintained
721
Maxime Ripard1b106692012-11-15 21:51:26 +0100722ARM/Allwinner A1X SoC support
723M: Maxime Ripard <maxime.ripard@free-electrons.com>
724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
725S: Maintained
726F: arch/arm/mach-sunxi/
727
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800728ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700729M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800730M: Nicolas Ferre <nicolas.ferre@atmel.com>
731M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200733W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800734W: http://www.linux4sam.org
735S: Supported
736F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100737
Rob Herring986cf2e2011-06-22 11:28:53 -0500738ARM/CALXEDA HIGHBANK ARCHITECTURE
739M: Rob Herring <rob.herring@calxeda.com>
740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
741S: Maintained
742F: arch/arm/mach-highbank/
743
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300744ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
745M: Anton Vorontsov <avorontsov@mvista.com>
746S: Maintained
747F: arch/arm/mach-cns3xxx/
748T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
749
Alexander Shiyan386ab512012-11-17 17:57:24 +0400750ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
751M: Alexander Shiyan <shc_work@mail.ru>
752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
753S: Odd Fixes
754F: arch/arm/mach-clps711x/
755
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800756ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100757M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000758M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800760S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100761F: arch/arm/mach-ep93xx/
762F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800763
764ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700765M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800767S: Maintained
768
Russell Kingd4275352009-04-16 14:05:27 +0100769ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700771L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700772S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100773F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700774F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100775
Mike Rapoportd48134e2008-08-20 09:03:26 +0100776ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700777M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700778L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100779S: Maintained
780
Hubert Feurstein94150092009-10-07 08:36:07 +0100781ARM/CONTEC MICRO9 MACHINE SUPPORT
782M: Hubert Feurstein <hubert.feurstein@contec.at>
783S: Maintained
784F: arch/arm/mach-ep93xx/micro9.c
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788S: Maintained
789
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200790ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100791M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100793T: git git://git.berlios.de/gemini-board
794S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300795F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200796
Barry Songa990cbd2011-07-12 21:44:10 +0800797ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
798M: Barry Song <baohua.song@csr.com>
799L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
800S: Maintained
801F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800802F: drivers/dma/sirf-dma.c
803F: drivers/i2c/busses/i2c-sirf.c
804F: drivers/pinctrl/pinctrl-sirf.c
805F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800806
Russell Kingd4275352009-04-16 14:05:27 +0100807ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700808M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700809L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100810W: http://www.arm.linux.org.uk/
811S: Maintained
812F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700813F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100814
Russell Kinga9da4f72008-07-12 21:42:04 +0100815ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Daniel Ribeiro <drwyrm@gmail.com>
817M: Stefan Schmidt <stefan@openezx.org>
818M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200819L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100820W: http://www.openezx.org/
821S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200822T: topgit git://git.openezx.org/openezx.git
823F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100824
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200825ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100826M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700827L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100828S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700829T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300830F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200831
Russell Kingd4275352009-04-16 14:05:27 +0100832ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700833M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700834L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100835W: http://www.arm.linux.org.uk/
836S: Maintained
837F: arch/arm/include/asm/hardware/dec21285.h
838F: arch/arm/mach-footbridge/
839
Sascha Hauer86183a52008-07-24 23:50:35 +0200840ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700841M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200843S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700844T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100845F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700846F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200847
Shawn Guo8bcb9762011-10-07 22:24:18 +0800848ARM/FREESCALE IMX6
849M: Shawn Guo <shawn.guo@linaro.org>
850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
851S: Maintained
852T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
853F: arch/arm/mach-imx/*imx6*
854
Shawn Guoa9866a092011-10-21 11:53:34 +0800855ARM/FREESCALE MXS ARM ARCHITECTURE
856M: Shawn Guo <shawn.guo@linaro.org>
857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
858S: Maintained
859T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
860F: arch/arm/mach-mxs/
861
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800862ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700863M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800865S: Maintained
866
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100867ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100870S: Maintained
871
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200872ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700873M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100874M: Paul Parsons <lost.distance@yahoo.com>
875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200876S: Maintained
877F: arch/arm/mach-pxa/hx4700.c
878F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100879F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200880
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100881ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700882M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200883W: www.jlime.com
884S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700885T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
886F: arch/arm/mach-sa1100/jornada720.c
887F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100888
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200889ARM/IGEP MACHINE SUPPORT
890M: Enric Balletbo i Serra <eballetbo@gmail.com>
891M: Javier Martinez Canillas <javier@dowhile0.org>
892L: linux-omap@vger.kernel.org
893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894S: Maintained
895F: arch/arm/mach-omap2/board-igep0020.c
896
Marek Vasut403d2972010-05-22 00:29:39 +0200897ARM/INCOME PXA270 SUPPORT
898M: Marek Vasut <marek.vasut@gmail.com>
899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
900S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700901F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200902
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800903ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700904M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700905M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700907S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100908
909ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700910M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700912S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800913
914ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700915M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700916M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700917L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700918S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800919
920ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700921M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700922M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700924S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800926ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800929S: Maintained
930
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200931ARM/INTEL IXP4XX ARM ARCHITECTURE
932M: Imre Kaloz <kaloz@openwrt.org>
933M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100934L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200935S: Maintained
936F: arch/arm/mach-ixp4xx/
937
Joe Perches838553c2010-10-26 14:22:59 -0700938ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100939M: Jonathan Cameron <jic23@cam.ac.uk>
940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941S: Maintained
942F: arch/arm/mach-pxa/stargate2.c
943F: drivers/pcmcia/pxa2xx_stargate2.c
944
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800945ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700946M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700947M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700949S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800950
951ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700952M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700953L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800954S: Maintained
955
956ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700957M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800959S: Maintained
960
Philipp Zabel3b8861712008-07-09 21:27:15 +0100961ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700962M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100963S: Maintained
964
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200965ARM/Marvell Armada 370 and Armada XP SOC support
966M: Jason Cooper <jason@lakedaemon.net>
967M: Andrew Lunn <andrew@lunn.ch>
968M: Gregory Clement <gregory.clement@free-electrons.com>
969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970S: Maintained
971F: arch/arm/mach-mvebu/
972
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400973ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
974M: Jason Cooper <jason@lakedaemon.net>
975M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400977S: Maintained
978F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400979F: arch/arm/mach-kirkwood/
980F: arch/arm/mach-mv78xx0/
981F: arch/arm/mach-orion5x/
982F: arch/arm/plat-orion/
983
Alexander Clouterd69ac132011-04-14 15:22:02 -0700984ARM/Orion SoC/Technologic Systems TS-78xx platform support
985M: Alexander Clouter <alex@digriz.org.uk>
986L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987W: http://www.digriz.org.uk/ts78xx/kernel
988S: Maintained
989F: arch/arm/mach-orion5x/ts78xx-*
990
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000991ARM/MICREL KS8695 ARCHITECTURE
992M: Greg Ungerer <gerg@uclinux.org>
993L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994F: arch/arm/mach-ks8695
995S: Odd Fixes
996
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200997ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700998M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700999L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001000F: arch/arm/mach-pxa/mioa701.c
1001S: Maintained
1002
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001003ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001004M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001005S: Maintained
1006
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001007ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001008M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001009M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001010M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012S: Maintained
1013F: arch/arm/mach-nomadik/
1014F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001015F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001016T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001017
Andy Green9d762952009-05-19 06:41:42 -03001018ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001019M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001020L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1021W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1022S: Supported
1023
Daniel Walker0c19d212009-12-07 16:53:51 -08001024ARM/QUALCOMM MSM MACHINE SUPPORT
1025M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001026M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001027M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001028L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001029F: arch/arm/mach-msm/
1030F: drivers/video/msm/
1031F: drivers/mmc/host/msm_sdcc.c
1032F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001033F: drivers/tty/serial/msm_serial.h
1034F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001035F: drivers/*/pm8???-*
David Browncd9a8fb2013-03-12 11:41:55 -07001036F: drivers/ssbi/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001037F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001038T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001039S: Maintained
1040
Dirk Opfer8459c152005-11-06 14:27:52 +00001041ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001042M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1043M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001044S: Maintained
1045
Marek Vasut5d783a22009-07-16 13:26:48 +02001046ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001047M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001048L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001049W: http://hackndev.com
1050S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001051F: arch/arm/mach-pxa/include/mach/palmtx.h
1052F: arch/arm/mach-pxa/palmtx.c
1053F: arch/arm/mach-pxa/include/mach/palmt5.h
1054F: arch/arm/mach-pxa/palmt5.c
1055F: arch/arm/mach-pxa/include/mach/palmld.h
1056F: arch/arm/mach-pxa/palmld.c
1057F: arch/arm/mach-pxa/include/mach/palmte2.h
1058F: arch/arm/mach-pxa/palmte2.c
1059F: arch/arm/mach-pxa/include/mach/palmtc.h
1060F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001061
Joe Perchesb57fe922009-12-14 18:00:52 -08001062ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001063M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001064L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001065W: http://hackndev.com
1066S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001067F: arch/arm/mach-pxa/include/mach/palmtreo.h
1068F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001069
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001070ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001071M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001072L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001073W: http://hackndev.com
1074S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001075F: arch/arm/mach-pxa/include/mach/palmz72.h
1076F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001079M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1081S: Maintained
1082
1083ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086W: http://www.arm.linux.org.uk/
1087S: Maintained
1088
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001089ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001090M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001092S: Maintained
1093
Russell Kingd4275352009-04-16 14:05:27 +01001094ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001095M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001096L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001097W: http://www.arm.linux.org.uk/
1098S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001099F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1100F: arch/arm/include/asm/hardware/ioc.h
1101F: arch/arm/include/asm/hardware/iomd.h
1102F: arch/arm/include/asm/hardware/memc.h
1103F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001104F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001105F: drivers/net/ethernet/i825xx/ether1*
1106F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001107F: drivers/scsi/arm/
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001110M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111W: http://www.shark-linux.de/shark.html
1112S: Maintained
1113
Ben Dooksb21477f2009-06-13 10:46:34 +01001114ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001115M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001116M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001117L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001118L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001119W: http://www.fluff.org/ben/linux/
1120S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001121F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001122F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001123F: arch/arm/mach-s3c24*/
1124F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001125F: drivers/*/*s3c2410*
1126F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001127F: drivers/spi/spi-s3c*
1128F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001130ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001131M: Kukjin Kim <kgene.kim@samsung.com>
1132L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1133L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1134S: Maintained
1135F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001136F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001137
Kyungmin Park10ffa962011-03-04 17:36:26 -08001138ARM/SAMSUNG MOBILE MACHINE SUPPORT
1139M: Kyungmin Park <kyungmin.park@samsung.com>
1140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141S: Maintained
1142F: arch/arm/mach-s5pv210/mach-aquila.c
1143F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001144F: arch/arm/mach-exynos/mach-universal_c210.c
1145F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001146
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001147ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1148M: Kyungmin Park <kyungmin.park@samsung.com>
1149M: Kamil Debski <k.debski@samsung.com>
1150L: linux-arm-kernel@lists.infradead.org
1151L: linux-media@vger.kernel.org
1152S: Maintained
1153F: drivers/media/platform/s5p-g2d/
1154
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001155ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1156M: Kyungmin Park <kyungmin.park@samsung.com>
1157M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1158L: linux-arm-kernel@lists.infradead.org
1159L: linux-media@vger.kernel.org
1160S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001161F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001162F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001163
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001164ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1165M: Kyungmin Park <kyungmin.park@samsung.com>
1166M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001167M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001168L: linux-arm-kernel@lists.infradead.org
1169L: linux-media@vger.kernel.org
1170S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001171F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001172F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001173
1174ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1175M: Kyungmin Park <kyungmin.park@samsung.com>
1176M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1177L: linux-arm-kernel@lists.infradead.org
1178L: linux-media@vger.kernel.org
1179S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001180F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001181
Paul Mundtd48d38e2010-02-08 12:50:24 +09001182ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001183M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001184M: Magnus Damm <magnus.damm@gmail.com>
1185L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001186W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001187Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001188T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001189S: Supported
1190F: arch/arm/mach-shmobile/
1191F: drivers/sh/
1192
Dinh Nguyen66314222012-07-18 16:07:18 -06001193ARM/SOCFPGA ARCHITECTURE
1194M: Dinh Nguyen <dinguyen@altera.com>
1195S: Maintained
1196F: arch/arm/mach-socfpga/
1197
1198ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1199M: Dinh Nguyen <dinguyen@altera.com>
1200S: Maintained
1201F: drivers/clk/socfpga/
1202
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001203ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001204M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001205L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001206S: Maintained
1207
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001208ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001209M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211S: Maintained
1212
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001213ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001214M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001216S: Maintained
1217
wanzongshun98ad6e32009-02-13 06:04:32 +01001218ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001219M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001220L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001221W: http://www.mcuos.com
1222S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001223F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001224F: drivers/input/keyboard/w90p910_keypad.c
1225F: drivers/input/touchscreen/w90p910_ts.c
1226F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001227F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001228F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001229F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001230F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001231F: drivers/usb/host/ehci-w90x900.c
1232F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001233
Linus Walleij54274d72010-04-04 10:58:03 +01001234ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001235M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237S: Supported
1238F: arch/arm/mach-u300/
1239F: drivers/i2c/busses/i2c-stu300.c
1240F: drivers/rtc/rtc-coh901331.c
1241F: drivers/watchdog/coh901327_wdt.c
1242F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001243F: drivers/mfd/ab3100*
1244F: drivers/rtc/rtc-ab3100.c
1245F: drivers/rtc/rtc-coh901331.c
1246T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001247
Linus Walleij87572882010-12-22 09:18:29 +01001248ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001249M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001250M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001251L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252S: Maintained
1253F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001254F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001255F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001256F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001257F: drivers/mfd/abx500*
1258F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001259F: drivers/mfd/dbx500*
1260F: drivers/mfd/db8500*
1261F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001262F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001263F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001264T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001265
Russell Kingd4275352009-04-16 14:05:27 +01001266ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001267M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001269W: http://www.arm.linux.org.uk/
1270S: Maintained
1271F: arch/arm/vfp/
1272
Marek Vasute66b6d82010-03-26 06:51:32 +01001273ARM/VOIPAC PXA270 SUPPORT
1274M: Marek Vasut <marek.vasut@gmail.com>
1275L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276S: Maintained
1277F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001278F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001279
Tony Prisk04529fe2012-07-24 04:19:37 +12001280ARM/VT8500 ARM ARCHITECTURE
1281M: Tony Prisk <linux@prisktech.co.nz>
1282L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1283S: Maintained
1284F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001285F: drivers/clocksource/vt8500_timer.c
1286F: drivers/gpio/gpio-vt8500.c
1287F: drivers/mmc/host/wmt-sdmmc.c
1288F: drivers/pwm/pwm-vt8500.c
1289F: drivers/rtc/rtc-vt8500.c
1290F: drivers/tty/serial/vt8500_serial.c
1291F: drivers/usb/host/ehci-vt8500.c
1292F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001293F: drivers/video/vt8500lcdfb.*
1294F: drivers/video/wm8505fb*
1295F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001296
Marek Vasute66b6d82010-03-26 06:51:32 +01001297ARM/ZIPIT Z2 SUPPORT
1298M: Marek Vasut <marek.vasut@gmail.com>
1299L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1300S: Maintained
1301F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001302F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001303
Michal Simek51f29d42013-01-21 17:41:46 +01001304ARM/ZYNQ ARCHITECTURE
1305M: Michal Simek <michal.simek@xilinx.com>
1306L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1307W: http://wiki.xilinx.com
1308T: git git://git.xilinx.com/linux-xlnx.git
1309S: Supported
1310F: arch/arm/mach-zynq/
1311
Catalin Marinas38074222012-03-05 11:49:34 +00001312ARM64 PORT (AARCH64 ARCHITECTURE)
1313M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001314M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001315L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1316S: Maintained
1317F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001318F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001319
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001320AS3645A LED FLASH CONTROLLER DRIVER
1321M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1322L: linux-media@vger.kernel.org
1323T: git git://linuxtv.org/media_tree.git
1324S: Maintained
1325F: drivers/media/i2c/as3645a.c
1326F: include/media/as3645a.h
1327
George Josephd58de032010-03-05 22:17:25 +01001328ASC7621 HARDWARE MONITOR DRIVER
1329M: George Joseph <george.joseph@fairview5.com>
1330L: lm-sensors@lm-sensors.org
1331S: Maintained
1332F: Documentation/hwmon/asc7621
1333F: drivers/hwmon/asc7621.c
1334
Corentin Charyb229ece2011-02-26 10:20:40 +01001335ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001336M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001338L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001339W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001341F: drivers/platform/x86/asus*.c
1342F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Andrew Morton953a6472008-11-06 12:53:28 -08001344ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001345M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001346W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001348F: Documentation/crypto/async-tx-api.txt
1349F: crypto/async_tx/
1350F: drivers/dma/
1351F: include/linux/dmaengine.h
1352F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001353
Wolfram Sanga1867d32009-09-18 22:45:51 +02001354AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001355M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001356L: linux-i2c@vger.kernel.org
1357S: Maintained
1358F: drivers/misc/eeprom/at24.c
1359F: include/linux/i2c/at24.h
1360
Randy Dunlape7839f22008-10-12 16:11:45 -07001361ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001362M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001363W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001365F: Documentation/aoe/
1366F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Joe Perches9a10a872010-12-01 09:37:55 -08001368ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001369M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001370L: linux-wireless@vger.kernel.org
1371S: Supported
1372F: drivers/net/wireless/ath/*
1373
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001374ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001375M: Jiri Slaby <jirislaby@gmail.com>
1376M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001377M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001378L: linux-wireless@vger.kernel.org
1379L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001380W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001381S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001382F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001383
Kalle Valo12e62d62011-09-13 10:21:25 +03001384ATHEROS ATH6KL WIRELESS DRIVER
1385M: Kalle Valo <kvalo@qca.qualcomm.com>
1386L: linux-wireless@vger.kernel.org
1387W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1388T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1389S: Supported
1390F: drivers/net/wireless/ath/ath6kl/
1391
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001392ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001393M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1394M: Jouni Malinen <jouni@qca.qualcomm.com>
1395M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1396M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397L: linux-wireless@vger.kernel.org
1398L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001399W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001400S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001401F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001402
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001403WILOCITY WIL6210 WIRELESS DRIVER
1404M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1405L: linux-wireless@vger.kernel.org
1406L: wil6210@qca.qualcomm.com
1407S: Supported
1408W: http://wireless.kernel.org/en/users/Drivers/wil6210
1409F: drivers/net/wireless/ath/wil6210/
1410
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001411CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1412M: Christian Lamparter <chunkeey@googlemail.com>
1413L: linux-wireless@vger.kernel.org
1414W: http://wireless.kernel.org/en/users/Drivers/carl9170
1415S: Maintained
1416F: drivers/net/wireless/ath/carl9170/
1417
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001418ATK0110 HWMON DRIVER
1419M: Luca Tettamanti <kronos.it@gmail.com>
1420L: lm-sensors@lm-sensors.org
1421S: Maintained
1422F: drivers/hwmon/asus_atk0110.c
1423
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001424ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001425M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001427F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001428
Chris Snook7ae115b2008-09-09 03:26:57 -04001429ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001430M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001431M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001432L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001433W: http://sourceforge.net/projects/atl1
1434W: http://atl1.sourceforge.net
1435S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001436F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001439M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001440L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001441L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442W: http://linux-atm.sourceforge.net
1443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001444F: drivers/atm/
1445F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001446F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001448ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001449M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001450S: Maintained
1451F: drivers/mmc/host/atmel-mci.c
1452F: drivers/mmc/host/atmel-mci-regs.h
1453
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001454ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001455M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001456S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001457F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001458
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001459ATMEL DMA DRIVER
1460M: Nicolas Ferre <nicolas.ferre@atmel.com>
1461L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1462S: Supported
1463F: drivers/dma/at_hdmac.c
1464F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001465F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001466
Ludovic Desroches888f2802013-03-15 05:32:57 +00001467ATMEL I2C DRIVER
1468M: Ludovic Desroches <ludovic.desroches@atmel.com>
1469L: linux-i2c@vger.kernel.org
1470S: Supported
1471F: drivers/i2c/busses/i2c-at91.c
1472
Josh Wu15515542012-03-23 17:56:29 +08001473ATMEL ISI DRIVER
1474M: Josh Wu <josh.wu@atmel.com>
1475L: linux-media@vger.kernel.org
1476S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001477F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001478F: include/media/atmel-isi.h
1479
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001480ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001481M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001482L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001484F: drivers/video/atmel_lcdfb.c
1485F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001486
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001487ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001488M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001489S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001490F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001491
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001492ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001493M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001494S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001495F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001496
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001497ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1498M: Nicolas Ferre <nicolas.ferre@atmel.com>
1499L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500S: Supported
1501F: drivers/misc/atmel_tclib.c
1502F: drivers/clocksource/tcb_clksrc.c
1503
Josh Wuff2675d2012-03-23 17:56:55 +08001504ATMEL TSADCC DRIVER
1505M: Josh Wu <josh.wu@atmel.com>
1506L: linux-input@vger.kernel.org
1507S: Supported
1508F: drivers/input/touchscreen/atmel_tsadcc.c
1509
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001510ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001511M: Nicolas Ferre <nicolas.ferre@atmel.com>
1512L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001514F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001517M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001518L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519W: http://www.thekelleys.org.uk/atmel
1520W: http://atmelwlandriver.sourceforge.net/
1521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Chris Wrighta92b7b82005-07-07 18:12:23 -07001524AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001525M: Al Viro <viro@zeniv.linux.org.uk>
1526M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001527L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001528W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001529T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001531F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001532F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001533F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001534
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001535AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001536M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001537W: http://miguelojeda.es/auxdisplay.htm
1538W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/auxdisplay/
1541F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001542
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001543AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001544M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1545M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001546W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001547W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001548W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001550F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001551
1552AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001553M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1554M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001556F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001559M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001561W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001563F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001564F: include/net/ax25.h
1565F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001567AZ6007 DVB DRIVER
1568M: Mauro Carvalho Chehab <mchehab@redhat.com>
1569L: linux-media@vger.kernel.org
1570W: http://linuxtv.org
1571T: git git://linuxtv.org/media_tree.git
1572S: Maintained
1573F: drivers/media/usb/dvb-usb-v2/az6007.c
1574
Hans Verkuil67773762012-11-23 07:09:23 -03001575AZTECH FM RADIO RECEIVER DRIVER
1576M: Hans Verkuil <hverkuil@xs4all.nl>
1577L: linux-media@vger.kernel.org
1578T: git git://linuxtv.org/media_tree.git
1579W: http://linuxtv.org
1580S: Maintained
1581F: drivers/media/radio/radio-aztech*
1582
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001583B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001584M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001586L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001587W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001590
1591B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001592M: Larry Finger <Larry.Finger@lwfinger.net>
1593M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001594L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001595L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001596W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001598F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001599
Richard Purdie300abeb2007-02-07 22:21:07 +00001600BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001601M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001603F: drivers/video/backlight/
1604F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001605
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001606BATMAN ADVANCED
1607M: Marek Lindner <lindner_marek@yahoo.de>
1608M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001609M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001610L: b.a.t.m.a.n@lists.open-mesh.org
1611W: http://www.open-mesh.org/
1612S: Maintained
1613F: net/batman-adv/
1614
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001615BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001616M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001617L: linux-hams@vger.kernel.org
1618W: http://www.baycom.org/~tom/ham/ham.html
1619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001621
1622BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001623S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001624F: Documentation/filesystems/befs.txt
1625F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001626
1627BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001628M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001630F: Documentation/filesystems/bfs.txt
1631F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001632F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001633
Bryan Wu1394f032007-05-06 14:50:22 -07001634BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001635M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001636L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001637W: http://blackfin.uclinux.org
1638S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001639F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001640
Bryan Wue190d6b2007-07-17 14:43:44 +08001641BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001642L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001643W: http://blackfin.uclinux.org
1644S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001645F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001646
Mike Frysinger566da5b2007-06-11 15:31:30 +08001647BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001648M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001649L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001650W: http://blackfin.uclinux.org
1651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001652F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001653
Mike Frysinger936ed492010-03-10 15:20:38 -08001654BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001655M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001656L: uclinux-dist-devel@blackfin.uclinux.org
1657W: http://blackfin.uclinux.org
1658S: Supported
1659F: drivers/mmc/host/bfin_sdh.c
1660
Bryan Wu1394f032007-05-06 14:50:22 -07001661BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001663L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001664W: http://blackfin.uclinux.org
1665S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001666F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001667
Bryan Wu1e6d3202007-07-15 02:50:02 +08001668BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001670L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001671W: http://blackfin.uclinux.org
1672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001674
Bryan Wud24ecfc2007-05-01 23:26:32 +02001675BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001676M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001677L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001678W: http://blackfin.uclinux.org/
1679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001680F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001681
Scott Jiang1e204372013-01-18 17:09:47 -03001682BLACKFIN MEDIA DRIVER
1683M: Scott Jiang <scott.jiang.linux@gmail.com>
1684L: uclinux-dist-devel@blackfin.uclinux.org
1685W: http://blackfin.uclinux.org/
1686S: Supported
1687F: drivers/media/platform/blackfin/
1688F: drivers/media/i2c/adv7183*
1689F: drivers/media/i2c/vs6624*
1690
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001691BLINKM RGB LED DRIVER
1692M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1693S: Maintained
1694F: drivers/leds/leds-blinkm.c
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001697M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001698T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001700F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Joern Engel2b54aae2008-02-06 01:38:02 -08001702BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001703M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001704L: linux-mtd@lists.infradead.org
1705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001706F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001707
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001708BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001709M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001710M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001711M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001712L: linux-bluetooth@vger.kernel.org
1713W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001714T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1715T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001717F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001720M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001721M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001722M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001723L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001724W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001725T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1726T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001728F: net/bluetooth/
1729F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001732M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001733M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001734L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001735W: http://sourceforge.net/projects/bonding/
1736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001737F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001738F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Gary Zambrano39105892006-06-22 17:26:20 -07001740BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001741M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001742L: netdev@vger.kernel.org
1743S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001744F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001745
Michael Chan948c51e2006-06-04 02:51:39 -07001746BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001747M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001748L: netdev@vger.kernel.org
1749S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001750F: drivers/net/ethernet/broadcom/bnx2.*
1751F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001752
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001753BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001754M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001755L: netdev@vger.kernel.org
1756S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001757F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001758
Stephen Warrenf680f252012-09-15 00:18:54 -06001759BROADCOM BCM2835 ARM ARCHICTURE
1760M: Stephen Warren <swarren@wwwdotorg.org>
1761L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1762T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1763S: Maintained
1764F: arch/arm/mach-bcm2835/
1765F: arch/arm/boot/dts/bcm2835*
1766F: arch/arm/configs/bcm2835_defconfig
1767F: drivers/*/*bcm2835*
1768
Michael Chan948c51e2006-06-04 02:51:39 -07001769BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001770M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001771M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001772L: netdev@vger.kernel.org
1773S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001774F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001775
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001776BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1777M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001778M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001779M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001780M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001781L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001782L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001783S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001784F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001785
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001786BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1787M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1788L: linux-scsi@vger.kernel.org
1789S: Supported
1790F: drivers/scsi/bnx2fc/
1791
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001792BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1793M: Rafał Miłecki <zajec5@gmail.com>
1794L: linux-wireless@vger.kernel.org
1795S: Maintained
1796F: drivers/bcma/
1797F: include/linux/bcma/
1798
Jing Huang7725ccf2009-09-23 17:46:15 -07001799BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001800M: Anil Gurumurthy <agurumur@brocade.com>
1801M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001802L: linux-scsi@vger.kernel.org
1803S: Supported
1804F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001805
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001806BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1807M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001808L: netdev@vger.kernel.org
1809S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001810F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001811
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001812BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001813M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001814L: linux-scsi@vger.kernel.org
1815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001816F: block/bsg.c
1817F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001818F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001819
Clemens Ladischaf399172011-01-10 16:32:54 +01001820BT87X AUDIO DRIVER
1821M: Clemens Ladisch <clemens@ladisch.de>
1822L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1823T: git git://git.alsa-project.org/alsa-kernel.git
1824S: Maintained
1825F: Documentation/sound/alsa/Bt87x.txt
1826F: sound/pci/bt87x.c
1827
Michael Bueschff1d5c22008-07-25 01:46:10 -07001828BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001829M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001830W: http://bu3sch.de/btgpio.php
1831S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001832F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001833
Joe Percheseb1eb042009-01-21 10:49:16 -05001834BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001835M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001836L: linux-btrfs@vger.kernel.org
1837W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001838Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001839T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001841F: Documentation/filesystems/btrfs.txt
1842F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001845M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001846L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001847W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001848T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001849S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001850F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001851F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Clemens Ladischaf399172011-01-10 16:32:54 +01001853C-MEDIA CMI8788 DRIVER
1854M: Clemens Ladisch <clemens@ladisch.de>
1855L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1856T: git git://git.alsa-project.org/alsa-kernel.git
1857S: Maintained
1858F: sound/pci/oxygen/
1859
Mark Salter21413552011-10-04 11:21:42 -04001860C6X ARCHITECTURE
1861M: Mark Salter <msalter@redhat.com>
1862M: Aurelien Jacquiot <a-jacquiot@ti.com>
1863L: linux-c6x-dev@linux-c6x.org
1864W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1865S: Maintained
1866F: arch/c6x/
1867
David Howellsa5432f52009-04-20 15:46:45 +01001868CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001869M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001870L: linux-cachefs@redhat.com
1871S: Supported
1872F: Documentation/filesystems/caching/cachefiles.txt
1873F: fs/cachefiles/
1874
Hans Verkuilc815ca32012-11-23 07:05:54 -03001875CADET FM/AM RADIO RECEIVER DRIVER
1876M: Hans Verkuil <hverkuil@xs4all.nl>
1877L: linux-media@vger.kernel.org
1878T: git git://linuxtv.org/media_tree.git
1879W: http://linuxtv.org
1880S: Maintained
1881F: drivers/media/radio/radio-cadet*
1882
Jonathan Corbet77d51402007-03-22 19:44:17 -03001883CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001884M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001885L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001886T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001888F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001889F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001890
Joe Perches201b6ba2010-09-07 20:33:24 +00001891CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001892M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001893L: netdev@vger.kernel.org
1894S: Supported
1895F: Documentation/networking/caif/
1896F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001897F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001898F: include/net/caif/
1899F: net/caif/
1900
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001901CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001902M: Muli Ben-Yehuda <muli@il.ibm.com>
1903M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001904L: discuss@x86-64.org
1905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001906F: arch/x86/kernel/pci-calgary_64.c
1907F: arch/x86/kernel/tce_64.c
1908F: arch/x86/include/asm/calgary.h
1909F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001910
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001911CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001912M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001913L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001914W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001915T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001916S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001917F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001918F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001919F: include/uapi/linux/can.h
1920F: include/uapi/linux/can/bcm.h
1921F: include/uapi/linux/can/raw.h
1922F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001923
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001924CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001926M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001927L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001928W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001929T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001930S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001931F: drivers/net/can/
1932F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001933F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001934F: include/uapi/linux/can/error.h
1935F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001936
James Morris95d16c72012-03-16 12:05:48 +11001937CAPABILITIES
1938M: Serge Hallyn <serge.hallyn@canonical.com>
1939L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001940S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001941F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001942F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001943F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001944F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001945F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001946
Arnd Bergmannb8154542008-05-16 11:10:59 +02001947CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001948M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001949L: linuxppc-dev@lists.ozlabs.org
1950L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001951W: http://www.ibm.com/developerworks/power/cell/
1952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001953F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001954F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001955F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001956F: arch/powerpc/oprofile/*cell*
1957F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001958
Sage Weil9030aaf2009-10-06 11:31:15 -07001959CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001960M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001961L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001962W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001963T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001964S: Supported
1965F: Documentation/filesystems/ceph.txt
1966F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001967F: net/ceph
1968F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001969F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001970
David Vrabel18332a82008-09-17 16:34:44 +01001971CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001972L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001973S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001974F: Documentation/usb/WUSB-Design-overview.txt
1975F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001976F: drivers/usb/host/hwa-hc.c
1977F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001978F: drivers/usb/wusbcore/
1979F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001980
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001981CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001982M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001983W: http://miguelojeda.es/auxdisplay.htm
1984W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001986F: drivers/auxdisplay/cfag12864b.c
1987F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001988
1989CFAG12864BFB LCD FRAMEBUFFER 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/cfag12864bfb.c
1995F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001996
Johannes Berg704232c2007-04-23 12:20:05 -07001997CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001998M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001999L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002000W: http://wireless.kernel.org/
2001T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2002T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002003S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002004F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002005F: include/net/cfg80211.h
2006F: net/wireless/*
2007X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002008
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002009CHAR and MISC DRIVERS
2010M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002011M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002012T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002013S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002014F: drivers/char/*
2015F: drivers/misc/*
2016
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002017CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002018M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002019M: Joe Perches <joe@perches.com>
2020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002021F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002022
Harry Weif8407f262011-02-25 14:44:15 -08002023CHINESE DOCUMENTATION
2024M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002025L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002026L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2027S: Maintained
2028F: Documentation/zh_CN/
2029
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002030CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2031M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2032L: linux-usb@vger.kernel.org
2033S: Maintained
2034F: drivers/usb/chipidea/
2035
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002036CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002037M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002038M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002039M: Neel Patel <neepatel@cisco.com>
2040M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002041S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002042F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002043
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002044CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002045M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002046L: netdev@vger.kernel.org
2047S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002048F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002049
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002050CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002051M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002052L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002054F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002055
Timur Tabid9e9d822008-04-24 08:45:26 +10002056CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002057M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002058L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002059S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002060F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002061
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002062CLEANCACHE API
2063M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2064L: linux-kernel@vger.kernel.org
2065S: Maintained
2066F: mm/cleancache.c
2067F: include/linux/cleancache.h
2068
Russell Kingd4275352009-04-16 14:05:27 +01002069CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002071S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002072F: include/linux/clk.h
2073
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002074CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002075M: Hiral Patel <hiralpat@cisco.com>
2076M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002077M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002078L: linux-scsi@vger.kernel.org
2079S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002080F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002081
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002082CMPC ACPI DRIVER
2083M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2084M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002085L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002086S: Supported
2087F: drivers/platform/x86/classmate-laptop.c
2088
Nicolas Palix74425ee2010-06-06 17:15:01 +02002089COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002090M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002091M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002092M: Nicolas Palix <nicolas.palix@imag.fr>
2093L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002094W: http://coccinelle.lip6.fr/
2095S: Supported
2096F: scripts/coccinelle/
2097F: scripts/coccicheck
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002100M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101M: coda@cs.cmu.edu
2102L: codalist@coda.cs.cmu.edu
2103W: http://www.coda.cs.cmu.edu/
2104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002105F: Documentation/filesystems/coda.txt
2106F: fs/coda/
2107F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002108F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Mike Turquette7704add2012-05-02 18:37:45 -07002110COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002111M: Mike Turquette <mturquette@linaro.org>
2112L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2113T: git git://git.linaro.org/people/mturquette/linux.git
2114S: Maintained
2115F: drivers/clk/clk.c
2116F: drivers/clk/clk-*
2117F: include/linux/clk-pr*
2118
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002119COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002120M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002121L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002122L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002123W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002124Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002125T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002127F: Documentation/filesystems/cifs.txt
2128F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002132L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002137M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002138L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002140F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002143M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002144L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002146F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002148COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002149M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002150L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002152F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002153
Simon Arlott949be0f2007-03-06 02:47:46 -08002154CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002156L: accessrunner-general@lists.sourceforge.net
2157W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002160
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002161CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002162M: Joel Becker <jlbec@evilplan.org>
2163T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002165F: fs/configfs/
2166F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002167
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002168CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002169M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002170L: netdev@vger.kernel.org
2171S: Maintained
2172F: drivers/connector/
2173
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002174CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002175M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002176M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002177L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002178L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002179T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002181F: include/linux/cgroup*
2182F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002183F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002184
Rudolf Marekbebe4672007-05-08 17:22:02 +02002185CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002186M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002187L: lm-sensors@lm-sensors.org
2188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002189F: Documentation/hwmon/coretemp
2190F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002193M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194W: http://www.fi.muni.cz/~kas/cosa/
2195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002196F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Florian Fainelli4371ee32009-06-01 02:43:17 -07002198CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002199M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002200L: netdev@vger.kernel.org
2201S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002202F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002205M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002206M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002207L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002208L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209S: Maintained
viresh kumar45c009a2013-04-26 12:53:16 +00002210T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/cpufreq/
2212F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002214CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2215M: Viresh Kumar <viresh.kumar@linaro.org>
2216M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2217L: cpufreq@vger.kernel.org
2218L: linux-pm@vger.kernel.org
2219W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2220S: Maintained
2221F: drivers/cpufreq/arm_big_little.h
2222F: drivers/cpufreq/arm_big_little.c
2223F: drivers/cpufreq/arm_big_little_dt.c
2224
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002225CPUIDLE DRIVERS
2226M: Rafael J. Wysocki <rjw@sisk.pl>
2227M: Daniel Lezcano <daniel.lezcano@linaro.org>
2228L: linux-pm@vger.kernel.org
2229S: Maintained
2230T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2231F: drivers/cpuidle/*
2232F: include/linux/cpuidle.h
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002235M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002237F: arch/x86/kernel/cpuid.c
2238F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002240CPU POWER MONITORING SUBSYSTEM
2241M: Dominik Brodowski <linux@dominikbrodowski.net>
2242M: Thomas Renninger <trenn@suse.de>
2243S: Maintained
2244F: tools/power/cpupower
2245
Paul Jacksoned90fb42005-09-27 21:45:37 -07002246CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002247M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002248W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002249W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: Documentation/cgroups/cpusets.txt
2252F: include/linux/cpuset.h
2253F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002256W: http://sourceforge.net/projects/cramfs/
2257S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002258F: Documentation/filesystems/cramfs.txt
2259F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002262M: Mikael Starvik <starvik@axis.com>
2263M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002264L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265W: http://developer.axis.com
2266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002268F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002271M: Herbert Xu <herbert@gondor.apana.org.au>
2272M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002274T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002276F: Documentation/crypto/
2277F: arch/*/crypto/
2278F: crypto/
2279F: drivers/crypto/
2280F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Neil Horman5b07bd52009-02-05 16:03:04 +11002282CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002283M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002284L: linux-crypto@vger.kernel.org
2285S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002286F: crypto/ansi_cprng.c
2287F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002288
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002289CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002290M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002293
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002294CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002295M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002296L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002297L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002298T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002299W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002300W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002302F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002303F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002304F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002305
Hans Verkuil3f101d92012-11-23 07:00:02 -03002306CX2341X MPEG ENCODER HELPER MODULE
2307M: Hans Verkuil <hverkuil@xs4all.nl>
2308L: linux-media@vger.kernel.org
2309T: git git://linuxtv.org/media_tree.git
2310W: http://linuxtv.org
2311S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002312F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002313F: include/media/cx2341x*
2314
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002315CX88 VIDEO4LINUX DRIVER
2316M: Mauro Carvalho Chehab <mchehab@redhat.com>
2317L: linux-media@vger.kernel.org
2318W: http://linuxtv.org
2319T: git git://linuxtv.org/media_tree.git
2320S: Odd fixes
2321F: Documentation/video4linux/cx88/
2322F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002323
Antti Palosaari91952bc2012-10-01 12:28:46 -03002324CXD2820R MEDIA DRIVER
2325M: Antti Palosaari <crope@iki.fi>
2326L: linux-media@vger.kernel.org
2327W: http://linuxtv.org/
2328W: http://palosaari.fi/linux/
2329Q: http://patchwork.linuxtv.org/project/linux-media/list/
2330T: git git://linuxtv.org/anttip/media_tree.git
2331S: Maintained
2332F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002333
Steve Wisee5ec3782008-05-20 14:06:33 -07002334CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002335M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002336L: netdev@vger.kernel.org
2337W: http://www.chelsio.com
2338S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002339F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002340
2341CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002342M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002343L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002344W: http://www.openfabrics.org
2345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002346F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002347
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002348CXGB4 ETHERNET DRIVER (CXGB4)
2349M: Dimitris Michailidis <dm@chelsio.com>
2350L: netdev@vger.kernel.org
2351W: http://www.chelsio.com
2352S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002353F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002354
2355CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2356M: Steve Wise <swise@chelsio.com>
2357L: linux-rdma@vger.kernel.org
2358W: http://www.openfabrics.org
2359S: Supported
2360F: drivers/infiniband/hw/cxgb4/
2361
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002362CXGB4VF ETHERNET DRIVER (CXGB4VF)
2363M: Casey Leedom <leedom@chelsio.com>
2364L: netdev@vger.kernel.org
2365W: http://www.chelsio.com
2366S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002367F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002368
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002369STMMAC ETHERNET DRIVER
2370M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2371L: netdev@vger.kernel.org
2372W: http://www.stlinux.com
2373S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002374F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002377M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002378L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379W: http://www.arm.linux.org.uk/
2380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002381F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002385S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002386F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002387F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002388F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002392S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002393F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002395CYPRESS_FIRMWARE MEDIA DRIVER
2396M: Antti Palosaari <crope@iki.fi>
2397L: linux-media@vger.kernel.org
2398W: http://linuxtv.org/
2399W: http://palosaari.fi/linux/
2400Q: http://patchwork.linuxtv.org/project/linux-media/list/
2401T: git git://linuxtv.org/anttip/media_tree.git
2402S: Maintained
2403F: drivers/media/common/cypress_firmware*
2404
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002405CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002406M: Javier Martinez Canillas <javier@dowhile0.org>
2407L: linux-input@vger.kernel.org
2408S: Maintained
2409F: drivers/input/touchscreen/cyttsp*
2410F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002413M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414W: http://yaina.de/jreuter/
2415W: http://www.qsl.net/dl1bke/
2416L: linux-hams@vger.kernel.org
2417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: net/ax25/af_ax25.c
2419F: net/ax25/ax25_dev.c
2420F: net/ax25/ax25_ds_*
2421F: net/ax25/ax25_in.c
2422F: net/ax25/ax25_out.c
2423F: net/ax25/ax25_timer.c
2424F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002426DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002427L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002428S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002429F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002430F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002431
2432DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002433M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002434W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002440M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002441M: Ali Akcaagac <aliakc@web.de>
2442M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002444L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445L: http://lists.twibble.org/mailman/listinfo/dc395x/
2446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: Documentation/scsi/dc395x.txt
2448F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002450DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002451M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002452L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002453W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002455F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002456F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002457F: include/linux/tfrc.h
2458F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461W: http://linux-decnet.sourceforge.net
2462L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002463S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002464F: Documentation/networking/decnet.txt
2465F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002468M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002470F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002472DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002473M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002474L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002476F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002479S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002480F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002481F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Doug Warzecha90563ec2005-09-06 15:17:15 -07002483DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002484M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002486F: Documentation/dcdbas.txt
2487F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002488
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002489DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002490M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002491S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002492F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002493
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002494DESIGNWARE USB2 DRD IP DRIVER
2495M: Paul Zimmerman <paulz@synopsys.com>
2496L: linux-usb@vger.kernel.org
2497S: Maintained
2498F: drivers/staging/dwc2/
2499
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002500DESIGNWARE USB3 DRD IP DRIVER
2501M: Felipe Balbi <balbi@ti.com>
2502L: linux-usb@vger.kernel.org
2503L: linux-omap@vger.kernel.org
2504T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2505S: Maintained
2506F: drivers/usb/dwc3/
2507
Kyungmin Park89d07762012-01-10 15:09:09 -08002508DEVICE FREQUENCY (DEVFREQ)
2509M: MyungJoo Ham <myungjoo.ham@samsung.com>
2510M: Kyungmin Park <kyungmin.park@samsung.com>
2511L: linux-kernel@vger.kernel.org
2512S: Maintained
2513F: drivers/devfreq/
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
2519
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002520DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002521M: Alasdair Kergon <agk@redhat.com>
2522M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002523L: dm-devel@redhat.com
2524W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002525Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002526T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002528F: Documentation/device-mapper/
2529F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002530F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002531F: include/linux/device-mapper.h
2532F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002533
Guenter Roeck335d7c52011-01-26 11:45:49 -08002534DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002535M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002536L: linux-i2c@vger.kernel.org
2537S: Maintained
2538F: drivers/i2c/busses/i2c-diolan-u2c.c
2539
Randy Dunlape7839f22008-10-12 16:11:45 -07002540DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002541M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002543F: Documentation/filesystems/dnotify.txt
2544F: fs/notify/dnotify/
2545F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002548M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2550W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2551W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2552S: Maintained
2553
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002554DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002555M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002557F: Documentation/filesystems/quota.txt
2558F: fs/quota/
2559F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002560F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Bernie Thompson702686a2012-03-01 13:52:13 -08002562DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2563M: Bernie Thompson <bernie@plugable.com>
2564L: linux-fbdev@vger.kernel.org
2565S: Maintained
2566W: http://plugable.com/category/projects/udlfb/
2567F: drivers/video/udlfb.c
2568F: include/video/udlfb.h
2569F: Documentation/fb/udlfb.txt
2570
Randy Dunlape7839f22008-10-12 16:11:45 -07002571DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002572M: Christine Caulfield <ccaulfie@redhat.com>
2573M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002574L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002575W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002576T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002577S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002578F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002579
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302580DMA BUFFER SHARING FRAMEWORK
2581M: Sumit Semwal <sumit.semwal@linaro.org>
2582S: Maintained
2583L: linux-media@vger.kernel.org
2584L: dri-devel@lists.freedesktop.org
2585L: linaro-mm-sig@lists.linaro.org
2586F: drivers/base/dma-buf*
2587F: include/linux/dma-buf*
2588F: Documentation/dma-buf-sharing.txt
2589T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2590
Dan Williamsb3e5f262007-08-07 10:26:35 -07002591DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002592M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002593M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002595F: drivers/dma/
2596F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302597T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2598T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002599
Juerg Haefligerb8250372007-06-09 10:11:16 -04002600DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002601M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002602L: lm-sensors@lm-sensors.org
2603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002604F: Documentation/hwmon/dme1737
2605F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002606
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002607DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002608M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002609L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002611F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002612
Joe Perches7d2c86b2009-04-07 20:59:01 -07002613DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002614M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002615L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002616T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002618F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002621M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622L: blinux-list@redhat.com
2623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002624F: drivers/char/dtlk.c
2625F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002627DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002628M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002629L: linux-scsi@vger.kernel.org
2630W: http://www.adaptec.com/
2631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002632F: drivers/scsi/dpt*
2633F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002634
Philipp Reisnerb411b362009-09-25 16:07:19 -07002635DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002636P: Philipp Reisner
2637P: Lars Ellenberg
2638M: drbd-dev@lists.linbit.com
2639L: drbd-user@lists.linbit.com
2640W: http://www.drbd.org
2641T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2642T: git git://git.drbd.org/drbd-8.3.git
2643S: Supported
2644F: drivers/block/drbd/
2645F: lib/lru_cache.c
2646F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002647
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002648DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002649M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002650T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002652F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002653F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002654F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002655F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002656F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002657F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002658F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002661M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002662L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002663T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002665F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002666F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002667F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
Chris Wilson8daf7472010-09-28 14:07:26 +01002669INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002670M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002671L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002672L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002673T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002674S: Supported
2675F: drivers/gpu/drm/i915
2676F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002677F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002678
Kyungmin Park398a6d42011-11-02 11:33:16 +09002679DRM DRIVERS FOR EXYNOS
2680M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002681M: Joonyoung Shim <jy0922.shim@samsung.com>
2682M: Seung-Woo Kim <sw0312.kim@samsung.com>
2683M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002684L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002685T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002686S: Supported
2687F: drivers/gpu/drm/exynos
2688F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002689F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002690
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002691DRM DRIVERS FOR NVIDIA TEGRA
2692M: Thierry Reding <thierry.reding@avionic-design.de>
2693L: dri-devel@lists.freedesktop.org
2694L: linux-tegra@vger.kernel.org
2695T: git git://gitorious.org/thierryreding/linux.git
2696S: Maintained
2697F: drivers/gpu/drm/tegra/
2698F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2699
Alexey Klimov598df1a2012-11-28 17:16:32 -03002700DSBR100 USB FM RADIO DRIVER
2701M: Alexey Klimov <klimov.linux@gmail.com>
2702L: linux-media@vger.kernel.org
2703T: git git://linuxtv.org/media_tree.git
2704S: Maintained
2705F: drivers/media/radio/dsbr100.c
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002708M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002709L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002711F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Antti Palosaari91952bc2012-10-01 12:28:46 -03002713DVB_USB_AF9015 MEDIA DRIVER
2714M: Antti Palosaari <crope@iki.fi>
2715L: linux-media@vger.kernel.org
2716W: http://linuxtv.org/
2717W: http://palosaari.fi/linux/
2718Q: http://patchwork.linuxtv.org/project/linux-media/list/
2719T: git git://linuxtv.org/anttip/media_tree.git
2720S: Maintained
2721F: drivers/media/usb/dvb-usb-v2/af9015*
2722
2723DVB_USB_AF9035 MEDIA DRIVER
2724M: Antti Palosaari <crope@iki.fi>
2725L: linux-media@vger.kernel.org
2726W: http://linuxtv.org/
2727W: http://palosaari.fi/linux/
2728Q: http://patchwork.linuxtv.org/project/linux-media/list/
2729T: git git://linuxtv.org/anttip/media_tree.git
2730S: Maintained
2731F: drivers/media/usb/dvb-usb-v2/af9035*
2732
2733DVB_USB_ANYSEE MEDIA DRIVER
2734M: Antti Palosaari <crope@iki.fi>
2735L: linux-media@vger.kernel.org
2736W: http://linuxtv.org/
2737W: http://palosaari.fi/linux/
2738Q: http://patchwork.linuxtv.org/project/linux-media/list/
2739T: git git://linuxtv.org/anttip/media_tree.git
2740S: Maintained
2741F: drivers/media/usb/dvb-usb-v2/anysee*
2742
2743DVB_USB_AU6610 MEDIA DRIVER
2744M: Antti Palosaari <crope@iki.fi>
2745L: linux-media@vger.kernel.org
2746W: http://linuxtv.org/
2747W: http://palosaari.fi/linux/
2748Q: http://patchwork.linuxtv.org/project/linux-media/list/
2749T: git git://linuxtv.org/anttip/media_tree.git
2750S: Maintained
2751F: drivers/media/usb/dvb-usb-v2/au6610*
2752
2753DVB_USB_CE6230 MEDIA DRIVER
2754M: Antti Palosaari <crope@iki.fi>
2755L: linux-media@vger.kernel.org
2756W: http://linuxtv.org/
2757W: http://palosaari.fi/linux/
2758Q: http://patchwork.linuxtv.org/project/linux-media/list/
2759T: git git://linuxtv.org/anttip/media_tree.git
2760S: Maintained
2761F: drivers/media/usb/dvb-usb-v2/ce6230*
2762
Michael Krufkyd099dea2012-10-02 00:56:20 -03002763DVB_USB_CXUSB MEDIA DRIVER
2764M: Michael Krufky <mkrufky@linuxtv.org>
2765L: linux-media@vger.kernel.org
2766W: http://linuxtv.org/
2767W: http://github.com/mkrufky
2768Q: http://patchwork.linuxtv.org/project/linux-media/list/
2769T: git git://linuxtv.org/media_tree.git
2770S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002771F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002772
Antti Palosaari91952bc2012-10-01 12:28:46 -03002773DVB_USB_EC168 MEDIA DRIVER
2774M: Antti Palosaari <crope@iki.fi>
2775L: linux-media@vger.kernel.org
2776W: http://linuxtv.org/
2777W: http://palosaari.fi/linux/
2778Q: http://patchwork.linuxtv.org/project/linux-media/list/
2779T: git git://linuxtv.org/anttip/media_tree.git
2780S: Maintained
2781F: drivers/media/usb/dvb-usb-v2/ec168*
2782
Antti Palosaari55609832013-04-09 20:30:42 -03002783DVB_USB_GL861 MEDIA DRIVER
2784M: Antti Palosaari <crope@iki.fi>
2785L: linux-media@vger.kernel.org
2786W: http://linuxtv.org/
2787Q: http://patchwork.linuxtv.org/project/linux-media/list/
2788T: git git://linuxtv.org/anttip/media_tree.git
2789S: Maintained
2790F: drivers/media/usb/dvb-usb-v2/gl861*
2791
Michael Krufky8856f5f2012-10-02 00:55:50 -03002792DVB_USB_MXL111SF MEDIA DRIVER
2793M: Michael Krufky <mkrufky@linuxtv.org>
2794L: linux-media@vger.kernel.org
2795W: http://linuxtv.org/
2796W: http://github.com/mkrufky
2797Q: http://patchwork.linuxtv.org/project/linux-media/list/
2798T: git git://linuxtv.org/mkrufky/mxl111sf.git
2799S: Maintained
2800F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2801
Antti Palosaari91952bc2012-10-01 12:28:46 -03002802DVB_USB_RTL28XXU MEDIA DRIVER
2803M: Antti Palosaari <crope@iki.fi>
2804L: linux-media@vger.kernel.org
2805W: http://linuxtv.org/
2806W: http://palosaari.fi/linux/
2807Q: http://patchwork.linuxtv.org/project/linux-media/list/
2808T: git git://linuxtv.org/anttip/media_tree.git
2809S: Maintained
2810F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2811
2812DVB_USB_V2 MEDIA DRIVER
2813M: Antti Palosaari <crope@iki.fi>
2814L: linux-media@vger.kernel.org
2815W: http://linuxtv.org/
2816W: http://palosaari.fi/linux/
2817Q: http://patchwork.linuxtv.org/project/linux-media/list/
2818T: git git://linuxtv.org/anttip/media_tree.git
2819S: Maintained
2820F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2821F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2822
Jason Baronac0ac382011-08-11 14:36:43 -04002823DYNAMIC DEBUG
2824M: Jason Baron <jbaron@redhat.com>
2825S: Maintained
2826F: lib/dynamic_debug.c
2827F: include/linux/dynamic_debug.h
2828
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002829DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002830M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002831S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002832F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002833
Antti Palosaari91952bc2012-10-01 12:28:46 -03002834E4000 MEDIA DRIVER
2835M: Antti Palosaari <crope@iki.fi>
2836L: linux-media@vger.kernel.org
2837W: http://linuxtv.org/
2838W: http://palosaari.fi/linux/
2839Q: http://patchwork.linuxtv.org/project/linux-media/list/
2840T: git git://linuxtv.org/anttip/media_tree.git
2841S: Maintained
2842F: drivers/media/tuners/e4000*
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002845M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002846L: linux-eata@i-connect.net
2847L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853L: linux-scsi@vger.kernel.org
2854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002858M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002859L: linux-eata@i-connect.net
2860L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002862F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002865M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002866L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867W: http://ebtables.sourceforge.net/
2868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002870F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002871F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Antti Palosaari91952bc2012-10-01 12:28:46 -03002873EC100 MEDIA DRIVER
2874M: Antti Palosaari <crope@iki.fi>
2875L: linux-media@vger.kernel.org
2876W: http://linuxtv.org/
2877W: http://palosaari.fi/linux/
2878Q: http://patchwork.linuxtv.org/project/linux-media/list/
2879T: git git://linuxtv.org/anttip/media_tree.git
2880S: Maintained
2881F: drivers/media/dvb-frontends/ec100*
2882
Michael Halcrow237fead2006-10-04 02:16:22 -07002883ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002884M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002885M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002886L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002887W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002888S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002889F: Documentation/filesystems/ecryptfs.txt
2890F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002891
Alan Coxda9bb1d2006-01-18 17:44:13 -08002892EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002894L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002895W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002896S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002897F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002898F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002899F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002900
Borislav Petkovc476c232009-05-20 20:31:58 +02002901EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002903M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002904L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002905W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002906S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002907F: drivers/edac/amd64_edac*
2908
Ralf Baechlef65aad42012-10-17 00:39:09 +02002909EDAC-CAVIUM
2910M: Ralf Baechle <ralf@linux-mips.org>
2911M: David Daney <david.daney@cavium.com>
2912L: linux-edac@vger.kernel.org
2913L: linux-mips@linux-mips.org
2914W: bluesmoke.sourceforge.net
2915S: Supported
2916F: drivers/edac/octeon_edac*
2917
Dave Peterson0e438e32006-03-26 01:38:55 -08002918EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002919M: Mark Gross <mark.gross@intel.com>
2920M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002921L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002922W: bluesmoke.sourceforge.net
2923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002924F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002925
2926EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002927M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002928L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002929W: bluesmoke.sourceforge.net
2930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002931F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002932
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002933EDAC-GHES
2934M: Mauro Carvalho Chehab <mchehab@redhat.com>
2935L: linux-edac@vger.kernel.org
2936W: bluesmoke.sourceforge.net
2937S: Maintained
2938F: drivers/edac/ghes-edac.c
2939
Douglas Thompson6bc78402007-07-19 01:50:12 -07002940EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002941M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002942L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002943W: bluesmoke.sourceforge.net
2944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002945F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002946
2947EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002949L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002950W: bluesmoke.sourceforge.net
2951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002952F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002953
2954EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002956L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002957W: bluesmoke.sourceforge.net
2958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002959F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002960
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002961EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002962M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002963L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002964W: bluesmoke.sourceforge.net
2965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002966F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002967
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002968EDAC-I7300
2969M: Mauro Carvalho Chehab <mchehab@redhat.com>
2970L: linux-edac@vger.kernel.org
2971W: bluesmoke.sourceforge.net
2972S: Maintained
2973F: drivers/edac/i7300_edac.c
2974
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002975EDAC-I7CORE
2976M: Mauro Carvalho Chehab <mchehab@redhat.com>
2977L: linux-edac@vger.kernel.org
2978W: bluesmoke.sourceforge.net
2979S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002980F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002981
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002982EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002983M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302984M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002985L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002986W: bluesmoke.sourceforge.net
2987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002988F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002989
2990EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002992L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002993W: bluesmoke.sourceforge.net
2994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002995F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002996
Dave Peterson0e438e32006-03-26 01:38:55 -08002997EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002998M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002999L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003000W: bluesmoke.sourceforge.net
3001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003002F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003003
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003004EDAC-SBRIDGE
3005M: Mauro Carvalho Chehab <mchehab@redhat.com>
3006L: linux-edac@vger.kernel.org
3007W: bluesmoke.sourceforge.net
3008S: Maintained
3009F: drivers/edac/sb_edac.c
3010
Clemens Ladischaf399172011-01-10 16:32:54 +01003011EDIROL UA-101/UA-1000 DRIVER
3012M: Clemens Ladisch <clemens@ladisch.de>
3013L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3014T: git git://git.alsa-project.org/alsa-kernel.git
3015S: Maintained
3016F: sound/usb/misc/ua101.c
3017
Matt Fleming1f7df952012-10-03 10:04:02 +01003018EXTENSIBLE FIRMWARE INTERFACE (EFI)
3019M: Matt Fleming <matt.fleming@intel.com>
3020L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003021T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003022S: Maintained
3023F: Documentation/x86/efi-stub.txt
3024F: arch/ia64/kernel/efi.c
3025F: arch/x86/boot/compressed/eboot.[ch]
3026F: arch/x86/include/asm/efi.h
3027F: arch/x86/platform/efi/*
3028F: drivers/firmware/efivars.c
3029F: include/linux/efi*.h
3030
Peter Jones85a00d92010-09-22 13:05:04 -07003031EFIFB FRAMEBUFFER DRIVER
3032L: linux-fbdev@vger.kernel.org
3033M: Peter Jones <pjones@redhat.com>
3034S: Maintained
3035F: drivers/video/efifb.c
3036
Josh Triplett0bee8d22006-07-30 03:03:58 -07003037EFS FILESYSTEM
3038W: http://aeschi.ch.eu.org/efs/
3039S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003040F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003041
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003042EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003043M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3044M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003045L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003047F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003048
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003049EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003050M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003051L: netdev@vger.kernel.org
3052S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003053F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003054
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003055EM28XX VIDEO4LINUX DRIVER
3056M: Mauro Carvalho Chehab <mchehab@redhat.com>
3057L: linux-media@vger.kernel.org
3058W: http://linuxtv.org
3059T: git git://linuxtv.org/media_tree.git
3060S: Maintained
3061F: drivers/media/usb/em28xx/
3062
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003063EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003064M: Paul Gortmaker <paul.gortmaker@windriver.com>
3065M: Matt Mackall <mpm@selenic.com>
3066M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003067L: linux-embedded@vger.kernel.org
3068S: Maintained
3069
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003070EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003071M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003072L: linux-scsi@vger.kernel.org
3073W: http://sourceforge.net/projects/lpfcxxxx
3074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003075F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003076
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003077ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003078M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003079S: Maintained
3080F: drivers/misc/cb710/
3081F: drivers/mmc/host/cb710-mmc.*
3082F: include/linux/cb710.h
3083
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003084ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3085M: Maxim Levitsky <maximlevitsky@gmail.com>
3086S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003087F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003088
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003089EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003090M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003091S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003092T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003093F: drivers/video/s1d13xxxfb.c
3094F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003097M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003098L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003099L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003100W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003102F: include/linux/netfilter_bridge/
3103F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003106M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003107L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003109F: Documentation/filesystems/ext2.txt
3110F: fs/ext2/
3111F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
3113EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003114M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003115M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003116M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003117L: linux-ext4@vger.kernel.org
3118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003119F: Documentation/filesystems/ext3.txt
3120F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003121
3122EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003123M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003124M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003125L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003126W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003127Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003129F: Documentation/filesystems/ext4.txt
3130F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Mimi Zoharc5532b02011-08-17 18:52:24 -04003132Extended Verification Module (EVM)
3133M: Mimi Zohar <zohar@us.ibm.com>
3134S: Supported
3135F: security/integrity/evm/
3136
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003137EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3138M: MyungJoo Ham <myungjoo.ham@samsung.com>
3139M: Chanwoo Choi <cw00.choi@samsung.com>
3140L: linux-kernel@vger.kernel.org
3141S: Maintained
3142F: drivers/extcon/
3143F: Documentation/extcon/
3144
Jingoo Han0a799512012-02-06 11:30:39 +09003145EXYNOS DP DRIVER
3146M: Jingoo Han <jg1.han@samsung.com>
3147L: linux-fbdev@vger.kernel.org
3148S: Maintained
3149F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003150F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003151
Donghwa Lee33ad3912012-03-06 11:44:58 +09003152EXYNOS MIPI DISPLAY DRIVERS
3153M: Inki Dae <inki.dae@samsung.com>
3154M: Donghwa Lee <dh09.lee@samsung.com>
3155M: Kyungmin Park <kyungmin.park@samsung.com>
3156L: linux-fbdev@vger.kernel.org
3157S: Maintained
3158F: drivers/video/exynos/exynos_mipi*
3159F: include/video/exynos_mipi*
3160
Jean Delvaree53004e2006-01-09 23:26:14 +01003161F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003163L: lm-sensors@lm-sensors.org
3164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003165F: Documentation/hwmon/f71805f
3166F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003167
Michael Büscheea977e2012-04-02 12:14:32 -03003168FC0011 TUNER DRIVER
3169M: Michael Buesch <m@bues.ch>
3170L: linux-media@vger.kernel.org
3171S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003172F: drivers/media/tuners/fc0011.h
3173F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003174
Antti Palosaari91952bc2012-10-01 12:28:46 -03003175FC2580 MEDIA DRIVER
3176M: Antti Palosaari <crope@iki.fi>
3177L: linux-media@vger.kernel.org
3178W: http://linuxtv.org/
3179W: http://palosaari.fi/linux/
3180Q: http://patchwork.linuxtv.org/project/linux-media/list/
3181T: git git://linuxtv.org/anttip/media_tree.git
3182S: Maintained
3183F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Eric Paris88b2dbd2010-08-18 12:25:50 -04003185FANOTIFY
3186M: Eric Paris <eparis@redhat.com>
3187S: Maintained
3188F: fs/notify/fanotify/
3189F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003190F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003193M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194W: http://www.farsite.co.uk/
3195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003196F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Akinobu Mitac5408b82007-04-23 14:41:20 -07003198FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003199M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003200S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003201F: Documentation/fault-injection/
3202F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003203
Robert Lovecae727d2010-02-16 12:16:00 -08003204FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3205M: Robert Love <robert.w.love@intel.com>
3206L: devel@open-fcoe.org
3207W: www.Open-FCoE.org
3208S: Supported
3209F: drivers/scsi/libfc/
3210F: drivers/scsi/fcoe/
3211F: include/scsi/fc/
3212F: include/scsi/libfc.h
3213F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003214F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003215
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003216FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003217M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003218L: linux-fsdevel@vger.kernel.org
3219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003220F: include/linux/fcntl.h
3221F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003222F: include/uapi/linux/fcntl.h
3223F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003224F: fs/fcntl.c
3225F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226
3227FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003228M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003229L: linux-fsdevel@vger.kernel.org
3230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003231F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003232
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003233FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003234M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003235L: lm-sensors@lm-sensors.org
3236S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003237F: drivers/hwmon/f75375s.c
3238F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003239
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003240FIREWIRE AUDIO DRIVERS
3241M: Clemens Ladisch <clemens@ladisch.de>
3242L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3243T: git git://git.alsa-project.org/alsa-kernel.git
3244S: Maintained
3245F: sound/firewire/
3246
Stefan Richtereb86ec52012-11-03 09:25:20 +01003247FIREWIRE MEDIA DRIVERS (firedtv)
3248M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3249L: linux-media@vger.kernel.org
3250L: linux1394-devel@lists.sourceforge.net
3251T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3252S: Maintained
3253F: drivers/media/firewire/
3254
Chris Boota511ce32012-04-14 17:50:35 -07003255FIREWIRE SBP-2 TARGET
3256M: Chris Boot <bootc@bootc.net>
3257L: linux-scsi@vger.kernel.org
3258L: target-devel@vger.kernel.org
3259L: linux1394-devel@lists.sourceforge.net
3260T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3261S: Maintained
3262F: drivers/target/sbp/
3263
Joe Perches7d2c86b2009-04-07 20:59:01 -07003264FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003265M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003266L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003267W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003268T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003270F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003271F: include/linux/firewire.h
3272F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003273F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003274
3275FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003276M: Ming Lei <ming.lei@canonical.com>
3277L: linux-kernel@vger.kernel.org
3278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003279F: Documentation/firmware_class/
3280F: drivers/base/firmware*.c
3281F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003282
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003283FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3284M: Joshua Morris <josh.h.morris@us.ibm.com>
3285M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3286S: Maintained
3287F: drivers/block/rsxx/
3288
Jiri Kosina8206f662012-05-18 13:52:29 +02003289FLOPPY DRIVER
3290M: Jiri Kosina <jkosina@suse.cz>
3291T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3292S: Odd fixes
3293F: drivers/block/floppy.c
3294
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003295FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003296M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003297W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003299F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003300
3301FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003302L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003303S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003304F: drivers/net/wan/dlci.c
3305F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003308M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003309L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003311Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003312T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003315F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003316F: drivers/video/
3317F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003318F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003319F: include/uapi/video/
3320F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Timur Tabia57c1882012-10-16 17:33:42 -05003322FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003323M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003324L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003325S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003326F: drivers/video/fsl-diu-fb.*
3327
Zhang Wei173acc72008-03-01 07:42:48 -07003328FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003329M: Li Yang <leoli@freescale.com>
3330M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003331L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003333F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003334
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003335FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003336M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003337L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003338L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003340F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003341
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003342FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003343M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003344L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003345L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003346S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003347F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003348F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003349
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003350FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003351M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3352M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003353L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003354L: netdev@vger.kernel.org
3355S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003356F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003357F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003358
Timur Tabid9e9d822008-04-24 08:45:26 +10003359FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003360L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003361S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003362F: arch/powerpc/sysdev/qe_lib/
3363F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003364
Joe Perchesb55ef9292009-10-26 16:49:46 -07003365FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003366M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003367L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003368L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003369S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003370F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003371
Li Yangbeaf53b2007-05-25 13:54:02 +08003372FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003373M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003374L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003375L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003376S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003377F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003378
Timur Tabid9e9d822008-04-24 08:45:26 +10003379FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003380M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003381L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003382S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003383F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003384
3385FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003386M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003387L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003388L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003389S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003390F: sound/soc/fsl/fsl*
3391F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003394M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003397F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Pavel Machek71038f52009-01-15 13:51:02 -08003399FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003400M: Pavel Machek <pavel@ucw.cz>
3401M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003402L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003404F: Documentation/power/freezing-of-tasks.txt
3405F: include/linux/freezer.h
3406F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003407
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003408FRONTSWAP API
3409M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3410L: linux-kernel@vger.kernel.org
3411S: Maintained
3412F: mm/frontswap.c
3413F: include/linux/frontswap.h
3414
David Howellsa5432f52009-04-20 15:46:45 +01003415FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003416M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003417L: linux-cachefs@redhat.com
3418S: Supported
3419F: Documentation/filesystems/caching/
3420F: fs/fscache/
3421F: include/linux/fscache*.h
3422
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003423F2FS FILE SYSTEM
3424M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3425L: linux-f2fs-devel@lists.sourceforge.net
3426W: http://en.wikipedia.org/wiki/F2FS
3427T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3428S: Maintained
3429F: Documentation/filesystems/f2fs.txt
3430F: fs/f2fs/
3431F: include/linux/f2fs_fs.h
3432
David Howells5ab7ffe2007-04-10 15:10:45 +01003433FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003434M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003436F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Jonathan Woithe20b93732008-06-11 10:14:56 +09303438FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303439M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003440L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003442F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303443
Heungjun Kim4da621b2011-11-11 08:05:33 -03003444FUJITSU M-5MO LS CAMERA ISP DRIVER
3445M: Kyungmin Park <kyungmin.park@samsung.com>
3446M: Heungjun Kim <riverful.kim@samsung.com>
3447L: linux-media@vger.kernel.org
3448S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003449F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003450F: include/media/m5mols.h
3451
Robert Gerlach2d24c492012-01-18 14:26:22 +01003452FUJITSU TABLET EXTRAS
3453M: Robert Gerlach <khnz@gmx.de>
3454L: platform-driver-x86@vger.kernel.org
3455S: Maintained
3456F: drivers/platform/x86/fujitsu-tablet.c
3457
Miklos Szeredi04578f12005-09-09 13:10:22 -07003458FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003459M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003460L: fuse-devel@lists.sourceforge.net
3461W: http://fuse.sourceforge.net/
3462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003463F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003464F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003469S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003470F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
3472GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474L: linux-scsi@vger.kernel.org
3475W: http://www.icp-vortex.com/
3476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003477F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003479GEMTEK FM RADIO RECEIVER DRIVER
3480M: Hans Verkuil <hverkuil@xs4all.nl>
3481L: linux-media@vger.kernel.org
3482T: git git://linuxtv.org/media_tree.git
3483W: http://linuxtv.org
3484S: Maintained
3485F: drivers/media/radio/radio-gemtek*
3486
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003487GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003488M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003490F: drivers/i2c/busses/i2c-gpio.c
3491F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003492
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003493GENERIC GPIO I2C MULTIPLEXER DRIVER
3494M: Peter Korsgaard <peter.korsgaard@barco.com>
3495L: linux-i2c@vger.kernel.org
3496S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003497F: drivers/i2c/muxes/i2c-mux-gpio.c
3498F: include/linux/i2c-mux-gpio.h
3499F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003500
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003501GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003502M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003505F: drivers/net/wan/c101.c
3506F: drivers/net/wan/hd6457*
3507F: drivers/net/wan/hdlc*
3508F: drivers/net/wan/n2.c
3509F: drivers/net/wan/pc300too.c
3510F: drivers/net/wan/pci200syn.c
3511F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003513GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003514M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003515L: linux-arch@vger.kernel.org
3516T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3517S: Maintained
3518F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003519F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003520
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003521GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003522M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003523L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003524S: Supported
3525F: drivers/uio/uio_pci_generic.c
3526
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003527GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003528M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003529L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003530W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003531T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3532T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003534F: Documentation/filesystems/gfs2*.txt
3535F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003536F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003537
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003538GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003539M: Hansjoerg Lipp <hjlipp@web.de>
3540M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003541L: gigaset307x-common@lists.sourceforge.net
3542W: http://gigaset307x.sourceforge.net/
3543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003544F: Documentation/isdn/README.gigaset
3545F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003546F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003547
Grant Likelya0dc00b2011-02-12 01:48:14 -07003548GPIO SUBSYSTEM
Grant Likely19624232013-04-08 11:51:42 +01003549M: Grant Likely <grant.likely@linaro.org>
Linus Walleije4651a92012-08-06 09:52:52 +02003550M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003551S: Maintained
3552T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003553F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003554F: drivers/gpio/
3555F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003556F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003557
Harry Wei71a6d0a2011-05-11 15:13:33 -07003558GRE DEMULTIPLEXER DRIVER
3559M: Dmitry Kozlov <xeb@mail.ru>
3560L: netdev@vger.kernel.org
3561S: Maintained
3562F: net/ipv4/gre.c
3563F: include/net/gre.h
3564
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003565GRETH 10/100/1G Ethernet MAC device driver
3566M: Kristoffer Glembo <kristoffer@gaisler.com>
3567L: netdev@vger.kernel.org
3568S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003569F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003570
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003571GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003572M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003573L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003574T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003575S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003576F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003577
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003578GSPCA GL860 SUBDRIVER
3579M: Olivier Lorin <o.lorin@laposte.net>
3580L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003581T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003582S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003583F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003584
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003585GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003586M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003587L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003588T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003589S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003590F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003591
3592GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003593M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003594L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003595T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003596S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003597F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003598
Brian Johnson261982f2009-07-19 15:58:56 -03003599GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003600M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003601L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003602T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003603S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003604F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003605
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003606GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003607M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003608L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003609T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003610S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003611F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003612
3613GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003614M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003615L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003616T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003617S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003618F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003619
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003620STK1160 USB VIDEO CAPTURE DRIVER
3621M: Ezequiel Garcia <elezegarcia@gmail.com>
3622L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003623T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003624S: Maintained
3625F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003626
Harry Wei71a6d0a2011-05-11 15:13:33 -07003627HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3628M: Frank Seidel <frank@f-seidel.de>
3629L: platform-driver-x86@vger.kernel.org
3630W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3631S: Maintained
3632F: drivers/platform/x86/hdaps.c
3633
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003634HDPVR USB VIDEO ENCODER DRIVER
3635M: Hans Verkuil <hverkuil@xs4all.nl>
3636L: linux-media@vger.kernel.org
3637T: git git://linuxtv.org/media_tree.git
3638W: http://linuxtv.org
3639S: Odd Fixes
3640F: drivers/media/usb/hdpvr
3641
Harry Wei71a6d0a2011-05-11 15:13:33 -07003642HWPOISON MEMORY FAILURE HANDLING
3643M: Andi Kleen <andi@firstfloor.org>
3644L: linux-mm@kvack.org
3645T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3646S: Maintained
3647F: mm/memory-failure.c
3648F: mm/hwpoison-inject.c
3649
3650HYPERVISOR VIRTUAL CONSOLE DRIVER
3651L: linuxppc-dev@lists.ozlabs.org
3652S: Odd Fixes
3653F: drivers/tty/hvc/
3654
Michael Buesch844dd052006-06-26 00:24:59 -07003655HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003656M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003657M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003658L: lm-sensors@lm-sensors.org
3659W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003660T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003661T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003662S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003663F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003664F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003665F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003666
3667HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003668M: Matt Mackall <mpm@selenic.com>
3669M: Herbert Xu <herbert@gondor.apana.org.au>
3670S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003671F: Documentation/hw_random.txt
3672F: drivers/char/hw_random/
3673F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003674
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003675HARDWARE SPINLOCK CORE
3676M: Ohad Ben-Cohen <ohad@wizery.com>
3677S: Maintained
3678F: Documentation/hwspinlock.txt
3679F: drivers/hwspinlock/hwspinlock_*
3680F: include/linux/hwspinlock.h
3681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003683L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003685F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
Antti Palosaari91952bc2012-10-01 12:28:46 -03003687HD29L2 MEDIA DRIVER
3688M: Antti Palosaari <crope@iki.fi>
3689L: linux-media@vger.kernel.org
3690W: http://linuxtv.org/
3691W: http://palosaari.fi/linux/
3692Q: http://patchwork.linuxtv.org/project/linux-media/list/
3693T: git git://linuxtv.org/anttip/media_tree.git
3694S: Maintained
3695F: drivers/media/dvb-frontends/hd29l2*
3696
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003697HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003698M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003699L: iss_storagedev@hp.com
3700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: Documentation/blockdev/cpqarray.txt
3702F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003703
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003704HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003705M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003706L: iss_storagedev@hp.com
3707S: Supported
3708F: Documentation/scsi/hpsa.txt
3709F: drivers/scsi/hpsa*.[ch]
3710F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003711F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003712
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003713HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003714M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003715L: iss_storagedev@hp.com
3716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003717F: Documentation/blockdev/cciss.txt
3718F: drivers/block/cciss*
3719F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003720F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003721
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003723L: linux-fsdevel@vger.kernel.org
3724S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003725F: Documentation/filesystems/hfs.txt
3726F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
3728HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003729M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730L: linux-nvidia@lists.surfsouth.com
3731W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003733F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003735HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003736M: Pavel Machek <pavel@ucw.cz>
3737M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003738L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003739S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003740F: arch/x86/power/
3741F: drivers/base/power/
3742F: kernel/power/
3743F: include/linux/suspend.h
3744F: include/linux/freezer.h
3745F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003746F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003747
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003748HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003749M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003750L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003751T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003753F: drivers/hid/
3754F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003755F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003756
Ingo Molnar38bed542007-02-22 09:09:34 +01003757HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003759T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003761F: Documentation/timers/
3762F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003763F: kernel/time/clockevents.c
3764F: kernel/time/tick*.*
3765F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003766F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003767F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003771S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003772F: drivers/net/hamradio/dmascc.c
3773F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003775HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003776M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003777W: http://www.highpoint-tech.com
3778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003779F: Documentation/scsi/hptiop.txt
3780F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003781
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003783M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784L: linux-hippi@sunsite.dk
3785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003786F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003787F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003788F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003789F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
Jouni Malinenff1d2762005-05-12 22:54:16 -04003791HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003792M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003793L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003794L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003795W: http://hostap.epitest.fi/
3796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003797F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003798
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003799HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003800L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003801S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003802F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003803
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003804HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003805M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003806S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003807F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003808
Joe Perches7d2c86b2009-04-07 20:59:01 -07003809HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003812F: Documentation/timers/hpet.txt
3813F: drivers/char/hpet.c
3814F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003815F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003816
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003817HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003818M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: arch/x86/kernel/hpet.c
3821F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003824M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Joe Perches7d2c86b2009-04-07 20:59:01 -07003829HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003831W: http://www.pharscape.org
3832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003833F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003834
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003835HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003836M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003837L: linux-input@vger.kernel.org
3838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003839F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003840
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003842M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003844F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003846Hyper-V CORE AND DRIVERS
3847M: K. Y. Srinivasan <kys@microsoft.com>
3848M: Haiyang Zhang <haiyangz@microsoft.com>
3849L: devel@linuxdriverproject.org
3850S: Maintained
3851F: drivers/hv/
3852F: drivers/hid/hid-hyperv.c
3853F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003854
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003855I2C OVER PARALLEL PORT
3856M: Jean Delvare <khali@linux-fr.org>
3857L: linux-i2c@vger.kernel.org
3858S: Maintained
3859F: Documentation/i2c/busses/i2c-parport
3860F: Documentation/i2c/busses/i2c-parport-light
3861F: drivers/i2c/busses/i2c-parport.c
3862F: drivers/i2c/busses/i2c-parport-light.c
3863
3864I2C/SMBUS CONTROLLER DRIVERS FOR PC
3865M: Jean Delvare <khali@linux-fr.org>
3866L: linux-i2c@vger.kernel.org
3867S: Maintained
3868F: Documentation/i2c/busses/i2c-ali1535
3869F: Documentation/i2c/busses/i2c-ali1563
3870F: Documentation/i2c/busses/i2c-ali15x3
3871F: Documentation/i2c/busses/i2c-amd756
3872F: Documentation/i2c/busses/i2c-amd8111
3873F: Documentation/i2c/busses/i2c-i801
3874F: Documentation/i2c/busses/i2c-nforce2
3875F: Documentation/i2c/busses/i2c-piix4
3876F: Documentation/i2c/busses/i2c-sis5595
3877F: Documentation/i2c/busses/i2c-sis630
3878F: Documentation/i2c/busses/i2c-sis96x
3879F: Documentation/i2c/busses/i2c-via
3880F: Documentation/i2c/busses/i2c-viapro
3881F: drivers/i2c/busses/i2c-ali1535.c
3882F: drivers/i2c/busses/i2c-ali1563.c
3883F: drivers/i2c/busses/i2c-ali15x3.c
3884F: drivers/i2c/busses/i2c-amd756.c
3885F: drivers/i2c/busses/i2c-amd756-s4882.c
3886F: drivers/i2c/busses/i2c-amd8111.c
3887F: drivers/i2c/busses/i2c-i801.c
3888F: drivers/i2c/busses/i2c-isch.c
3889F: drivers/i2c/busses/i2c-nforce2.c
3890F: drivers/i2c/busses/i2c-nforce2-s4985.c
3891F: drivers/i2c/busses/i2c-piix4.c
3892F: drivers/i2c/busses/i2c-sis5595.c
3893F: drivers/i2c/busses/i2c-sis630.c
3894F: drivers/i2c/busses/i2c-sis96x.c
3895F: drivers/i2c/busses/i2c-via.c
3896F: drivers/i2c/busses/i2c-viapro.c
3897
Neil Hormancb7f07a2013-02-10 11:59:03 -05003898I2C/SMBUS ISMT DRIVER
3899M: Seth Heasley <seth.heasley@intel.com>
3900M: Neil Horman <nhorman@tuxdriver.com>
3901L: linux-i2c@vger.kernel.org
3902F: drivers/i2c/busses/i2c-ismt.c
3903F: Documentation/i2c/busses/i2c-ismt
3904
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003905I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003906M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003907L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003908S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003909F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003910
Jean Delvare5b543962005-08-15 19:51:02 +02003911I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003912M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003913M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003914L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003915W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003916T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003918F: Documentation/i2c/
3919F: drivers/i2c/
3920F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003921F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003922F: include/uapi/linux/i2c.h
3923F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003925I2C-TAOS-EVM DRIVER
3926M: Jean Delvare <khali@linux-fr.org>
3927L: linux-i2c@vger.kernel.org
3928S: Maintained
3929F: Documentation/i2c/busses/i2c-taos-evm
3930F: drivers/i2c/busses/i2c-taos-evm.c
3931
Till Harbaume8c76ee2007-05-01 23:26:35 +02003932I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003933M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003934L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003935W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003937F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003940M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003942F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003945M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003946T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947S: Maintained
3948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: Tony Luck <tony.luck@intel.com>
3951M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003953T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003955F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Kent Yoder956c2032012-09-07 04:17:01 +08003957IBM Power in-Nest Crypto Acceleration
3958M: Kent Yoder <key@linux.vnet.ibm.com>
3959L: linux-crypto@vger.kernel.org
3960S: Supported
3961F: drivers/crypto/nx/
3962
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003963IBM Power 842 compression accelerator
3964M: Robert Jennings <rcj@linux.vnet.ibm.com>
3965S: Supported
3966F: drivers/crypto/nx/nx-842.c
3967F: include/linux/nx842.h
3968
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003970M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003972F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
Santiago Leon9d348af2010-09-03 18:29:53 +00003974IBM Power Virtual Ethernet Device Driver
3975M: Santiago Leon <santil@linux.vnet.ibm.com>
3976L: netdev@vger.kernel.org
3977S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003978F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003979
Robert Jennings4b7652c2012-07-31 12:34:36 -05003980IBM Power Virtual SCSI/FC Device Drivers
3981M: Robert Jennings <rcj@linux.vnet.ibm.com>
3982L: linux-scsi@vger.kernel.org
3983S: Supported
3984F: drivers/scsi/ibmvscsi/
3985X: drivers/scsi/ibmvscsi/ibmvstgt.c
3986
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987IBM ServeRAID RAID DRIVER
3988P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003989M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003991S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003992F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003994ICH LPC AND GPIO DRIVER
3995M: Peter Tyser <ptyser@xes-inc.com>
3996S: Maintained
3997F: drivers/mfd/lpc_ich.c
3998F: drivers/gpio/gpio-ich.c
3999
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004000IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004001M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004003Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004004T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004006F: Documentation/ide/
4007F: drivers/ide/
4008F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Ike Panhc6cb8c132011-08-25 22:28:45 +08004010IDEAPAD LAPTOP EXTRAS DRIVER
4011M: Ike Panhc <ike.pan@canonical.com>
4012L: platform-driver-x86@vger.kernel.org
4013W: http://launchpad.net/ideapad-laptop
4014S: Maintained
4015F: drivers/platform/x86/ideapad-laptop.c
4016
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004017IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004018M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004019L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004021F: Documentation/cdrom/ide-cd
4022F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
Andy Henroid27471fd2008-10-09 11:45:22 -07004024IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004025M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004026L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004028F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004029
Sergey Lapin02cf2282009-06-08 12:18:50 +00004030IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004031M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004032M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004033L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004034W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004035T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004036S: Maintained
4037F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004038F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004039F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004040
Sean Young40ad4a32012-11-19 10:32:53 -03004041IGUANAWORKS USB IR TRANSCEIVER
4042M: Sean Young <sean@mess.org>
4043L: linux-media@vger.kernel.org
4044S: Maintained
4045F: drivers/media/rc/iguanair.c
4046
Ameya Palande9545f862012-01-10 09:00:58 -08004047IIO SUBSYSTEM AND DRIVERS
4048M: Jonathan Cameron <jic23@cam.ac.uk>
4049L: linux-iio@vger.kernel.org
4050S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004051F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004052F: drivers/staging/iio/
4053
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004054IKANOS/ADI EAGLE ADSL USB DRIVER
4055M: Matthieu Castet <castet.matthieu@free.fr>
4056M: Stanislaw Gruszka <stf_xl@wp.pl>
4057S: Maintained
4058F: drivers/usb/atm/ueagle-atm.c
4059
Guenter Roecke89ab512013-03-08 08:13:09 -08004060INA209 HARDWARE MONITOR DRIVER
4061M: Guenter Roeck <linux@roeck-us.net>
4062L: lm-sensors@lm-sensors.org
4063S: Maintained
4064F: Documentation/hwmon/ina209
4065F: Documentation/devicetree/bindings/i2c/ina209.txt
4066F: drivers/hwmon/ina209.c
4067
4068INA2XX HARDWARE MONITOR DRIVER
4069M: Guenter Roeck <linux@roeck-us.net>
4070L: lm-sensors@lm-sensors.org
4071S: Maintained
4072F: Documentation/hwmon/ina2xx
4073F: drivers/hwmon/ina2xx.c
4074F: include/linux/platform_data/ina2xx.h
4075
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004076INDUSTRY PACK SUBSYSTEM (IPACK)
4077M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4078M: Jens Taprogge <jens.taprogge@taprogge.org>
4079M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4080L: industrypack-devel@lists.sourceforge.net
4081W: http://industrypack.sourceforge.net
4082S: Maintained
4083F: drivers/ipack/
4084
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004085INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004086M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004088F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004089
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004091L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004092S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004093F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
4095INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004096M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004097M: Sean Hefty <sean.hefty@intel.com>
4098M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004099L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004100W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004101Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004102T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004104F: Documentation/infiniband/
4105F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004106F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
Robert Lovec9f04f52005-07-15 12:21:07 -04004108INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004109M: John McCutchan <john@johnmccutchan.com>
4110M: Robert Love <rlove@rlove.org>
4111M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004113F: Documentation/filesystems/inotify.txt
4114F: fs/notify/inotify/
4115F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004116F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004117
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004118INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004119M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4120M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004121L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004122Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004123T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004125F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004126F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004127F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004128F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004129
Henrik Rydberg3267a872010-06-24 19:10:40 -07004130INPUT MULTITOUCH (MT) PROTOCOL
4131M: Henrik Rydberg <rydberg@euromail.se>
4132L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004133T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004134S: Maintained
4135F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004136F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004137K: \b(ABS|SYN)_MT_
4138
Dave Jiang4ac13e12011-07-29 17:16:55 -07004139INTEL C600 SERIES SAS CONTROLLER DRIVER
4140M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004141M: Lukasz Dorau <lukasz.dorau@intel.com>
4142M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004143M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004144L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004145T: git git://git.code.sf.net/p/intel-sas/isci
4146S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004147F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004148
Len Brown26717172010-03-08 14:07:30 -05004149INTEL IDLE DRIVER
4150M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004151L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004152T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004153S: Supported
4154F: drivers/idle/intel_idle.c
4155
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004156INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004157M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004158L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004160F: Documentation/fb/intelfb.txt
4161F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004162
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004164M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004165L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004167F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304169INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004170M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004171L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304172W: http://www.lesswatts.org/projects/acpi/
4173S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004174F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304175
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004177M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004179F: arch/x86/kernel/microcode_core.c
4180F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004182INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004183M: Dan Williams <djbw@fb.com>
4184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004185F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004186
David Woodhouse6c8909b2008-10-18 16:12:17 +01004187INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004188M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004189L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004190T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004191S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004192F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004193F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004194
Dan Williamsb3e5f262007-08-07 10:26:35 -07004195INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004196M: Dan Williams <djbw@fb.com>
4197S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004198F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004199
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004200INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004201M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004203F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4204F: arch/arm/mach-ixp4xx/include/mach/npe.h
4205F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4206F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004207F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004208F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004209
Michael Buesch844dd052006-06-26 00:24:59 -07004210INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004211M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004213F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004214
Jeff Kirsher0d164402010-10-05 01:15:17 +00004215INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004216M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4217M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4218M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004219M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4220M: Don Skidmore <donald.c.skidmore@intel.com>
4221M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004222M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004223M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004224M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004225M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004226L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004227W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004228W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004229T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4230T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004232F: Documentation/networking/e100.txt
4233F: Documentation/networking/e1000.txt
4234F: Documentation/networking/e1000e.txt
4235F: Documentation/networking/igb.txt
4236F: Documentation/networking/igbvf.txt
4237F: Documentation/networking/ixgb.txt
4238F: Documentation/networking/ixgbe.txt
4239F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004240F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004242INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4243M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004244L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004246F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004247F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004248F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004249
Shane Wang4bd96a72010-03-10 14:36:10 +08004250INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004251M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4252M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004253M: Shane Wang <shane.wang@intel.com>
4254L: tboot-devel@lists.sourceforge.net
4255W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004256T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004257S: Supported
4258F: Documentation/intel_txt.txt
4259F: include/linux/tboot.h
4260F: arch/x86/kernel/tboot.c
4261
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004262INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004264M: linux-wimax@intel.com
4265L: wimax@linuxwimax.org
4266S: Supported
4267W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004268F: Documentation/wimax/README.i2400m
4269F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004270F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004271
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004272INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4273M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004274L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004275S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004276F: drivers/net/wireless/iwlegacy/
4277
Zhu Yib481de92007-09-25 17:54:57 -07004278INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004279M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004280M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004281M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004282L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004283W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004284T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004286F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004287
Tomas Winklerde8fe022012-05-09 16:39:02 +03004288INTEL MANAGEMENT ENGINE (mei)
4289M: Tomas Winkler <tomas.winkler@intel.com>
4290L: linux-kernel@vger.kernel.org
4291S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004292F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004293F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004294F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004295
Ralf Baechlecb109a02007-08-30 23:56:30 -07004296IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004297M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298L: linux-mips@linux-mips.org
4299S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004300F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
Ralf Baechlecb109a02007-08-30 23:56:30 -07004302IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004303M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004304L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004305S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004306F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004307
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004308IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004309M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004311F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
Francois Romieu1202d6f2007-09-17 17:13:55 -07004313IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004314M: Francois Romieu <romieu@fr.zoreil.com>
4315M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004316L: netdev@vger.kernel.org
4317S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004318F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004319
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004320IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004321M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004322L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004324F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004325
Corey Minyard4409ebe2006-04-20 02:43:12 -07004326IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004327M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004328L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004329W: http://openipmi.sourceforge.net/
4330S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004331F: Documentation/IPMI.txt
4332F: drivers/char/ipmi/
4333F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004334F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004335
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004336IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004337M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004338L: linux-scsi@vger.kernel.org
4339W: http://www.adaptec.com/
4340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004341F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004342
4343IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004344M: Wensong Zhang <wensong@linux-vs.org>
4345M: Simon Horman <horms@verge.net.au>
4346M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004347L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004348L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004350F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004351F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004352F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004353F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
Randy Dunlape7839f22008-10-12 16:11:45 -07004355IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004356M: Jiri Kosina <jkosina@suse.cz>
4357M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004358S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004359F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004360
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004361IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004362M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004363L: netdev@vger.kernel.org
4364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004365F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004366F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004367F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004368
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004370M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004371L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004372L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004374S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004375T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004376F: Documentation/networking/irda.txt
4377F: drivers/net/irda/
4378F: include/net/irda/
4379F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004381IRQ SUBSYSTEM
4382M: Thomas Gleixner <tglx@linutronix.de>
4383S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004384T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004385F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004386F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004387
Grant Likely7ab3a832012-02-14 14:06:47 -07004388IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4389M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely19624232013-04-08 11:51:42 +01004390M: Grant Likely <grant.likely@linaro.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004391T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4392S: Maintained
4393F: Documentation/IRQ-domain.txt
4394F: include/linux/irqdomain.h
4395F: kernel/irq/irqdomain.c
4396
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004397ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004398M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: Documentation/isapnp.txt
4401F: drivers/pnp/isapnp/
4402F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004403
Hans Verkuild39b8422012-11-23 07:07:02 -03004404ISA RADIO MODULE
4405M: Hans Verkuil <hverkuil@xs4all.nl>
4406L: linux-media@vger.kernel.org
4407T: git git://linuxtv.org/media_tree.git
4408W: http://linuxtv.org
4409S: Maintained
4410F: drivers/media/radio/radio-isa*
4411
Harry Wei71a6d0a2011-05-11 15:13:33 -07004412iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4413M: Peter Jones <pjones@redhat.com>
4414M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4415S: Maintained
4416F: drivers/firmware/iscsi_ibft*
4417
Mike Christie14816b1e2007-11-28 16:22:06 -08004418ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004419M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004420L: open-iscsi@googlegroups.com
4421W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004422T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: drivers/scsi/*iscsi*
4425F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004426
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004428M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004429L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004430L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004432T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004434F: Documentation/isdn/
4435F: drivers/isdn/
4436F: include/linux/isdn.h
4437F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004438F: include/uapi/linux/isdn.h
4439F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440
4441ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004442M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004443L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444W: http://www.melware.de
4445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004446F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Jean Delvared6248702010-03-05 22:17:20 +01004448IT87 HARDWARE MONITORING DRIVER
4449M: Jean Delvare <khali@linux-fr.org>
4450L: lm-sensors@lm-sensors.org
4451S: Maintained
4452F: Documentation/hwmon/it87
4453F: drivers/hwmon/it87.c
4454
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004455IT913X MEDIA DRIVER
4456M: Malcolm Priestley <tvboxspy@gmail.com>
4457L: linux-media@vger.kernel.org
4458W: http://linuxtv.org/
4459Q: http://patchwork.linuxtv.org/project/linux-media/list/
4460S: Maintained
4461F: drivers/media/usb/dvb-usb-v2/it913x*
4462
4463IT913X FE MEDIA DRIVER
4464M: Malcolm Priestley <tvboxspy@gmail.com>
4465L: linux-media@vger.kernel.org
4466W: http://linuxtv.org/
4467Q: http://patchwork.linuxtv.org/project/linux-media/list/
4468S: Maintained
4469F: drivers/media/dvb-frontends/it913x-fe*
4470
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004471IT913X MEDIA DRIVER
4472M: Antti Palosaari <crope@iki.fi>
4473L: linux-media@vger.kernel.org
4474W: http://linuxtv.org/
4475W: http://palosaari.fi/linux/
4476Q: http://patchwork.linuxtv.org/project/linux-media/list/
4477T: git git://linuxtv.org/anttip/media_tree.git
4478S: Maintained
4479F: drivers/media/tuners/it913x*
4480
Hans Verkuil91821ff2007-12-02 09:35:33 -03004481IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004482M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004483L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004484L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004485T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004486W: http://www.ivtvdriver.org
4487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004488F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004489F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004490F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004491
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004492IX2505V MEDIA DRIVER
4493M: Malcolm Priestley <tvboxspy@gmail.com>
4494L: linux-media@vger.kernel.org
4495W: http://linuxtv.org/
4496Q: http://patchwork.linuxtv.org/project/linux-media/list/
4497S: Maintained
4498F: drivers/media/dvb-frontends/ix2505v*
4499
Guenter Roeck4453d732010-08-09 17:21:08 -07004500JC42.4 TEMPERATURE SENSOR DRIVER
4501M: Guenter Roeck <linux@roeck-us.net>
4502L: lm-sensors@lm-sensors.org
4503S: Maintained
4504F: drivers/hwmon/jc42.c
4505F: Documentation/hwmon/jc42
4506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004507JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004508M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004509L: jfs-discussion@lists.sourceforge.net
4510W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004511T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004513F: Documentation/filesystems/jfs.txt
4514F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004515
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004516JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004517M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004518L: netdev@vger.kernel.org
4519S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004520F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004521
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004523M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004524L: linux-mtd@lists.infradead.org
4525W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004527F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004528F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529
Josh Triplettde456d32006-07-30 03:04:00 -07004530JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004531M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004532M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004533L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004534S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004535F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004536F: include/linux/jbd.h
4537
4538JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4539M: "Theodore Ts'o" <tytso@mit.edu>
4540L: linux-ext4@vger.kernel.org
4541S: Maintained
4542F: fs/jbd2/
4543F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004544
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004545JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004546M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004547L: linux-serial@vger.kernel.org
4548S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004549F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004550
Clemens Ladischaf399172011-01-10 16:32:54 +01004551K10TEMP HARDWARE MONITORING DRIVER
4552M: Clemens Ladisch <clemens@ladisch.de>
4553L: lm-sensors@lm-sensors.org
4554S: Maintained
4555F: Documentation/hwmon/k10temp
4556F: drivers/hwmon/k10temp.c
4557
Rudolf Marek4660cb32006-10-08 22:01:26 +02004558K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004560L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: Documentation/hwmon/k8temp
4563F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
4565KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004566M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004567L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004568S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004569F: Documentation/kbuild/kconfig-language.txt
4570F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Vivek Goyalea6c2082006-05-20 14:59:55 -07004572KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004573M: Vivek Goyal <vgoyal@redhat.com>
4574M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004575L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004576W: http://lse.sourceforge.net/kdump/
4577S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004578F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004579
Hans Verkuilf41bf022012-11-23 07:04:36 -03004580KEENE FM RADIO TRANSMITTER DRIVER
4581M: Hans Verkuil <hverkuil@xs4all.nl>
4582L: linux-media@vger.kernel.org
4583T: git git://linuxtv.org/media_tree.git
4584W: http://linuxtv.org
4585S: Maintained
4586F: drivers/media/radio/radio-keene*
4587
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004589M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004590L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004592F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Michal Marek70fb7ba2010-01-29 14:22:43 +01004594KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004595M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004596T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4597T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004598L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004600F: Documentation/kbuild/
4601F: Makefile
4602F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004603F: scripts/basic/
4604F: scripts/mk*
4605F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
4607KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004608L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004609W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004610S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004612KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004613M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004614L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004617F: fs/nfsd/
4618F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004619F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004620F: fs/lockd/
4621F: fs/nfs_common/
4622F: net/sunrpc/
4623F: include/linux/lockd/
4624F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004625F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Avi Kivity426d62e2006-12-13 00:34:03 -08004627KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004628M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004629M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004630L: kvm@vger.kernel.org
4631W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004633F: Documentation/*/kvm.txt
4634F: arch/*/kvm/
4635F: arch/*/include/asm/kvm*
4636F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004637F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004638F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004639
Joerg Roedelad8003d2008-09-10 20:01:07 +02004640KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004641M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004642L: kvm@vger.kernel.org
4643W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004645F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004646F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004647
Hollis Blanchard513014b2008-04-16 23:28:08 -05004648KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004649M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004650L: kvm-ppc@vger.kernel.org
4651W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004652T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004654F: arch/powerpc/include/asm/kvm*
4655F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004656
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004657KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004658M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004659L: kvm-ia64@vger.kernel.org
4660W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004662F: Documentation/ia64/kvm.txt
4663F: arch/ia64/include/asm/kvm*
4664F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004665
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004666KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004668M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004669M: linux390@de.ibm.com
4670L: linux-s390@vger.kernel.org
4671W: http://www.ibm.com/developerworks/linux/linux390/
4672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004673F: Documentation/s390/kvm.txt
4674F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004675F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004676F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004677
Christoffer Dalla7494742013-01-20 18:42:26 -05004678KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4679M: Christoffer Dall <cdall@cs.columbia.edu>
4680L: kvmarm@lists.cs.columbia.edu
4681W: http://systems.cs.columbia.edu/projects/kvm-arm
4682S: Maintained
4683F: arch/arm/include/uapi/asm/kvm*
4684F: arch/arm/include/asm/kvm*
4685F: arch/arm/kvm/
4686
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004687KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004688M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004689W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004690L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004692F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004693F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004694F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004695
David Howellse9714612010-03-29 23:42:09 +01004696KEYS/KEYRINGS:
4697M: David Howells <dhowells@redhat.com>
4698L: keyrings@linux-nfs.org
4699S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004700F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004701F: include/linux/key.h
4702F: include/linux/key-type.h
4703F: include/keys/
4704F: security/keys/
4705
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004706KEYS-TRUSTED
4707M: David Safford <safford@watson.ibm.com>
4708M: Mimi Zohar <zohar@us.ibm.com>
4709L: linux-security-module@vger.kernel.org
4710L: keyrings@linux-nfs.org
4711S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004712F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004713F: include/keys/trusted-type.h
4714F: security/keys/trusted.c
4715F: security/keys/trusted.h
4716
4717KEYS-ENCRYPTED
4718M: Mimi Zohar <zohar@us.ibm.com>
4719M: David Safford <safford@watson.ibm.com>
4720L: linux-security-module@vger.kernel.org
4721L: keyrings@linux-nfs.org
4722S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004723F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004724F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004725F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004726
Jason Wessel5b778da2010-05-20 21:04:28 -05004727KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004728M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004729W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004730L: kgdb-bugreport@lists.sourceforge.net
4731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004732F: Documentation/DocBook/kgdb.tmpl
4733F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004734F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004735F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004736F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004737F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004738
Pekka Enberg456db8c2008-04-28 22:47:29 +03004739KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004740M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004741M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004742S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004743F: Documentation/kmemcheck.txt
4744F: arch/x86/include/asm/kmemcheck.h
4745F: arch/x86/mm/kmemcheck/
4746F: include/linux/kmemcheck.h
4747F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004748
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004749KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004751S: Maintained
4752F: Documentation/kmemleak.txt
4753F: include/linux/kmemleak.h
4754F: mm/kmemleak.c
4755F: mm/kmemleak-test.c
4756
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004757KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4759M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4760M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004761M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004763F: Documentation/kprobes.txt
4764F: include/linux/kprobes.h
4765F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004766
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004767KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004769W: http://miguelojeda.es/auxdisplay.htm
4770W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: Documentation/auxdisplay/ks0108
4773F: drivers/auxdisplay/ks0108.c
4774F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004775
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004778S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004779F: Documentation/networking/lapb-module.txt
4780F: include/*/lapb.h
4781F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
4783LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004784M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785L: linux-scsi@vger.kernel.org
4786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: Documentation/scsi/53c700.txt
4788F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789
Richard Purdie263de9b2006-05-15 09:44:16 -07004790LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004791M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004792M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004793L: linux-leds@vger.kernel.org
4794T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004796F: drivers/leds/
4797F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004798
Jean Delvareb0461a42011-06-15 15:08:46 -07004799LEGACY EEPROM DRIVER
4800M: Jean Delvare <khali@linux-fr.org>
4801S: Maintained
4802F: Documentation/misc-devices/eeprom
4803F: drivers/misc/eeprom/eeprom.c
4804
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004806M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807L: legousb-devel@lists.sourceforge.net
4808W: http://legousb.sourceforge.net/
4809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004810F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Michael Krufky055616a2012-10-02 00:56:06 -03004812LG2160 MEDIA DRIVER
4813M: Michael Krufky <mkrufky@linuxtv.org>
4814L: linux-media@vger.kernel.org
4815W: http://linuxtv.org/
4816W: http://github.com/mkrufky
4817Q: http://patchwork.linuxtv.org/project/linux-media/list/
4818T: git git://linuxtv.org/mkrufky/tuners.git
4819S: Maintained
4820F: drivers/media/dvb-frontends/lg2160.*
4821
Michael Krufky6f0e7722012-10-02 00:56:00 -03004822LGDT3305 MEDIA DRIVER
4823M: Michael Krufky <mkrufky@linuxtv.org>
4824L: linux-media@vger.kernel.org
4825W: http://linuxtv.org/
4826W: http://github.com/mkrufky
4827Q: http://patchwork.linuxtv.org/project/linux-media/list/
4828T: git git://linuxtv.org/mkrufky/tuners.git
4829S: Maintained
4830F: drivers/media/dvb-frontends/lgdt3305.*
4831
Rusty Russell568a17f2007-10-25 14:12:24 +10004832LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004833M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004834L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004835W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004836S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004837F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004838F: arch/x86/lguest/
4839F: drivers/lguest/
4840F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004841F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004842
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004844M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845W: http://www.ibm.com/linux/ltc/projects/ppc
4846S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004847F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004849LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004850M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4851M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004853L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004854Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004855T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004857F: Documentation/powerpc/
4858F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
4860LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004861M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004863L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004865F: arch/powerpc/platforms/powermac/
4866F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
Grant Likely77a76362008-07-12 12:11:43 -06004868LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004869M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004870L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004871T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004873F: arch/powerpc/platforms/512x/
4874F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
4876LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004877M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004878M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004880L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004881T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004883F: arch/powerpc/platforms/40x/
4884F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885
Grant Likely260c02a2007-10-02 12:15:34 +10004886LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004887L: linuxppc-dev@lists.ozlabs.org
Grant Likely19624232013-04-08 11:51:42 +01004888S: Unmaintained
Joe Perches11c34c72009-12-04 07:16:59 +00004889F: arch/powerpc/*/*virtex*
4890F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891
Tom Rinie93adf12005-07-26 12:49:53 -07004892LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004893M: Vitaly Bordug <vitb@kernel.crashing.org>
4894M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004895W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004896L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004897S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004898F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004901M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004902W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004903L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004904S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004905F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004906F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907
Olof Johanssonab06ff32006-09-06 14:44:54 -05004908LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004909M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004910L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004911S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004912F: arch/powerpc/platforms/pasemi/
4913F: drivers/*/*pasemi*
4914F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004915
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004917M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004918L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919S: Supported
4920
Harry Weia23ce6d2011-02-11 16:52:20 +01004921LIS3LV02D ACCELEROMETER DRIVER
4922M: Eric Piel <eric.piel@tremplin-utc.net>
4923S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004924F: Documentation/misc-devices/lis3lv02d
4925F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004926F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004927
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004928LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004929M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004931F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004932F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004933F: include/net/llc*
4934F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004935
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004936LM73 HARDWARE MONITOR DRIVER
4937M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4938L: lm-sensors@lm-sensors.org
4939S: Maintained
4940F: drivers/hwmon/lm73.c
4941
Jean Delvare156e2d12011-07-25 21:46:11 +02004942LM78 HARDWARE MONITOR DRIVER
4943M: Jean Delvare <khali@linux-fr.org>
4944L: lm-sensors@lm-sensors.org
4945S: Maintained
4946F: Documentation/hwmon/lm78
4947F: drivers/hwmon/lm78.c
4948
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004950M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004951L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004953F: Documentation/hwmon/lm83
4954F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
4956LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004957M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004958L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004960F: Documentation/hwmon/lm90
4961F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004963LME2510 MEDIA DRIVER
4964M: Malcolm Priestley <tvboxspy@gmail.com>
4965L: linux-media@vger.kernel.org
4966W: http://linuxtv.org/
4967Q: http://patchwork.linuxtv.org/project/linux-media/list/
4968S: Maintained
4969F: drivers/media/usb/dvb-usb-v2/lmedm04*
4970
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004971LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004972M: Peter Zijlstra <peterz@infradead.org>
4973M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004974T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004976F: Documentation/lockdep*.txt
4977F: Documentation/lockstat.txt
4978F: include/linux/lockdep.h
4979F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004980
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004981LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004983L: linux-ntfs-dev@lists.sourceforge.net
4984W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004986F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004987F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
Joern Engelef6ada32009-11-20 22:17:12 +01004989LogFS
4990M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304991M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004992L: logfs@logfs.org
4993W: logfs.org
4994S: Maintained
4995F: fs/logfs/
4996
Roland Stiggeb62d7942013-04-02 19:37:11 +02004997LPC32XX MACHINE SUPPORT
4998M: Roland Stigge <stigge@antcom.de>
4999L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5000S: Maintained
5001F: arch/arm/mach-lpc32xx/
5002
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005003LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305004M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5005M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005006M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005007L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005008L: linux-scsi@vger.kernel.org
5009W: http://www.lsilogic.com/support
5010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005011F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305012F: drivers/scsi/mpt2sas/
5013F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005014
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005016M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017L: linux-scsi@vger.kernel.org
5018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005019F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Guenter Roecke5f5c992010-06-25 11:59:54 -07005021LTC4261 HARDWARE MONITOR DRIVER
5022M: Guenter Roeck <linux@roeck-us.net>
5023L: lm-sensors@lm-sensors.org
5024S: Maintained
5025F: Documentation/hwmon/ltc4261
5026F: drivers/hwmon/ltc4261.c
5027
Mike Frysinger81365c32008-10-29 14:01:12 -07005028LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005029M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005030M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005031M: Cyril Hrubis <chrubis@suse.cz>
5032M: Caspar Zhang <caspar@casparzhang.com>
5033M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005034L: ltp-list@lists.sourceforge.net (subscribers-only)
5035W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005036T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005037T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005038S: Maintained
5039
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005040M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005041M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005042L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005043L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5044W: http://www.linux-m32r.org/
5045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005046F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005047
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050L: linux-m68k@lists.linux-m68k.org
5051W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005052T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005054F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005055F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
5057M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005058M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005060L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005062F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
5064M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005065M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066W: http://www.tazenda.demon.co.uk/phil/linux-hp
5067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005068F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005070M88RS2000 MEDIA DRIVER
5071M: Malcolm Priestley <tvboxspy@gmail.com>
5072L: linux-media@vger.kernel.org
5073W: http://linuxtv.org/
5074Q: http://patchwork.linuxtv.org/project/linux-media/list/
5075S: Maintained
5076F: drivers/media/dvb-frontends/m88rs2000*
5077
Alexey Klimov07a092f2012-11-12 02:57:32 -03005078MA901 MASTERKIT USB FM RADIO DRIVER
5079M: Alexey Klimov <klimov.linux@gmail.com>
5080L: linux-media@vger.kernel.org
5081T: git git://linuxtv.org/media_tree.git
5082S: Maintained
5083F: drivers/media/radio/radio-ma901.c
5084
Jiri Benc64a327a2007-05-05 11:47:08 -07005085MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005086M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005087L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005088W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005089T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5090T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005092F: Documentation/networking/mac80211-injection.txt
5093F: include/net/mac80211.h
5094F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005095
Stefano Brivio1036d862007-12-23 04:46:27 +01005096MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005097M: Stefano Brivio <stefano.brivio@polimi.it>
5098M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005099L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005100W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005101T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5102T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005104F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005105
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005106MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005107M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005108L: netdev@vger.kernel.org
5109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: drivers/net/macvlan.c
5111F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005112
Michael Kerriskfaf16682005-07-31 22:34:47 -07005113MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005114M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005115W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005116L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005117S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005118
stephen hemminger44c14c12012-04-02 12:59:47 +00005119MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5120M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005121M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005122L: netdev@vger.kernel.org
5123S: Maintained
5124F: drivers/net/ethernet/marvell/sk*
5125
Stefano Brivio74cda162007-11-19 20:27:46 +01005126MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005127L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005128S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005129F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005130
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005131MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005132M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005133L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005134S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005135F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005136F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005138MARVELL MVNETA ETHERNET DRIVER
5139M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5140L: netdev@vger.kernel.org
5141S: Maintained
5142F: drivers/net/ethernet/marvell/mvneta.*
5143
Bing Zhaofcad5842011-07-13 13:11:58 -07005144MARVELL MWIFIEX WIRELESS DRIVER
5145M: Bing Zhao <bzhao@marvell.com>
5146L: linux-wireless@vger.kernel.org
5147S: Maintained
5148F: drivers/net/wireless/mwifiex/
5149
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005150MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005151M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005152L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005153S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005154F: drivers/net/wireless/mwl8k.c
5155
Pierre Ossman2a695672009-03-16 19:52:26 +01005156MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005157M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005158S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005159F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005160
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005162L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005163S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005164F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005165F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166
Guenter Roeckca462082012-06-01 23:28:23 -07005167MAX16065 HARDWARE MONITOR DRIVER
5168M: Guenter Roeck <linux@roeck-us.net>
5169L: lm-sensors@lm-sensors.org
5170S: Maintained
5171F: Documentation/hwmon/max16065
5172F: drivers/hwmon/max16065.c
5173
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005174MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005175M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005176L: lm-sensors@lm-sensors.org
5177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005178F: Documentation/hwmon/max6650
5179F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005180
Guenter Roecke89ab512013-03-08 08:13:09 -08005181MAX6697 HARDWARE MONITOR DRIVER
5182M: Guenter Roeck <linux@roeck-us.net>
5183L: lm-sensors@lm-sensors.org
5184S: Maintained
5185F: Documentation/hwmon/max6697
5186F: Documentation/devicetree/bindings/i2c/max6697.txt
5187F: drivers/hwmon/max6697.c
5188F: include/linux/platform_data/max6697.h
5189
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005190MAXIRADIO FM RADIO RECEIVER DRIVER
5191M: Hans Verkuil <hverkuil@xs4all.nl>
5192L: linux-media@vger.kernel.org
5193T: git git://linuxtv.org/media_tree.git
5194W: http://linuxtv.org
5195S: Maintained
5196F: drivers/media/radio/radio-maxiradio*
5197
Joe Perches127c49a2009-04-08 08:34:04 -07005198MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005199M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005200P: LinuxTV.org Project
5201L: linux-media@vger.kernel.org
5202W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005203Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005204T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005205S: Maintained
5206F: Documentation/dvb/
5207F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005208F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005209F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005210F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005211F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005212F: include/uapi/linux/dvb/
5213F: include/uapi/linux/videodev2.h
5214F: include/uapi/linux/media.h
5215F: include/uapi/linux/v4l2-*
5216F: include/uapi/linux/meye.h
5217F: include/uapi/linux/ivtv*
5218F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005219
Hans Verkuil6149a932012-11-23 07:21:19 -03005220MEDIAVISION PRO MOVIE STUDIO DRIVER
5221M: Hans Verkuil <hverkuil@xs4all.nl>
5222L: linux-media@vger.kernel.org
5223T: git git://linuxtv.org/media_tree.git
5224W: http://linuxtv.org
5225S: Odd Fixes
5226F: drivers/media/parport/pms*
5227
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005228MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005229M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005230L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005231W: http://megaraid.lsilogic.com
5232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005233F: Documentation/scsi/megaraid.txt
5234F: drivers/scsi/megaraid.*
5235F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005236
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005237MELLANOX ETHERNET DRIVER (mlx4_en)
5238M: Amir Vadai <amirv@mellanox.com>
5239L: netdev@vger.kernel.org
5240S: Supported
5241W: http://www.mellanox.com
5242Q: http://patchwork.ozlabs.org/project/netdev/list/
5243F: drivers/net/ethernet/mellanox/mlx4/en_*
5244
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005245MEMORY MANAGEMENT
5246L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005247W: http://www.linux-mm.org
5248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005249F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005250F: include/linux/gfp.h
5251F: include/linux/mmzone.h
5252F: include/linux/memory_hotplug.h
5253F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005254F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005255
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005256MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005257M: Johannes Weiner <hannes@cmpxchg.org>
5258M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005259M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005260M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005261L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005262L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005264F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005265F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005266
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005267MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005270W: http://www.linux-mtd.infradead.org/
5271Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005272T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005274F: drivers/mtd/
5275F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005276F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277
James Hogan12285942012-10-10 12:59:49 +01005278METAG ARCHITECTURE
5279M: James Hogan <james.hogan@imgtec.com>
5280S: Supported
5281F: arch/metag/
5282F: Documentation/metag/
5283F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005284F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005285F: drivers/irqchip/irq-metag.c
5286F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005287F: drivers/tty/metag_da.c
5288F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005289
Michal Simekc6375b02009-03-27 14:25:52 +01005290MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005292L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005293W: http://www.monstr.eu/fdt/
5294T: git git://git.monstr.eu/linux-2.6-microblaze.git
5295S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005296F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
5298MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005299M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005301F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
5303MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005304M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005306W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005307T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005308Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005310F: Documentation/mips/
5311F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
Hans Verkuil08b76202012-11-23 07:15:42 -03005313MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5314M: Hans Verkuil <hverkuil@xs4all.nl>
5315L: linux-media@vger.kernel.org
5316T: git git://linuxtv.org/media_tree.git
5317W: http://linuxtv.org
5318S: Odd Fixes
5319F: drivers/media/radio/radio-miropcm20*
5320
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005322M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005324F: include/linux/module.h
5325F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326
5327MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005329S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005330F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005331F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005332F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
Jiri Slabyb9705b62008-04-30 00:53:48 -07005334MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005335M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005337F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005338F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005339
Alexey Klimov889b2f82012-11-16 17:43:59 -03005340MR800 AVERMEDIA USB FM RADIO DRIVER
5341M: Alexey Klimov <klimov.linux@gmail.com>
5342L: linux-media@vger.kernel.org
5343T: git git://linuxtv.org/media_tree.git
5344S: Maintained
5345F: drivers/media/radio/radio-mr800.c
5346
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005347MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005348M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005349L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005351F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005352
Anisse Astier0f1006b2009-12-17 11:28:49 +01005353MSI WMI SUPPORT
5354M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005355L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005356S: Supported
5357F: drivers/platform/x86/msi-wmi.c
5358
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005359MT9M032 SENSOR DRIVER
5360M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5361L: linux-media@vger.kernel.org
5362T: git git://linuxtv.org/media_tree.git
5363S: Maintained
5364F: drivers/media/i2c/mt9m032.c
5365F: include/media/mt9m032.h
5366
5367MT9P031 SENSOR DRIVER
5368M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5369L: linux-media@vger.kernel.org
5370T: git git://linuxtv.org/media_tree.git
5371S: Maintained
5372F: drivers/media/i2c/mt9p031.c
5373F: include/media/mt9p031.h
5374
5375MT9T001 SENSOR DRIVER
5376M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5377L: linux-media@vger.kernel.org
5378T: git git://linuxtv.org/media_tree.git
5379S: Maintained
5380F: drivers/media/i2c/mt9t001.c
5381F: include/media/mt9t001.h
5382
5383MT9V032 SENSOR DRIVER
5384M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5385L: linux-media@vger.kernel.org
5386T: git git://linuxtv.org/media_tree.git
5387S: Maintained
5388F: drivers/media/i2c/mt9v032.c
5389F: include/media/mt9v032.h
5390
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005391MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005392M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005393T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005394S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005395F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005396
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005397MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005398M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005399L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005400T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005402F: drivers/mmc/
5403F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005404F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005405
David Brownell15a05802007-08-08 09:12:54 -07005406MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005407S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005408F: drivers/mmc/host/mmc_spi.c
5409F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005410
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005412M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005414F: Documentation/sound/oss/MultiSound
5415F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
Jiri Slabyd7354102006-12-08 02:38:35 -08005417MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005418S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005419F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005420F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005421
Felipe Balbi550a7372008-07-24 12:27:36 +03005422MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005423M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005424L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005425T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005428
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005429MXL5007T MEDIA DRIVER
5430M: Michael Krufky <mkrufky@linuxtv.org>
5431L: linux-media@vger.kernel.org
5432W: http://linuxtv.org/
5433W: http://github.com/mkrufky
5434Q: http://patchwork.linuxtv.org/project/linux-media/list/
5435T: git git://linuxtv.org/mkrufky/tuners.git
5436S: Maintained
5437F: drivers/media/tuners/mxl5007t.*
5438
Brice Goglin2d3cf582008-05-17 12:45:36 +02005439MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005440M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005441L: netdev@vger.kernel.org
5442W: http://www.myri.com/scs/download-Myri10GE.html
5443S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005444F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005445
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005447S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005448F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Daniel Mack23dc05a2011-05-18 11:28:38 +02005450NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5451M: Daniel Mack <zonque@gmail.com>
5452S: Maintained
5453L: alsa-devel@alsa-project.org
5454W: http://www.native-instruments.com
5455F: sound/usb/caiaq/
5456
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005458M: Petr Vandrovec <petr@vandrovec.name>
5459S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005460F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461
5462NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005463M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464L: linux-scsi@vger.kernel.org
5465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005466F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005468NCT6775 HARDWARE MONITOR DRIVER
5469M: Guenter Roeck <linux@roeck-us.net>
5470L: lm-sensors@lm-sensors.org
5471S: Maintained
5472F: Documentation/hwmon/nct6775
5473F: drivers/hwmon/nct6775.c
5474
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005475NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005477L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005478W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005479S: Supported
5480F: drivers/infiniband/hw/nes/
5481
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005482NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005483M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005484L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005486F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005487
Jon Masonb2f5a052010-07-15 08:47:27 +00005488NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005489M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005490L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005492F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005493F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005494F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005495
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497P: Harald Welte
5498P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005499M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005501L: netfilter-devel@vger.kernel.org
5502L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005503L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504W: http://www.netfilter.org/
5505W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005506T: git git://1984.lsi.us.es/nf
5507T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005509F: include/linux/netfilter*
5510F: include/linux/netfilter/
5511F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005512F: include/uapi/linux/netfilter*
5513F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005514F: net/*/netfilter.c
5515F: net/*/netfilter/
5516F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
Paul Moore4cc67732006-09-25 15:57:13 -07005518NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005519M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005520W: http://netlabel.sf.net
5521L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005522S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005523F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005524F: include/net/netlabel.h
5525F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005526
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005528M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005530W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005532F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005533F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005534F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005536NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005537M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005539L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005540F: Documentation/blockdev/nbd.txt
5541F: drivers/block/nbd.c
5542F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005543F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544
Neil Horman6e436502009-10-05 03:56:55 +00005545NETWORK DROP MONITOR
5546M: Neil Horman <nhorman@tuxdriver.com>
5547L: netdev@vger.kernel.org
5548S: Maintained
5549W: https://fedorahosted.org/dropwatch/
5550F: net/core/drop_monitor.c
5551
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005553M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005554L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005555W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005556Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005557T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5558T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005560F: net/
5561F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005562F: include/linux/in.h
5563F: include/linux/net.h
5564F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005565F: include/uapi/linux/in.h
5566F: include/uapi/linux/net.h
5567F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
5569NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005570M: "David S. Miller" <davem@davemloft.net>
5571M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005572M: James Morris <jmorris@namei.org>
5573M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5574M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005575L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005576T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005578F: net/ipv4/
5579F: net/ipv6/
5580F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005581F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582
David S. Miller73b76562012-10-16 14:08:40 -04005583NETWORKING [IPSEC]
5584M: Steffen Klassert <steffen.klassert@secunet.com>
5585M: Herbert Xu <herbert@gondor.apana.org.au>
5586M: "David S. Miller" <davem@davemloft.net>
5587L: netdev@vger.kernel.org
5588T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5589S: Maintained
5590F: net/xfrm/
5591F: net/key/
5592F: net/ipv4/xfrm*
5593F: net/ipv6/xfrm*
5594F: include/uapi/linux/xfrm.h
5595F: include/net/xfrm.h
5596
James Morris10e2ff12007-08-25 14:41:28 -07005597NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005598M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005599L: netdev@vger.kernel.org
5600S: Maintained
5601
John W. Linville29f8f632006-01-18 14:52:48 -08005602NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005603M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005604L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005605Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005606T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005607S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005608F: net/mac80211/
5609F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005610F: net/wireless/
5611F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005612F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005613F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005614F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005615F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005616
Joe Perches788873a2009-04-16 09:38:45 +00005617NETWORKING DRIVERS
5618L: netdev@vger.kernel.org
5619W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005620Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005621T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5622T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005623S: Odd Fixes
5624F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005625F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005626F: include/linux/netdevice.h
5627F: include/linux/arcdevice.h
5628F: include/linux/etherdevice.h
5629F: include/linux/fcdevice.h
5630F: include/linux/fddidevice.h
5631F: include/linux/hippidevice.h
5632F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005633F: include/uapi/linux/if_*
5634F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005635
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005636NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005637M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005638M: Sony Chacko <sony.chacko@qlogic.com>
5639M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005640L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005641W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005642S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005643F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005644
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005645NFC SUBSYSTEM
5646M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5647M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5648M: Samuel Ortiz <sameo@linux.intel.com>
5649L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005650L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005651S: Maintained
5652F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005653F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005654F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005655F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005656F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005658NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005659M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005660L: linux-nfs@vger.kernel.org
5661W: http://client.linux-nfs.org
5662T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005664F: fs/lockd/
5665F: fs/nfs/
5666F: fs/nfs_common/
5667F: net/sunrpc/
5668F: include/linux/lockd/
5669F: include/linux/nfs*
5670F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005671F: include/uapi/linux/nfs*
5672F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005674NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005675M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005676L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005677W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005678T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005680F: Documentation/filesystems/nilfs2.txt
5681F: fs/nilfs2/
5682F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005683
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005685M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005688F: Documentation/scsi/NinjaSCSI.txt
5689F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
5691NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: GOTO Masanori <gotom@debian.or.jp>
5693M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005696F: Documentation/scsi/NinjaSCSI.txt
5697F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
Jon Masonfce8a7b2012-11-16 19:27:12 -07005699NTB DRIVER
5700M: Jon Mason <jon.mason@intel.com>
5701S: Supported
5702F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005703F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005704F: include/linux/ntb.h
5705
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005707M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005709W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005710T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005711S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005712F: Documentation/filesystems/ntfs.txt
5713F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005715NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005716M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005717L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005719F: drivers/video/riva/
5720F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
Matthew Wilcox79461682012-11-10 08:54:53 -05005722NVM EXPRESS DRIVER
5723M: Matthew Wilcox <willy@linux.intel.com>
5724L: linux-nvme@lists.infradead.org
5725T: git git://git.infradead.org/users/willy/linux-nvme.git
5726S: Supported
5727F: drivers/block/nvme.c
5728F: include/linux/nvme.h
5729
Tony Lindgrenf5525782009-05-28 13:23:53 -07005730OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005731M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005732L: linux-omap@vger.kernel.org
5733W: http://www.muru.com/linux/omap/
5734W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005735Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005736T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005737S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005738F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005739F: drivers/i2c/busses/i2c-omap.c
5740F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005741
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005742OMAP DEVICE TREE SUPPORT
5743M: Benoît Cousson <b-cousson@ti.com>
5744M: Tony Lindgren <tony@atomide.com>
5745L: linux-omap@vger.kernel.org
5746L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5747S: Maintained
5748F: arch/arm/boot/dts/*omap*
5749F: arch/arm/boot/dts/*am3*
5750
Tony Lindgrenf5525782009-05-28 13:23:53 -07005751OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005752M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005753L: linux-omap@vger.kernel.org
5754S: Maintained
5755F: arch/arm/*omap*/*clock*
5756
5757OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005758M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005759L: linux-omap@vger.kernel.org
5760S: Maintained
5761F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005762F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005763
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005764OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5765M: Rajendra Nayak <rnayak@ti.com>
5766M: Paul Walmsley <paul@pwsan.com>
5767L: linux-omap@vger.kernel.org
5768S: Maintained
5769F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5770F: arch/arm/mach-omap2/powerdomain44xx.c
5771F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5772F: arch/arm/mach-omap2/clockdomain44xx.c
5773
Tony Lindgrenf5525782009-05-28 13:23:53 -07005774OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005775M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005776M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005777L: alsa-devel@alsa-project.org (subscribers-only)
5778L: linux-omap@vger.kernel.org
5779S: Maintained
5780F: sound/soc/omap/
5781
5782OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005783M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005784L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005785L: linux-omap@vger.kernel.org
5786S: Maintained
5787F: drivers/video/omap/
5788
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005789OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005790M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005791L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005792L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005793S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005794F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005795F: Documentation/arm/OMAP/DSS
5796
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005797OMAP HARDWARE SPINLOCK SUPPORT
5798M: Ohad Ben-Cohen <ohad@wizery.com>
5799L: linux-omap@vger.kernel.org
5800S: Maintained
5801F: drivers/hwspinlock/omap_hwspinlock.c
5802F: arch/arm/mach-omap2/hwspinlock.c
5803
Tony Lindgrenf5525782009-05-28 13:23:53 -07005804OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005805M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005806L: linux-omap@vger.kernel.org
5807S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005808F: drivers/mmc/host/omap.c
5809
5810OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305811M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305812L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005813L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305814S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005815F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005816
5817OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005818M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005819S: Maintained
5820F: drivers/char/hw_random/omap-rng.c
5821
Paul Walmsleyf400c822010-12-06 19:08:54 -07005822OMAP HWMOD SUPPORT
5823M: Benoît Cousson <b-cousson@ti.com>
5824M: Paul Walmsley <paul@pwsan.com>
5825L: linux-omap@vger.kernel.org
5826S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005827F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005828
5829OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5830M: Benoît Cousson <b-cousson@ti.com>
5831L: linux-omap@vger.kernel.org
5832S: Maintained
5833F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5834
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005835OMAP IMAGE SIGNAL PROCESSOR (ISP)
5836M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5837L: linux-media@vger.kernel.org
5838S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005839F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005840
Tony Lindgrenf5525782009-05-28 13:23:53 -07005841OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005842M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005843L: linux-usb@vger.kernel.org
5844L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005845T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005846S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005847F: drivers/usb/*/*omap*
5848F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005849
Kevin Hilman6d994712012-07-16 10:05:07 -07005850OMAP GPIO DRIVER
5851M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005852M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005853L: linux-omap@vger.kernel.org
5854S: Maintained
5855F: drivers/gpio/gpio-omap.c
5856
Bob Copeland0ad122d2008-07-25 19:45:18 -07005857OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005858M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005859L: linux-karma-devel@lists.sourceforge.net
5860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005861F: Documentation/filesystems/omfs.txt
5862F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005863
Harald Weltec1986ee2005-11-13 16:06:29 -08005864OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005865M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005867F: drivers/char/pcmcia/cm4000_cs.c
5868F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005869F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005870
Harald Welte77c44ab2005-11-13 16:06:26 -08005871OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005872M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005874F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005875
Jonathan Corbet77d51402007-03-22 19:44:17 -03005876OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005877M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005878L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005879T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005880S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005881F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005882
Thomas Gleixner431bca72007-05-02 09:31:35 +02005883ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005884M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005885L: linux-mtd@lists.infradead.org
5886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005887F: drivers/mtd/onenand/
5888F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005889
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005891M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892L: osst-users@lists.sourceforge.net
5893L: linux-scsi@vger.kernel.org
5894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005895F: drivers/scsi/osst*
5896F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005898OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005899M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005900L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005902F: Documentation/i2c/busses/i2c-ocores
5903F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005904
Grant Likely860c44c2009-10-26 16:49:49 -07005905OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01005906M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05005907M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005908L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005909W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005910T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005911S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005912F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005913F: drivers/of
5914F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005915F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005916K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005917K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005918
Jonas Bonn19f9d392011-06-04 22:00:38 +03005919OPENRISC ARCHITECTURE
5920M: Jonas Bonn <jonas@southpole.se>
5921W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005922L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005923S: Maintained
5924T: git git://openrisc.net/~jonas/linux
5925F: arch/openrisc
5926
Jesse Grossccb13522011-10-25 19:26:31 -07005927OPENVSWITCH
5928M: Jesse Gross <jesse@nicira.com>
5929L: dev@openvswitch.org
5930W: http://openvswitch.org
5931T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5932S: Maintained
5933F: net/openvswitch/
5934
Clemens Ladischaf399172011-01-10 16:32:54 +01005935OPL4 DRIVER
5936M: Clemens Ladisch <clemens@ladisch.de>
5937L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5938T: git git://git.alsa-project.org/alsa-kernel.git
5939S: Maintained
5940F: sound/drivers/opl4/
5941
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005943M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944L: oprofile-list@lists.sf.net
5945S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005946F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005947F: arch/*/oprofile/
5948F: drivers/oprofile/
5949F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005951ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005952M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005953M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005954L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5955W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005956T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005957S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005958F: Documentation/filesystems/ocfs2.txt
5959F: Documentation/filesystems/dlmfs.txt
5960F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005961
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005963L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005964W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005965W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005966S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005967F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005969OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005970M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005971M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005972L: osd-dev@open-osd.org
5973W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005974T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005975S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005976F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005977F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005978F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005979
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005980P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005981M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005982L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005983W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005985F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005986
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005987PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005988M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005989L: netdev@vger.kernel.org
5990S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005991F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005992
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005993PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005994M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005995L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005997F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005998
Steffen Klassert48fc2672010-08-13 10:10:46 -04005999PADATA PARALLEL EXECUTION MECHANISM
6000M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006001L: linux-crypto@vger.kernel.org
6002S: Maintained
6003F: kernel/padata.c
6004F: include/linux/padata.h
6005F: Documentation/padata.txt
6006
Harald Welte709ee532008-09-23 17:46:57 +02006007PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006009L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006011F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006012
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006013PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006014M: David Howells <dhowells@redhat.com>
6015M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006016L: linux-am33-list@redhat.com (moderated for non-subscribers)
6017W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006019F: Documentation/mn10300/
6020F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006021
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006023L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006024S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006025F: drivers/parport/
6026F: include/linux/parport*.h
6027F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006028F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006030PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006031M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006032M: Chris Wright <chrisw@sous-sol.org>
6033M: Alok Kataria <akataria@vmware.com>
6034M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006035L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006037F: Documentation/ia64/paravirt_ops.txt
6038F: arch/*/kernel/paravirt*
6039F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006040
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006042M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006043L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044W: http://www.torque.net/linux-pp.html
6045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006046F: Documentation/blockdev/paride.txt
6047F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
6049PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006050M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006051M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006052L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006054Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006055T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006057F: arch/parisc/
6058F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059
Jim Cromie1662d322006-10-06 00:43:59 -07006060PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006061M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006062L: lm-sensors@lm-sensors.org
6063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006064F: Documentation/hwmon/pc87360
6065F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006066
6067PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006068M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006070F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006071
Jean Delvare1ad107f2010-08-14 21:09:00 +02006072PC87427 HARDWARE MONITORING DRIVER
6073M: Jean Delvare <khali@linux-fr.org>
6074L: lm-sensors@lm-sensors.org
6075S: Maintained
6076F: Documentation/hwmon/pc87427
6077F: drivers/hwmon/pc87427.c
6078
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006079PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006080M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006081S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006082F: drivers/leds/leds-pca9532.c
6083F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006084
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006085PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006086M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006087L: linux-i2c@vger.kernel.org
6088S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006089F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006090
Khalid Aziz3971dae2012-04-12 12:49:13 -07006091PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006092M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006093S: Maintained
6094F: drivers/firmware/pcdp.*
6095
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006096PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006097M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006098L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006099S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006100F: Documentation/PCI/pci-error-recovery.txt
6101F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006102
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006104M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006105L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006106Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006107T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006109F: Documentation/PCI/
6110F: drivers/pci/
6111F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006114P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006115L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006116W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006117T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006119F: Documentation/pcmcia/
6120F: drivers/pcmcia/
6121F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
6123PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006124M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006125L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006127F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128
Steffen Klassert48fc2672010-08-13 10:10:46 -04006129PCRYPT PARALLEL CRYPTO ENGINE
6130M: Steffen Klassert <steffen.klassert@secunet.com>
6131L: linux-crypto@vger.kernel.org
6132S: Maintained
6133F: crypto/pcrypt.c
6134F: include/crypto/pcrypt.h
6135
Tejun Heoe72df0b2010-12-10 17:02:49 +01006136PER-CPU MEMORY ALLOCATOR
6137M: Tejun Heo <tj@kernel.org>
6138M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006139T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6140S: Maintained
6141F: include/linux/percpu*.h
6142F: mm/percpu*.c
6143F: arch/*/include/asm/percpu.h
6144
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006145PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006146M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006148F: include/linux/delayacct.h
6149F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006150
Ingo Molnar57c0c152009-09-21 12:20:38 +02006151PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006152M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6153M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006154M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006155M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006156T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006157S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006158F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006159F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006160F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006161F: arch/*/kernel/perf_event*.c
6162F: arch/*/kernel/*/perf_event*.c
6163F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006164F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006165F: arch/*/kernel/perf_callchain.c
6166F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006167
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006168PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006169M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006170L: linux-abi-devel@lists.sourceforge.net
6171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006172F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006173F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006174
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006175PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006176M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006177S: Supported
6178F: Documentation/networking/phonet.txt
6179F: include/linux/phonet.h
6180F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006181F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006182F: net/phonet/
6183
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006185M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186L: linux-mtd@lists.infradead.org
6187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006188F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189
Bruno Prémontefdbb102012-07-30 21:39:03 +02006190PICOLCD HID DRIVER
6191M: Bruno Prémont <bonbons@linux-vserver.org>
6192L: linux-input@vger.kernel.org
6193S: Maintained
6194F: drivers/hid/hid-picolcd*
6195
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006196PICOXCELL SUPPORT
6197M: Jamie Iles <jamie@jamieiles.com>
6198L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6199T: git git://github.com/jamieiles/linux-2.6-ji.git
6200S: Supported
6201F: arch/arm/mach-picoxcell
6202F: drivers/*/picoxcell*
6203F: drivers/*/*/picoxcell*
6204
Linus Walleij2744e8a2011-05-02 20:50:54 +02006205PIN CONTROL SUBSYSTEM
6206M: Linus Walleij <linus.walleij@linaro.org>
6207S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006208F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006209F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006210
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006211PIN CONTROLLER - ATMEL AT91
6212M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6213L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6214S: Maintained
6215F: drivers/pinctrl/pinctrl-at91.c
6216
Viresh Kumardeda8282012-03-28 22:27:07 +05306217PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006218M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306219L: spear-devel@list.st.com
6220L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6221W: http://www.st.com/spear
6222S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006223F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306224
Peter Osterlund249a6772005-09-27 21:45:30 -07006225PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006226M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006228F: drivers/block/pktcdvd.c
6229F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006230F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006231
GuanXuetaob31d8272011-01-16 00:35:49 +08006232PKUNITY SOC DRIVERS
6233M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6234W: http://mprc.pku.edu.cn/~guanxuetao/linux
6235S: Maintained
6236T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6237F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006238F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006239F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006240F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006241
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006242PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006243M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006244L: lm-sensors@lm-sensors.org
6245W: http://www.lm-sensors.org/
6246W: http://www.roeck-us.net/linux/drivers/
6247T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6248S: Maintained
6249F: Documentation/hwmon/pmbus
6250F: drivers/hwmon/pmbus/
6251F: include/linux/i2c/pmbus.h
6252
Anil Ravindranath89a36812009-08-25 17:35:18 -07006253PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006254M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006255L: linux-scsi@vger.kernel.org
6256W: http://www.pmc-sierra.com/
6257S: Supported
6258F: drivers/scsi/pmcraid.*
6259
jack wangdbf9bfe2009-10-14 16:19:21 +08006260PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006261M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006262M: lindar_liu@usish.com
6263L: linux-scsi@vger.kernel.org
6264S: Supported
6265F: drivers/scsi/pm8001/
6266
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006268M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006269T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006271F: fs/timerfd.c
6272F: include/linux/timer*
6273F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
Anton Vorontsov3be86142007-07-15 04:43:36 +04006275POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006276M: Anton Vorontsov <cbou@mail.ru>
6277M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006278T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006280F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006281F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006282
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006284M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006285M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006287F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
Vitaly Wool999445d2007-01-04 13:07:03 +01006289PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006290M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006291L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006293F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006294
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006296M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297L: linux-ppp@vger.kernel.org
6298S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006299F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
6301PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006302M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006304F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006305F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306
6307PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006308M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006310F: drivers/net/ppp/pppoe.c
6311F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312
James Chapmana6d23702007-06-27 15:53:17 -07006313PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006314M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006315S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006316F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006317F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006318F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006319
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006320PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006322W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6323L: linuxpps@ml.enneenne.com (subscribers-only)
6324S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006325F: Documentation/pps/
6326F: drivers/pps/
6327F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006328
Harry Wei71a6d0a2011-05-11 15:13:33 -07006329PPTP DRIVER
6330M: Dmitry Kozlov <xeb@mail.ru>
6331L: netdev@vger.kernel.org
6332S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006333F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006334W: http://sourceforge.net/projects/accel-pptp
6335
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006337M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338L: kpreempt-tech@lists.sourceforge.net
6339W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6340S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006341F: Documentation/preempt-locking.txt
6342F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343
6344PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006345M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006346L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006347W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006348S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006349F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006351PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006352M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006353L: linux-ide@vger.kernel.org
6354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006355F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006356
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006357PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006358M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006359L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006360L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006361S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006362F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006363
Geoff Levandf58a9d12006-11-23 00:46:51 +01006364PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006365M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006366L: linuxppc-dev@lists.ozlabs.org
6367L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006369F: arch/powerpc/boot/ps3*
6370F: arch/powerpc/include/asm/lv1call.h
6371F: arch/powerpc/include/asm/ps3*.h
6372F: arch/powerpc/platforms/ps3/
6373F: drivers/*/ps3*
6374F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006375F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006376F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006377F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006378
Jim Pariscffb4add2009-01-06 11:32:10 +00006379PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006380M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006381L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006382S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006383F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006384
Anton Vorontsov8defe592012-08-03 18:07:20 -07006385PSTORE FILESYSTEM
6386M: Anton Vorontsov <cbouatmailru@gmail.com>
6387M: Colin Cross <ccross@android.com>
6388M: Kees Cook <keescook@chromium.org>
6389M: Tony Luck <tony.luck@intel.com>
6390S: Maintained
6391T: git git://git.infradead.org/users/cbou/linux-pstore.git
6392F: fs/pstore/
6393F: include/linux/pstore*
6394F: drivers/firmware/efivars.c
6395F: drivers/acpi/apei/erst.c
6396
Richard Cochran7fbc4152012-03-10 01:55:53 +00006397PTP HARDWARE CLOCK SUPPORT
6398M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006399L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006400S: Maintained
6401W: http://linuxptp.sourceforge.net/
6402F: Documentation/ABI/testing/sysfs-ptp
6403F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006404F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006405F: drivers/net/phy/dp83640*
6406F: drivers/ptp/*
6407F: include/linux/ptp_cl*
6408
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006409PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006410M: Roland McGrath <roland@redhat.com>
6411M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006412S: Maintained
6413F: include/asm-generic/syscall.h
6414F: include/linux/ptrace.h
6415F: include/linux/regset.h
6416F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006417F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006418F: kernel/ptrace.c
6419
Michael Krufky83202042006-07-03 00:24:18 -07006420PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006421M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006422L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006423L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006424W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006425T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006427F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006428F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006429
Hans de Goede39532e62012-11-04 17:05:59 -03006430PWC WEBCAM DRIVER
6431M: Hans de Goede <hdegoede@redhat.com>
6432L: linux-media@vger.kernel.org
6433T: git git://linuxtv.org/media_tree.git
6434S: Maintained
6435F: drivers/media/usb/pwc/*
6436
Thierry Reding200efed2012-03-27 13:16:18 +02006437PWM SUBSYSTEM
6438M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006439L: linux-kernel@vger.kernel.org
6440S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006441W: http://gitorious.org/linux-pwm
6442T: git git://gitorious.org/linux-pwm/linux-pwm.git
6443F: Documentation/pwm.txt
6444F: Documentation/devicetree/bindings/pwm/
6445F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006446F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006447F: drivers/video/backlight/pwm_bl.c
6448F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006449
Eric Miao30ec2612008-06-12 15:21:41 -07006450PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006451M: Eric Miao <eric.y.miao@gmail.com>
6452M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006453M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006454L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006455T: git git://github.com/hzhuang1/linux.git
6456T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006458F: arch/arm/mach-pxa/
6459F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006460F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006461F: drivers/usb/gadget/pxa2*
6462F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006463F: sound/arm/pxa*
6464F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006466MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006467M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006468M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006469L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006470T: git git://github.com/hzhuang1/linux.git
6471T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006472S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006473F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006474
Pierre Ossman272f1332007-05-14 21:25:26 +02006475PXA MMCI DRIVER
6476S: Orphan
6477
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006478PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006479M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006480L: rtc-linux@googlegroups.com
6481S: Maintained
6482
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006483QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006484M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006485L: linux-rdma@vger.kernel.org
6486S: Supported
6487F: drivers/infiniband/hw/qib/
6488
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006489QLOGIC QLA1280 SCSI DRIVER
6490M: Michael Reed <mdr@sgi.com>
6491L: linux-scsi@vger.kernel.org
6492S: Maintained
6493F: drivers/scsi/qla1280.[ch]
6494
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006496M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006497M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498L: linux-scsi@vger.kernel.org
6499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006500F: Documentation/scsi/LICENSE.qla2xxx
6501F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502
Ravi Anand883c98f2010-04-28 11:45:49 +05306503QLOGIC QLA4XXX iSCSI DRIVER
6504M: Ravi Anand <ravi.anand@qlogic.com>
6505M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6506M: iscsi-driver@qlogic.com
6507L: linux-scsi@vger.kernel.org
6508S: Supported
6509F: drivers/scsi/qla4xxx/
6510
Ron Mercer5a4faa872006-07-25 00:40:21 -07006511QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006512M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006513M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006514M: linux-driver@qlogic.com
6515L: netdev@vger.kernel.org
6516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006517F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006518F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006519
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006520QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006521M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6522M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006523M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006524M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006525M: linux-driver@qlogic.com
6526L: netdev@vger.kernel.org
6527S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006528F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006529
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006530QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006531M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006532M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006533M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006534M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006535L: netdev@vger.kernel.org
6536S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006537F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006538
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006540M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541W: http://www.alarsen.net/linux/qnx4fs/
6542S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006543F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006544F: include/uapi/linux/qnx4_fs.h
6545F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546
Antti Palosaari91952bc2012-10-01 12:28:46 -03006547QT1010 MEDIA DRIVER
6548M: Antti Palosaari <crope@iki.fi>
6549L: linux-media@vger.kernel.org
6550W: http://linuxtv.org/
6551W: http://palosaari.fi/linux/
6552Q: http://patchwork.linuxtv.org/project/linux-media/list/
6553T: git git://linuxtv.org/anttip/media_tree.git
6554S: Maintained
6555F: drivers/media/tuners/qt1010*
6556
Richard Kuo4f4567c2011-10-31 18:56:38 -05006557QUALCOMM HEXAGON ARCHITECTURE
6558M: Richard Kuo <rkuo@codeaurora.org>
6559L: linux-hexagon@vger.kernel.org
6560S: Supported
6561F: arch/hexagon/
6562
Hans Verkuil35e35402012-11-23 07:02:29 -03006563QUICKCAM PARALLEL PORT WEBCAMS
6564M: Hans Verkuil <hverkuil@xs4all.nl>
6565L: linux-media@vger.kernel.org
6566T: git git://linuxtv.org/media_tree.git
6567W: http://linuxtv.org
6568S: Odd Fixes
6569F: drivers/media/parport/*-qcam*
6570
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006571RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006572M: Yehuda Sadeh <yehuda@inktank.com>
6573M: Sage Weil <sage@inktank.com>
6574M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006575M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006576W: http://ceph.com/
6577T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006578S: Supported
6579F: drivers/block/rbd.c
6580F: drivers/block/rbd_types.h
6581
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006583M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006584L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006586F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006587F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588
Hans de Goedec6c9b342012-11-04 17:03:58 -03006589RADIOSHARK RADIO DRIVER
6590M: Hans de Goede <hdegoede@redhat.com>
6591L: linux-media@vger.kernel.org
6592T: git git://linuxtv.org/media_tree.git
6593S: Maintained
6594F: drivers/media/radio/radio-shark.c
6595
6596RADIOSHARK2 RADIO DRIVER
6597M: Hans de Goede <hdegoede@redhat.com>
6598L: linux-media@vger.kernel.org
6599T: git git://linuxtv.org/media_tree.git
6600S: Maintained
6601F: drivers/media/radio/radio-shark2.c
6602F: drivers/media/radio/radio-tea5777.c
6603
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006605M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006606L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006608F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609
Randy Dunlape7839f22008-10-12 16:11:45 -07006610RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006611P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006612M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006613M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006614M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006615L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006616L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006617W: http://rt2x00.serialmonkey.com/
6618S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006619T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006620F: drivers/net/wireless/rt2x00/
6621
Nick Piggin9db55792008-02-08 04:19:49 -08006622RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006623M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006625F: Documentation/blockdev/ramdisk.txt
6626F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006627
Matt Mackall9e95ce22005-04-16 15:25:56 -07006628RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006629M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006631F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006632
Matt Porter394b7012005-11-07 01:00:15 -08006633RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006634M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006635M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006637F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006638
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006639RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006640L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006641S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006642F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006643
6644RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006645M: Josh Triplett <josh@freedesktop.org>
6646M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006647S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006648T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006649F: Documentation/RCU/torture.txt
6650F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006651
Florian Fainellic1f766b2008-02-06 22:39:44 +01006652RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006653M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006654S: Maintained
6655
Florian Fainellidb17f392007-12-19 11:30:30 +01006656RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006657M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006658L: netdev@vger.kernel.org
6659S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006660F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006661
Andy Grovera09ed662009-02-24 15:30:41 +00006662RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006663M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006664L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006665S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006666F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006667
Josh Triplett595182b2006-10-04 02:17:21 -07006668READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006669M: Dipankar Sarma <dipankar@in.ibm.com>
6670M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006671W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006672S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006673T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006674F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006675X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006676F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006677F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006678X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006679
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006680REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006681M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006682L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006683Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006685F: Documentation/rtc.txt
6686F: drivers/rtc/
6687F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006688F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006689
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006691L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006693F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694
Mark Brownb83a3132011-05-11 19:59:58 +02006695REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006696M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006697T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6698S: Supported
6699F: drivers/base/regmap/
6700F: include/linux/regmap.h
6701
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006702REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6703M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006704T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006705S: Maintained
6706F: drivers/remoteproc/
6707F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006708F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006709
Ivo van Doorne08976452008-04-12 19:23:55 +02006710RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006711M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006712L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006713W: http://wireless.kernel.org/
6714T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6715T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006716S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006717F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006718F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006719
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006720RICOH SMARTMEDIA/XD DRIVER
6721M: Maxim Levitsky <maximlevitsky@gmail.com>
6722S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006723F: drivers/mtd/nand/r852.c
6724F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006725
Maxim Levitsky92634122011-03-25 01:56:59 -07006726RICOH R5C592 MEMORYSTICK DRIVER
6727M: Maxim Levitsky <maximlevitsky@gmail.com>
6728S: Maintained
6729F: drivers/memstick/host/r592.*
6730
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731ROCKETPORT DRIVER
6732P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733W: http://www.comtrol.com
6734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006735F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006736F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
6738ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006739M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006741W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006743F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006744F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006745F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746
Antti Palosaari91952bc2012-10-01 12:28:46 -03006747RTL2830 MEDIA DRIVER
6748M: Antti Palosaari <crope@iki.fi>
6749L: linux-media@vger.kernel.org
6750W: http://linuxtv.org/
6751W: http://palosaari.fi/linux/
6752Q: http://patchwork.linuxtv.org/project/linux-media/list/
6753T: git git://linuxtv.org/anttip/media_tree.git
6754S: Maintained
6755F: drivers/media/dvb-frontends/rtl2830*
6756
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006757RTL2832 MEDIA DRIVER
6758M: Antti Palosaari <crope@iki.fi>
6759L: linux-media@vger.kernel.org
6760W: http://linuxtv.org/
6761W: http://palosaari.fi/linux/
6762Q: http://patchwork.linuxtv.org/project/linux-media/list/
6763T: git git://linuxtv.org/anttip/media_tree.git
6764S: Maintained
6765F: drivers/media/dvb-frontends/rtl2832*
6766
Larry Finger59840482008-11-12 17:13:09 -06006767RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006768M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006769L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006770W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006771T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006772S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006773F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006774
Larry Finger59840482008-11-12 17:13:09 -06006775RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006776M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006777M: Hin-Tak Leung <htl10@users.sourceforge.net>
6778M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006779L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006780W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006781T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006782S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006783F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006784
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006785RTL8192CE WIRELESS DRIVER
6786M: Larry Finger <Larry.Finger@lwfinger.net>
6787M: Chaoming Li <chaoming_li@realsil.com.cn>
6788L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006789W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006790T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6791S: Maintained
6792F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006793F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006794
6795S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006796M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006797L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006799F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006800
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801S390
Joe Perches8b58be82009-07-29 15:04:30 -07006802M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6803M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006805L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006806W: http://www.ibm.com/developerworks/linux/linux390/
6807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006808F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006809F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006810F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006811F: Documentation/s390/
6812F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006813
6814S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006815M: Ursula Braun <ursula.braun@de.ibm.com>
6816M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006817M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006818L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006819W: http://www.ibm.com/developerworks/linux/linux390/
6820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006821F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006822
Felix Beckfeed9b62009-03-26 15:24:23 +01006823S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006824M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006825M: linux390@de.ibm.com
6826L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006827W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006828S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006829F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006830
Heiko Carstens5238da42006-02-11 17:56:01 -08006831S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006832M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006833M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006834L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006835W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006837F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838
Ursula Braundd96df22007-09-19 13:09:02 +02006839S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006840M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006841M: linux390@de.ibm.com
6842L: linux-s390@vger.kernel.org
6843W: http://www.ibm.com/developerworks/linux/linux390/
6844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006845F: drivers/s390/net/*iucv*
6846F: include/net/iucv/
6847F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006848
Ben Dooks4dde7f72008-06-30 22:40:38 +01006849S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006850M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006853F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006854
Hans Verkuil1f15a222012-11-23 07:45:29 -03006855SAA6588 RDS RECEIVER DRIVER
6856M: Hans Verkuil <hverkuil@xs4all.nl>
6857L: linux-media@vger.kernel.org
6858T: git git://linuxtv.org/media_tree.git
6859W: http://linuxtv.org
6860S: Odd Fixes
6861F: drivers/media/i2c/saa6588*
6862
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006863SAA7134 VIDEO4LINUX DRIVER
6864M: Mauro Carvalho Chehab <mchehab@redhat.com>
6865L: linux-media@vger.kernel.org
6866W: http://linuxtv.org
6867T: git git://linuxtv.org/media_tree.git
6868S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006869F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006870F: drivers/media/pci/saa7134/
6871
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006873M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006874L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006875T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006877F: drivers/media/common/saa7146/
6878F: drivers/media/pci/saa7146/
6879F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880
Corentin Chary92304a42011-12-05 12:38:35 -05006881SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006882M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006883L: platform-driver-x86@vger.kernel.org
6884S: Maintained
6885F: drivers/platform/x86/samsung-laptop.c
6886
Mark Brown4a109cc2010-09-24 10:50:46 +01006887SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006888M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006889L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6890S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006891F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006892
Jingoo Han0d89a282011-12-19 11:09:35 +09006893SAMSUNG FRAMEBUFFER DRIVER
6894M: Jingoo Han <jg1.han@samsung.com>
6895L: linux-fbdev@vger.kernel.org
6896S: Maintained
6897F: drivers/video/s3c-fb.c
6898
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006899SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6900M: Sangbeom Kim <sbkim73@samsung.com>
6901L: linux-kernel@vger.kernel.org
6902S: Supported
6903F: drivers/mfd/sec*.c
6904F: drivers/regulator/s2m*.c
6905F: drivers/regulator/s5m*.c
6906F: drivers/rtc/rtc-sec.c
6907F: include/linux/mfd/samsung/
6908
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006909SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6910M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6911L: linux-media@vger.kernel.org
6912L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6913S: Maintained
6914F: drivers/media/platform/s3c-camif/
6915F: include/media/s3c_camif.h
6916
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006917SAMSUNG S5C73M3 CAMERA DRIVER
6918M: Kyungmin Park <kyungmin.park@samsung.com>
6919M: Andrzej Hajda <a.hajda@samsung.com>
6920L: linux-media@vger.kernel.org
6921S: Supported
6922F: drivers/media/i2c/s5c73m3/*
6923
Alan Coxca749e22011-03-18 13:56:14 +00006924SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006925M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006926L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006927S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006928F: drivers/tty/serial
6929
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306930SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006931M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306932S: Maintained
6933F: include/linux/dw_dmac.h
6934F: drivers/dma/dw_dmac_regs.h
6935F: drivers/dma/dw_dmac.c
6936
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006937SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6938M: Seungwon Jeon <tgih.jun@samsung.com>
6939M: Jaehoon Chung <jh80.chung@samsung.com>
6940L: linux-mmc@vger.kernel.org
6941S: Maintained
6942F: include/linux/mmc/dw_mmc.h
6943F: drivers/mmc/host/dw_mmc*
6944
Thomas Gleixner88606e82010-12-14 21:37:13 +01006945TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006946M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006947M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006948T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006949S: Supported
6950F: include/linux/clocksource.h
6951F: include/linux/time.h
6952F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006953F: include/uapi/linux/time.h
6954F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006955F: kernel/time/clocksource.c
6956F: kernel/time/time*.c
6957F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006958F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006959
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006960TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006961M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006962M: Hans Verkuil <hverkuil@xs4all.nl>
6963S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006964F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006965
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006967M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006969F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970
6971SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006972M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006973M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006974T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006976F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006977F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006978F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979
Chen Liqin6bcf6732009-06-13 15:24:33 +08006980SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006981M: Chen Liqin <liqin.chen@sunplusct.com>
6982M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006983W: http://www.sunplusct.com
6984S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006985F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006986
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006988M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989L: linux-scsi@vger.kernel.org
6990W: http://www.kernel.dk
6991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006992F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993
Roland Dreierfb50a832010-10-07 09:54:53 -07006994SCSI RDMA PROTOCOL (SRP) INITIATOR
6995M: David Dillow <dillowda@ornl.gov>
6996L: linux-rdma@vger.kernel.org
6997S: Supported
6998W: http://www.openfabrics.org
6999Q: http://patchwork.kernel.org/project/linux-rdma/list/
7000T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7001F: drivers/infiniband/ulp/srp/
7002F: include/scsi/srp.h
7003
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007005M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006L: linux-scsi@vger.kernel.org
7007W: http://www.torque.net/sg
7008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007009F: drivers/scsi/sg.c
7010F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011
7012SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007013M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007015T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7016T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7017T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007019F: drivers/scsi/
7020F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021
7022SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007023M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024L: linux-scsi@vger.kernel.org
7025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007026F: Documentation/scsi/st.txt
7027F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028
7029SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007030M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007031M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007032L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007033W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007035F: Documentation/networking/sctp.txt
7036F: include/linux/sctp.h
7037F: include/net/sctp/
7038F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039
7040SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007041M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007042S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007043F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007044F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007045F: drivers/watchdog/scx200_wdt.c
7046F: drivers/i2c/busses/scx200*
7047F: drivers/mtd/maps/scx200_docflash.c
7048F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007049
7050SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007051M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007053F: drivers/char/scx200_gpio.c
7054F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007055
7056SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007057M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007059F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060
Sascha Sommer6a369132008-07-15 14:21:29 +02007061SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007062M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007063L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007065F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007066
Randy Dunlape7839f22008-10-12 16:11:45 -07007067SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007068M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007069L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007070T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7071S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007072F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007073F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007074
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007075SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007076M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007077L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007078L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007080F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081
Ben Dooks0d1bb412009-06-14 13:52:37 +01007082SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007083M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007084L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007085S: Maintained
7086F: drivers/mmc/host/sdhci-s3c.c
7087
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007088SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007089M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007090L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007091L: linux-mmc@vger.kernel.org
7092S: Maintained
7093F: drivers/mmc/host/sdhci-spear.c
7094
James Morris8711cca2008-12-04 03:19:45 +11007095SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007096M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007097L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007098T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007099W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007100S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007101F: security/
James Morris8711cca2008-12-04 03:19:45 +11007102
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007104M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105S: Supported
7106
7107SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007108M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007109M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007110M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007111L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007112W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007113T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007115F: include/linux/selinux*
7116F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007117F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118
John Johansenc1c124e2010-07-29 14:48:09 -07007119APPARMOR SECURITY MODULE
7120M: John Johansen <john.johansen@canonical.com>
7121L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7122W: apparmor.wiki.kernel.org
7123T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7124S: Supported
7125F: security/apparmor/
7126
Jiri Slabycef2cf02007-05-08 00:31:45 -07007127SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007128M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007130F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007131F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007132
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007133SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007134M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007136T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007138F: drivers/ata/
7139F: include/linux/ata.h
7140F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307142SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007143M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007144L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007145W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007146S: Supported
7147F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307148
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007149SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007150M: Sathya Perla <sathya.perla@emulex.com>
7151M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7152M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007153L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007154W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007155S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007156F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007157
Ben Hutchings8ceee662008-04-27 12:55:59 +01007158SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007159M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007160M: Ben Hutchings <bhutchings@solarflare.com>
7161L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007162S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007163F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007164
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007165SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007166M: Dimitri Sivanich <sivanich@sgi.com>
7167M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007169F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007170
7171SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007172M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007173L: linux-ia64@vger.kernel.org
7174S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007175F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007176F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007177F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007178
Linus Torvalds1da177e2005-04-16 15:20:36 -07007179SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007180M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181L: linux-visws-devel@lists.sf.net
7182W: http://linux-visws.sf.net
7183S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007184F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185
Jack Steiner75312612008-08-15 00:40:42 -07007186SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007187M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007189F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007190
Hans Verkuil49cc6292012-11-30 07:13:29 -03007191SI470X FM RADIO RECEIVER I2C DRIVER
7192M: Hans Verkuil <hverkuil@xs4all.nl>
7193L: linux-media@vger.kernel.org
7194T: git git://linuxtv.org/media_tree.git
7195W: http://linuxtv.org
7196S: Odd Fixes
7197F: drivers/media/radio/si470x/radio-si470x-i2c.c
7198
7199SI470X FM RADIO RECEIVER USB DRIVER
7200M: Hans Verkuil <hverkuil@xs4all.nl>
7201L: linux-media@vger.kernel.org
7202T: git git://linuxtv.org/media_tree.git
7203W: http://linuxtv.org
7204S: Maintained
7205F: drivers/media/radio/si470x/radio-si470x-common.c
7206F: drivers/media/radio/si470x/radio-si470x.h
7207F: drivers/media/radio/si470x/radio-si470x-usb.c
7208
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007209SI4713 FM RADIO TRANSMITTER I2C DRIVER
7210M: Eduardo Valentin <edubezval@gmail.com>
7211L: linux-media@vger.kernel.org
7212T: git git://linuxtv.org/media_tree.git
7213W: http://linuxtv.org
7214S: Odd Fixes
7215F: drivers/media/radio/si4713-i2c.?
7216
7217SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7218M: Eduardo Valentin <edubezval@gmail.com>
7219L: linux-media@vger.kernel.org
7220T: git git://linuxtv.org/media_tree.git
7221W: http://linuxtv.org
7222S: Odd Fixes
7223F: drivers/media/radio/radio-si4713.h
7224
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007225SIANO DVB DRIVER
7226M: Mauro Carvalho Chehab <mchehab@redhat.com>
7227L: linux-media@vger.kernel.org
7228W: http://linuxtv.org
7229T: git git://linuxtv.org/media_tree.git
7230S: Odd fixes
7231F: drivers/media/common/siano/
7232F: drivers/media/dvb/siano/
7233F: drivers/media/usb/siano/
7234F: drivers/media/mmc/siano
7235
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007236SH_VEU V4L2 MEM2MEM DRIVER
7237M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7238L: linux-media@vger.kernel.org
7239S: Maintained
7240F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007241
7242SH_VOU V4L2 OUTPUT DRIVER
7243M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7244L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007245S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007246F: drivers/media/platform/sh_vou.c
7247F: include/media/sh_vou.h
7248
Len Brown6349d992009-08-14 15:07:14 -04007249SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007250M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007251L: sfi-devel@simplefirmware.org
7252W: http://simplefirmware.org/
7253T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007254S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007255F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007256F: drivers/sfi/
7257F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007258
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259SIMTEC EB110ATX (Chalice CATS)
7260P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007261P: Vincent Sanders <vince@simtec.co.uk>
7262M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263W: http://www.simtec.co.uk/products/EB110ATX/
7264S: Supported
7265
7266SIMTEC EB2410ITX (BAST)
7267P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007268P: Vincent Sanders <vince@simtec.co.uk>
7269M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270W: http://www.simtec.co.uk/products/EB2410ITX/
7271S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007272F: arch/arm/mach-s3c2410/mach-bast.c
7273F: arch/arm/mach-s3c2410/bast-ide.c
7274F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007276TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007277M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007278M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307279L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307280T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007281Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007282S: Supported
7283F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007284F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007285
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007286TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007287M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007288L: linux-media@vger.kernel.org
7289L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7290W: http://linuxtv.org/
7291Q: http://patchwork.linuxtv.org/project/linux-media/list/
7292T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007293S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007294F: drivers/media/platform/davinci/
7295F: include/media/davinci/
7296
Francois Romieu92aab3c2005-07-30 13:11:18 +02007297SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007298M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007299L: netdev@vger.kernel.org
7300S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007301F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007302
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007304M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007306L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007308F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309
7310SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007311M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007314F: Documentation/fb/sisfb.txt
7315F: drivers/video/sis/
7316F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317
7318SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007319M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320W: http://www.winischhofer.at/linuxsisusbvga.shtml
7321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007322F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007324SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007325M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007326M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007327M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007328L: linux-mm@kvack.org
7329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007330F: include/linux/sl?b*.h
7331F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007332
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007333SLEEPABLE READ-COPY UPDATE (SRCU)
7334M: Lai Jiangshan <laijs@cn.fujitsu.com>
7335M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7336W: http://www.rdrop.com/users/paulmck/RCU/
7337S: Supported
7338T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7339F: include/linux/srcu*
7340F: kernel/srcu*
7341
Casey Schaufler66372842012-05-23 18:34:52 -07007342SMACK SECURITY MODULE
7343M: Casey Schaufler <casey@schaufler-ca.com>
7344L: linux-security-module@vger.kernel.org
7345W: http://schaufler-ca.com
7346T: git git://git.gitorious.org/smack-next/kernel.git
7347S: Maintained
7348F: Documentation/security/Smack.txt
7349F: security/smack/
7350
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007352M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007353S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007354F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355
Sakari Ailuse8e31622012-11-12 18:14:39 -03007356SMIA AND SMIA++ IMAGE SENSOR DRIVER
7357M: Sakari Ailus <sakari.ailus@iki.fi>
7358L: linux-media@vger.kernel.org
7359S: Maintained
7360F: drivers/media/i2c/smiapp
7361F: include/media/smiapp.h
7362F: drivers/media/i2c/smiapp-pll.c
7363F: drivers/media/i2c/smiapp-pll.h
7364
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007365SMM665 HARDWARE MONITOR DRIVER
7366M: Guenter Roeck <linux@roeck-us.net>
7367L: lm-sensors@lm-sensors.org
7368S: Maintained
7369F: Documentation/hwmon/smm665
7370F: drivers/hwmon/smm665.c
7371
Steve Glendinning9df73052010-08-14 21:08:54 +02007372SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007373M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007374L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007375S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007376F: Documentation/hwmon/emc2103
7377F: drivers/hwmon/emc2103.c
7378
Hans de Goedea98d5062011-03-21 17:59:36 +01007379SMSC SCH5627 HARDWARE MONITOR DRIVER
7380M: Hans de Goede <hdegoede@redhat.com>
7381L: lm-sensors@lm-sensors.org
7382S: Supported
7383F: Documentation/hwmon/sch5627
7384F: drivers/hwmon/sch5627.c
7385
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007386SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007387M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007388L: lm-sensors@lm-sensors.org
7389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007390F: Documentation/hwmon/smsc47b397
7391F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007392
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007393SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007394M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007395L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007397F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007398F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007399
Steve Glendinning2cb37722008-12-11 20:54:30 -08007400SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007401M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007402L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007403S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007404F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007405
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007406SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007407M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007408L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007409S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007410F: drivers/video/smscufx.c
7411
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007412SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007413M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007414L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007415T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007416S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007417F: include/media/soc*
7418F: drivers/media/i2c/soc_camera/
7419F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007420
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007421SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007422M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007424F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007425
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007427M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007430F: drivers/md/
7431F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007432F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007435M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007436L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007438F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439
Michael Buesch61e115a2007-09-18 15:12:50 -04007440SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007441M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007442L: netdev@vger.kernel.org
7443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007444F: drivers/ssb/
7445F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007446
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007448M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007449L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007450W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007452F: Documentation/laptops/sony-laptop.txt
7453F: drivers/char/sonypi.c
7454F: drivers/platform/x86/sony-laptop.c
7455F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456
Alex Dubovbaf85322008-02-09 10:20:54 -08007457SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007458M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007459W: http://tifmxx.berlios.de/
7460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007461F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007462
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007464M: Jaroslav Kysela <perex@perex.cz>
7465M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007466L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007467W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007468T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007469T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007471F: Documentation/sound/
7472F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007473F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007474F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475
Mark Brownbd903bd2008-11-19 19:16:05 +00007476SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007477M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007478M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007479T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007480L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007481W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007483F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007484F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007485
Sam Ravnborg473321f2009-01-04 15:47:49 -08007486SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007487M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007489Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007490T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7491T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007493F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007494F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495
David S. Miller6404fcc2010-03-16 01:00:17 -07007496SPARC SERIAL DRIVERS
7497M: "David S. Miller" <davem@davemloft.net>
7498L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007499T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7500T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007501S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007502F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007503F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007504F: drivers/tty/serial/sunhv.c
7505F: drivers/tty/serial/sunsab.c
7506F: drivers/tty/serial/sunsab.h
7507F: drivers/tty/serial/sunsu.c
7508F: drivers/tty/serial/sunzilog.c
7509F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007510
Christopher Li389325b2012-04-05 14:25:14 -07007511SPARSE CHECKER
7512M: "Christopher Li" <sparse@chrisli.org>
7513L: linux-sparse@vger.kernel.org
7514W: https://sparse.wiki.kernel.org/
7515T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7516T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7517S: Maintained
7518F: include/linux/compiler.h
7519
viresh kumarfc0c1952010-04-01 12:31:21 +01007520SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007521M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307522M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007523L: spear-devel@list.st.com
7524L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007525W: http://www.st.com/spear
7526S: Maintained
7527F: arch/arm/plat-spear/
7528
Viresh Kumar71e09a92012-04-20 22:39:48 +05307529SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007530M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307531M: Shiraz Hashim <shiraz.hashim@st.com>
7532L: spear-devel@list.st.com
7533L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7534W: http://www.st.com/spear
7535S: Maintained
7536F: arch/arm/mach-spear13xx/
7537
viresh kumarfc0c1952010-04-01 12:31:21 +01007538SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007539M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307540M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007541L: spear-devel@list.st.com
7542L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007543W: http://www.st.com/spear
7544S: Maintained
7545F: arch/arm/mach-spear3xx/
7546
7547SPEAR6XX MACHINE SUPPORT
7548M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307549M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007550M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007551L: spear-devel@list.st.com
7552L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007553W: http://www.st.com/spear
7554S: Maintained
7555F: arch/arm/mach-spear6xx/
7556
7557SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007558M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007559L: spear-devel@list.st.com
7560L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007561W: http://www.st.com/spear
7562S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307563F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007564
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007565SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007566M: Mark Brown <broonie@kernel.org>
Grant Likely19624232013-04-08 11:51:42 +01007567M: Grant Likely <grant.likely@linaro.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007568L: spi-devel-general@lists.sourceforge.net
Mark Browne7e4e132013-04-18 18:18:47 +01007569T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007570Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007572F: Documentation/spi/
7573F: drivers/spi/
7574F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007575F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007576
Jim Lewis2752e402006-09-29 02:01:19 -07007577SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007578M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7579M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007580L: netdev@vger.kernel.org
7581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007582F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007583F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007584
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007585SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007586M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007587L: linuxppc-dev@lists.ozlabs.org
7588L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007589W: http://www.ibm.com/developerworks/power/cell/
7590S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007591F: Documentation/filesystems/spufs.txt
7592F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007593
Phillip Lougherfc555842009-01-05 08:46:29 +00007594SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007595M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007596L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7597W: http://squashfs.org.uk
7598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007599F: Documentation/filesystems/squashfs.txt
7600F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007601
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007603M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007605F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606
Linus Torvalds26e9a392008-10-17 09:50:12 -07007607STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007608M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007609L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007610S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007611
Linus Torvalds26e9a392008-10-17 09:50:12 -07007612STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007613M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007614T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007615L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007617F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007618
Joe Perchesc8c8b102011-07-05 09:42:12 -07007619STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7620M: Henk de Groot <pe1dnn@amsat.org>
7621S: Odd Fixes
7622F: drivers/staging/wlags49_h2/
7623F: drivers/staging/wlags49_h25/
7624
Joe Perchesc9555152011-07-05 09:42:01 -07007625STAGING - ASUS OLED
7626M: Jakub Schmidtke <sjakub@gmail.com>
7627S: Odd Fixes
7628F: drivers/staging/asus_oled/
7629
Joe Perchesebd3d012011-07-05 09:42:02 -07007630STAGING - COMEDI
7631M: Ian Abbott <abbotti@mev.co.uk>
7632M: Mori Hess <fmhess@users.sourceforge.net>
7633S: Odd Fixes
7634F: drivers/staging/comedi/
7635
Joe Perches8ca572c2011-07-05 09:42:03 -07007636STAGING - CRYSTAL HD VIDEO DECODER
7637M: Naren Sankar <nsankar@broadcom.com>
7638M: Jarod Wilson <jarod@wilsonet.com>
7639M: Scott Davilla <davilla@4pi.com>
7640M: Manu Abraham <abraham.manu@gmail.com>
7641S: Odd Fixes
7642F: drivers/staging/crystalhd/
7643
Joe Perches0f16ffc2011-07-05 09:42:04 -07007644STAGING - ECHO CANCELLER
7645M: Steve Underwood <steveu@coppice.org>
7646M: David Rowe <david@rowetel.com>
7647S: Odd Fixes
7648F: drivers/staging/echo/
7649
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007650STAGING - ET131X NETWORK DRIVER
7651M: Mark Einon <mark.einon@gmail.com>
7652S: Odd Fixes
7653F: drivers/staging/et131x/
7654
Joe Perchesa0138162011-07-05 15:21:34 -07007655STAGING - FLARION FT1000 DRIVERS
7656M: Marek Belisko <marek.belisko@gmail.com>
7657S: Odd Fixes
7658F: drivers/staging/ft1000/
7659
Joe Perchesec3fab92011-07-05 09:42:05 -07007660STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7661M: David Täht <d@teklibre.com>
7662S: Odd Fixes
7663F: drivers/staging/frontier/
7664
Hans Verkuil98ded592013-03-09 12:59:44 -03007665STAGING - GO7007 MPEG CODEC
7666M: Hans Verkuil <hans.verkuil@cisco.com>
7667S: Maintained
7668F: drivers/staging/media/go7007/
7669
Joe Perches6c1bb422011-07-05 09:42:07 -07007670STAGING - INDUSTRIAL IO
7671M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007672L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007673S: Odd Fixes
7674F: drivers/staging/iio/
7675
Joe Perchesa0138162011-07-05 15:21:34 -07007676STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7677M: Jarod Wilson <jarod@wilsonet.com>
7678W: http://www.lirc.org/
7679S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007680F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007681
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007682STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007683M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007684M: Marc Dietrich <marvin24@gmx.de>
7685L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007686L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007687S: Maintained
7688F: drivers/staging/nvec/
7689
Joe Perchesa0138162011-07-05 15:21:34 -07007690STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7691M: Andres Salomon <dilinger@queued.net>
7692M: Chris Ball <cjb@laptop.org>
7693M: Jon Nettleton <jon.nettleton@gmail.com>
7694W: http://wiki.laptop.org/go/DCON
7695S: Odd Fixes
7696F: drivers/staging/olpc_dcon/
7697
Chris Kelly94cfdd12012-03-14 10:55:42 +00007698STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007699M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007700S: Maintained
7701F: drivers/staging/ozwpan/
7702
Joe Perchesa0138162011-07-05 15:21:34 -07007703STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007704M: Willy Tarreau <willy@meta-x.org>
7705S: Odd Fixes
7706F: drivers/staging/panel/
7707
Joe Perchesa0138162011-07-05 15:21:34 -07007708STAGING - REALTEK RTL8712U DRIVERS
7709M: Larry Finger <Larry.Finger@lwfinger.net>
7710M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7711S: Odd Fixes
7712F: drivers/staging/rtl8712/
7713
Joe Perches9629fa82011-07-05 09:42:09 -07007714STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7715M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7716S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007717F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007718
Joe Perchesa0138162011-07-05 15:21:34 -07007719STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007720M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7721S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007722F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007723
7724STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7725M: William Hubbs <w.d.hubbs@gmail.com>
7726M: Chris Brannon <chris@the-brannons.com>
7727M: Kirk Reiser <kirk@braille.uwo.ca>
7728M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7729L: speakup@braille.uwo.ca
7730W: http://www.linux-speakup.org/
7731S: Odd Fixes
7732F: drivers/staging/speakup/
7733
7734STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007735M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007736S: Odd Fixes
7737F: drivers/staging/tidspbridge/
7738
Joe Perchesa0138162011-07-05 15:21:34 -07007739STAGING - USB ENE SM/MS CARD READER DRIVER
7740M: Al Cho <acho@novell.com>
7741S: Odd Fixes
7742F: drivers/staging/keucr/
7743
Joe Perchesb3e871c2011-07-05 09:42:10 -07007744STAGING - VIA VT665X DRIVERS
7745M: Forest Bond <forest@alittletooquiet.net>
7746S: Odd Fixes
7747F: drivers/staging/vt665?/
7748
Joe Perches81a9a522011-07-05 09:42:11 -07007749STAGING - WINBOND IS89C35 WLAN USB DRIVER
7750M: Pavel Machek <pavel@ucw.cz>
7751S: Odd Fixes
7752F: drivers/staging/winbond/
7753
Joe Perches709bcb02011-07-05 09:42:13 -07007754STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007755M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007756S: Odd Fixes
7757F: drivers/staging/xgifb/
7758
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007760M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007761S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007762F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007764SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007765M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007766W: http://sammy.net/sun3/
7767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007768F: arch/m68k/kernel/*sun3*
7769F: arch/m68k/sun3*/
7770F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007771F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007772
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007773SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007774M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007775L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007777Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007778T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007779S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007780F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007781F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007782F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007784SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007785M: Len Brown <len.brown@intel.com>
7786M: Pavel Machek <pavel@ucw.cz>
7787M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007788L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007789S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007790F: Documentation/power/
7791F: arch/x86/kernel/acpi/
7792F: drivers/base/power/
7793F: kernel/power/
7794F: include/linux/suspend.h
7795F: include/linux/freezer.h
7796F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797
7798SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007799M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800L: linux-video@atrey.karlin.mff.cuni.cz
7801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007802F: Documentation/svga.txt
7803F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007805SWIOTLB SUBSYSTEM
7806M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7807L: linux-kernel@vger.kernel.org
7808S: Supported
7809F: lib/swiotlb.c
7810F: arch/*/kernel/pci-swiotlb.c
7811F: include/linux/swiotlb.h
7812
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307813SYNOPSYS ARC ARCHITECTURE
7814M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307815S: Supported
7816F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307817F: Documentation/devicetree/bindings/arc/
7818F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307819
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007821M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007823F: Documentation/filesystems/sysv-fs.txt
7824F: fs/sysv/
7825F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007827TARGET SUBSYSTEM
7828M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7829L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007830L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007831L: http://groups.google.com/group/linux-iscsi-target-dev
7832W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007833T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007834S: Supported
7835F: drivers/target/
7836F: include/target/
7837F: Documentation/target/
7838
Alan Cox4e688522008-04-30 00:52:11 -07007839TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007840M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007842F: Documentation/accounting/taskstats*
7843F: include/linux/taskstats*
7844F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007845
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007846TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007847M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007848L: netdev@vger.kernel.org
7849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007850F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007851F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007852F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007853
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007854TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007855M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7856M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007857W: http://tcp-lp-mod.sourceforge.net/
7858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007859F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007860
Antti Palosaari91952bc2012-10-01 12:28:46 -03007861TDA10071 MEDIA DRIVER
7862M: Antti Palosaari <crope@iki.fi>
7863L: linux-media@vger.kernel.org
7864W: http://linuxtv.org/
7865W: http://palosaari.fi/linux/
7866Q: http://patchwork.linuxtv.org/project/linux-media/list/
7867T: git git://linuxtv.org/anttip/media_tree.git
7868S: Maintained
7869F: drivers/media/dvb-frontends/tda10071*
7870
7871TDA18212 MEDIA DRIVER
7872M: Antti Palosaari <crope@iki.fi>
7873L: linux-media@vger.kernel.org
7874W: http://linuxtv.org/
7875W: http://palosaari.fi/linux/
7876Q: http://patchwork.linuxtv.org/project/linux-media/list/
7877T: git git://linuxtv.org/anttip/media_tree.git
7878S: Maintained
7879F: drivers/media/tuners/tda18212*
7880
7881TDA18218 MEDIA DRIVER
7882M: Antti Palosaari <crope@iki.fi>
7883L: linux-media@vger.kernel.org
7884W: http://linuxtv.org/
7885W: http://palosaari.fi/linux/
7886Q: http://patchwork.linuxtv.org/project/linux-media/list/
7887T: git git://linuxtv.org/anttip/media_tree.git
7888S: Maintained
7889F: drivers/media/tuners/tda18218*
7890
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007891TDA18271 MEDIA DRIVER
7892M: Michael Krufky <mkrufky@linuxtv.org>
7893L: linux-media@vger.kernel.org
7894W: http://linuxtv.org/
7895W: http://github.com/mkrufky
7896Q: http://patchwork.linuxtv.org/project/linux-media/list/
7897T: git git://linuxtv.org/mkrufky/tuners.git
7898S: Maintained
7899F: drivers/media/tuners/tda18271*
7900
Michael Krufkye48307a2012-10-02 00:56:33 -03007901TDA827x MEDIA DRIVER
7902M: Michael Krufky <mkrufky@linuxtv.org>
7903L: linux-media@vger.kernel.org
7904W: http://linuxtv.org/
7905W: http://github.com/mkrufky
7906Q: http://patchwork.linuxtv.org/project/linux-media/list/
7907T: git git://linuxtv.org/mkrufky/tuners.git
7908S: Maintained
7909F: drivers/media/tuners/tda8290.*
7910
Michael Krufky66cf9212012-10-02 00:56:28 -03007911TDA8290 MEDIA DRIVER
7912M: Michael Krufky <mkrufky@linuxtv.org>
7913L: linux-media@vger.kernel.org
7914W: http://linuxtv.org/
7915W: http://github.com/mkrufky
7916Q: http://patchwork.linuxtv.org/project/linux-media/list/
7917T: git git://linuxtv.org/mkrufky/tuners.git
7918S: Maintained
7919F: drivers/media/tuners/tda8290.*
7920
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007921TDA9840 MEDIA DRIVER
7922M: Hans Verkuil <hverkuil@xs4all.nl>
7923L: linux-media@vger.kernel.org
7924T: git git://linuxtv.org/media_tree.git
7925W: http://linuxtv.org
7926S: Maintained
7927F: drivers/media/i2c/tda9840*
7928
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007929TEA5761 TUNER DRIVER
7930M: Mauro Carvalho Chehab <mchehab@redhat.com>
7931L: linux-media@vger.kernel.org
7932W: http://linuxtv.org
7933T: git git://linuxtv.org/media_tree.git
7934S: Odd fixes
7935F: drivers/media/tuners/tea5761.*
7936
7937TEA5767 TUNER DRIVER
7938M: Mauro Carvalho Chehab <mchehab@redhat.com>
7939L: linux-media@vger.kernel.org
7940W: http://linuxtv.org
7941T: git git://linuxtv.org/media_tree.git
7942S: Maintained
7943F: drivers/media/tuners/tea5767.*
7944
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007945TEA6415C MEDIA DRIVER
7946M: Hans Verkuil <hverkuil@xs4all.nl>
7947L: linux-media@vger.kernel.org
7948T: git git://linuxtv.org/media_tree.git
7949W: http://linuxtv.org
7950S: Maintained
7951F: drivers/media/i2c/tea6415c*
7952
7953TEA6420 MEDIA DRIVER
7954M: Hans Verkuil <hverkuil@xs4all.nl>
7955L: linux-media@vger.kernel.org
7956T: git git://linuxtv.org/media_tree.git
7957W: http://linuxtv.org
7958S: Maintained
7959F: drivers/media/i2c/tea6420*
7960
Jiri Pirko3d249d42011-11-11 22:16:48 +00007961TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007962M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007963L: netdev@vger.kernel.org
7964S: Supported
7965F: drivers/net/team/
7966F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007967F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007968
Vivien Didelot7d029122013-01-04 16:18:14 -05007969TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7970M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7971S: Maintained
7972F: arch/x86/platform/ts5500/
7973
Sean Young40ad4a32012-11-19 10:32:53 -03007974TECHNOTREND USB IR RECEIVER
7975M: Sean Young <sean@mess.org>
7976L: linux-media@vger.kernel.org
7977S: Maintained
7978F: drivers/media/rc/ttusbir.c
7979
Erik Gilling84b94142010-06-09 15:35:53 -07007980TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007981M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007982L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007983Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7984T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007985S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07007986N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007987
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007988TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007989M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007990L: netdev@vger.kernel.org
7991S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007992F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007993
Alan Cox4e688522008-04-30 00:52:11 -07007994Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007995M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007997F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007998
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007999TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008000M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008001M: Max Filippov <jcmvbkbc@gmail.com>
8002L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008004F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008005
Zhang Ruid3fb6952012-11-15 08:58:27 +08008006THERMAL
8007M: Zhang Rui <rui.zhang@intel.com>
8008L: linux-pm@vger.kernel.org
8009T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
8010S: Supported
8011F: drivers/thermal/
8012F: include/linux/thermal.h
8013
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008014THINGM BLINK(1) USB RGB LED DRIVER
8015M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8016S: Maintained
8017F: drivers/hid/hid-thingm.c
8018
Alan Cox4e688522008-04-30 00:52:11 -07008019THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008020M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008021L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008022L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008023W: http://ibm-acpi.sourceforge.net
8024W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008025T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008027F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008028
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008029TI BANDGAP AND THERMAL DRIVER
8030M: Eduardo Valentin <eduardo.valentin@ti.com>
8031L: linux-pm@vger.kernel.org
8032S: Maintained
8033F: drivers/staging/omap-thermal/
8034
Alex Dubov4020f2d2006-10-04 02:15:37 -07008035TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008036M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008038F: drivers/misc/tifm*
8039F: drivers/mmc/host/tifm_sd.c
8040F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008041
M R Swami Reddy152ad442012-04-02 20:02:31 +05308042TI LM49xxx FAMILY ASoC CODEC DRIVERS
8043M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308044M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308045L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8046S: Maintained
8047F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308048F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308049
Kim, Milo0edd8072012-12-17 16:01:17 -08008050TI LP855x BACKLIGHT DRIVER
8051M: Milo Kim <milo.kim@ti.com>
8052S: Maintained
8053F: Documentation/backlight/lp855x-driver.txt
8054F: drivers/video/backlight/lp855x_bl.c
8055F: include/linux/platform_data/lp855x.h
8056
Kim, Milofaf13f62012-12-10 05:27:03 +00008057TI LP8727 CHARGER DRIVER
8058M: Milo Kim <milo.kim@ti.com>
8059S: Maintained
8060F: drivers/power/lp8727_charger.c
8061F: include/linux/platform_data/lp8727.h
8062
Kim, Milo22f12292012-12-10 05:27:55 +00008063TI LP8788 MFD DRIVER
8064M: Milo Kim <milo.kim@ti.com>
8065S: Maintained
8066F: drivers/iio/adc/lp8788_adc.c
8067F: drivers/leds/leds-lp8788.c
8068F: drivers/mfd/lp8788*.c
8069F: drivers/power/lp8788-charger.c
8070F: drivers/regulator/lp8788-*.c
8071F: include/linux/mfd/lp8788*.h
8072
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008073TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008074M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008075L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8076S: Maintained
8077F: sound/soc/codecs/twl4030*
8078
Luciano Coelho90921012011-11-20 21:40:41 +02008079TI WILINK WIRELESS DRIVERS
8080M: Luciano Coelho <coelho@ti.com>
8081L: linux-wireless@vger.kernel.org
8082W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8083W: http://wireless.kernel.org/en/users/Drivers/wl1251
8084T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8085S: Maintained
8086F: drivers/net/wireless/ti/
8087F: include/linux/wl12xx.h
8088
Per Lidene86eaa32006-01-12 16:45:18 +01008089TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008090M: Jon Maloy <jon.maloy@ericsson.com>
8091M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008092L: netdev@vger.kernel.org (core kernel code)
8093L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008094W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008095S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008096F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008097F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008098
Chris Metcalf867e3592010-05-28 23:09:12 -04008099TILE ARCHITECTURE
8100M: Chris Metcalf <cmetcalf@tilera.com>
8101W: http://www.tilera.com/scm/
8102S: Supported
8103F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008104F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008105F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008106F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008107
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008109M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008110L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111W: http://sourceforge.net/projects/tlan/
8112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008113F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008114F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008115
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008116TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008117M: Kentaro Takeda <takedakn@nttdata.co.jp>
8118M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008119L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8120L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008121L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8122L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8123W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008124T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008126F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008127
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008128TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008129M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008130L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008131S: Maintained
8132F: drivers/platform/x86/topstar-laptop.c
8133
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008135L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008136S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008137F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138
8139TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008140M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141L: tlinux-users@tce.toshiba-dme.co.jp
8142W: http://www.buzzard.org.uk/toshiba/
8143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008144F: drivers/char/toshiba.c
8145F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008146F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147
Pierre Ossmand719f902009-03-24 21:06:09 +01008148TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008149M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008150M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008151L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008152S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008153F: drivers/mmc/host/tmio_mmc*
8154F: drivers/mmc/host/sh_mobile_sdhi.c
8155F: include/linux/mmc/tmio.h
8156F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008157
Hugh Dickins98f32602009-05-21 20:33:58 +01008158TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008159M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008160L: linux-mm@kvack.org
8161S: Maintained
8162F: include/linux/shmem_fs.h
8163F: mm/shmem.c
8164
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008165TM6000 VIDEO4LINUX DRIVER
8166M: Mauro Carvalho Chehab <mchehab@redhat.com>
8167L: linux-media@vger.kernel.org
8168W: http://linuxtv.org
8169T: git git://linuxtv.org/media_tree.git
8170S: Odd fixes
8171F: drivers/media/usb/tm6000/
8172
Alan Cox4e688522008-04-30 00:52:11 -07008173TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008174M: Kent Yoder <key@linux.vnet.ibm.com>
8175M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008176W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008177M: Marcel Selhorst <tpmdd@selhorst.net>
8178M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008179W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008180L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008182F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008183
Joe Perchesd6f005a2009-10-26 16:49:40 -07008184TRACING
8185M: Steven Rostedt <rostedt@goodmis.org>
8186M: Frederic Weisbecker <fweisbec@gmail.com>
8187M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008188T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008189S: Maintained
8190F: Documentation/trace/ftrace.txt
8191F: arch/*/*/*/ftrace.h
8192F: arch/*/kernel/ftrace.c
8193F: include/*/ftrace.h
8194F: include/linux/trace*.h
8195F: include/trace/
8196F: kernel/trace/
8197
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008199M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008200T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008202K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203
Alan Cox4e688522008-04-30 00:52:11 -07008204TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008205M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008206M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008207S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008208T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008209F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008210F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008211F: include/linux/serial_core.h
8212F: include/linux/serial.h
8213F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008214F: include/uapi/linux/serial_core.h
8215F: include/uapi/linux/serial.h
8216F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008217
Antti Palosaari91952bc2012-10-01 12:28:46 -03008218TUA9001 MEDIA DRIVER
8219M: Antti Palosaari <crope@iki.fi>
8220L: linux-media@vger.kernel.org
8221W: http://linuxtv.org/
8222W: http://palosaari.fi/linux/
8223Q: http://patchwork.linuxtv.org/project/linux-media/list/
8224T: git git://linuxtv.org/anttip/media_tree.git
8225S: Maintained
8226F: drivers/media/tuners/tua9001*
8227
Grant Grundler740db6d2008-02-17 11:53:49 -07008228TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008229M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008230L: netdev@vger.kernel.org
8231S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008232F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008233
8234TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008235M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236W: http://vtun.sourceforge.net/tun
8237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008238F: Documentation/networking/tuntap.txt
8239F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008241TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008242M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008244F: drivers/tc/
8245F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008246
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008248M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249L: linux-scsi@vger.kernel.org
8250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008251F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008253UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008254M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008255M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008256L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008257T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008258W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008260F: Documentation/filesystems/ubifs.txt
8261F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008262
Alan Coxcc2020e2008-05-19 14:21:51 +01008263UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008264M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008265W: http://www.uclinux.org/
8266L: uclinux-dev@uclinux.org (subscribers-only)
8267S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008268F: arch/m68k/*/*_no.*
8269F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008270
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008271UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008272M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008273W: http://uclinux-h8.sourceforge.jp/
8274S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008275F: arch/h8300/
8276F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008277F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008278
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008280M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008282F: Documentation/filesystems/udf.txt
8283F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284
Alan Coxcc2020e2008-05-19 14:21:51 +01008285UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008286M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008288F: Documentation/filesystems/ufs.txt
8289F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008290
David Herrmann0a09d3a2012-06-10 15:16:28 +02008291UHID USERSPACE HID IO DRIVER:
8292M: David Herrmann <dh.herrmann@googlemail.com>
8293L: linux-input@vger.kernel.org
8294S: Maintained
8295F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008296F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008297
David Vrabel18332a82008-09-17 16:34:44 +01008298ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008299L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008300S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008301F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008302F: include/linux/uwb.h
8303F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008304
GuanXuetaob31d8272011-01-16 00:35:49 +08008305UNICORE32 ARCHITECTURE:
8306M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8307W: http://mprc.pku.edu.cn/~guanxuetao/linux
8308S: Maintained
8309T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8310F: arch/unicore32/
8311
Tony Finchd8379ab2009-11-27 15:50:30 +00008312UNIFDEF
8313M: Tony Finch <dot@dotat.at>
8314W: http://dotat.at/prog/unifdef
8315S: Maintained
8316F: scripts/unifdef.c
8317
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008319M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008320W: http://www.kernel.dk
8321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008322F: Documentation/cdrom/
8323F: drivers/cdrom/cdrom.c
8324F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008325F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308327UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8328M: Vinayak Holikatti <vinholikatti@gmail.com>
8329M: Santosh Y <santoshsy@gmail.com>
8330L: linux-scsi@vger.kernel.org
8331S: Supported
8332F: Documentation/scsi/ufs.txt
8333F: drivers/scsi/ufs/
8334
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008335UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008336M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008337W: http://www.linux-mtd.infradead.org/
8338L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008339T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008340S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008341F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008342F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008343F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008344
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008345UNSORTED BLOCK IMAGES (UBI) Fastmap
8346M: Richard Weinberger <richard@nod.at>
8347L: linux-mtd@lists.infradead.org
8348S: Maintained
8349F: drivers/mtd/ubi/fastmap.c
8350
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008352M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008353L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008355F: Documentation/usb/acm.txt
8356F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008358USB AR5523 WIRELESS DRIVER
8359M: Pontus Fuchs <pontus.fuchs@gmail.com>
8360L: linux-wireless@vger.kernel.org
8361S: Maintained
8362F: drivers/net/wireless/ath/ar5523/
8363
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008364USB ATTACHED SCSI
8365M: Matthew Wilcox <willy@linux.intel.com>
8366M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008367M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008368L: linux-usb@vger.kernel.org
8369L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008370S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008371F: drivers/usb/storage/uas.c
8372
Linus Torvalds1da177e2005-04-16 15:20:36 -07008373USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008374M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008375L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008377F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008378F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008379
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008380USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008381M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008382L: linux-usb@vger.kernel.org
8383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008384F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008385
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008386USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008387M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008388L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008389W: http://www.linux-usb.org/usbnet
8390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008391F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008392
Alan Coxcc2020e2008-05-19 14:21:51 +01008393USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008394M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008395L: rio500-users@lists.sourceforge.net
8396W: http://rio500.sourceforge.net
8397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008398F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008399
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008401M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008402L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008404F: Documentation/usb/ehci.txt
8405F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406
David Brownell69ae9e32006-11-14 02:03:31 -08008407USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008408M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008409L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008410W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008411T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008413F: drivers/usb/gadget/
8414F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008415
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008416USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008417M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008418L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008419T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008421F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008422F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423
matt mooney857aab32011-06-17 15:50:46 -07008424USB/IP DRIVERS
8425M: Matt Mooney <mfm@muteddisk.com>
8426L: linux-usb@vger.kernel.org
8427S: Maintained
8428F: drivers/staging/usbip/
8429
Olav Kongas959eea22005-11-03 17:38:14 +02008430USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008431M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008432L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008434F: drivers/usb/host/isp116x*
8435F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008436
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008438M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008439L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008441F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442
8443USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008444M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008445L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008446L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008447S: Maintained
8448W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008449F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450
Clemens Ladischaf399172011-01-10 16:32:54 +01008451USB MIDI DRIVER
8452M: Clemens Ladisch <clemens@ladisch.de>
8453L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8454T: git git://git.alsa-project.org/alsa-kernel.git
8455S: Maintained
8456F: sound/usb/midi.*
8457
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008459M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008460L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008462F: Documentation/usb/ohci.txt
8463F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464
Matthias Urlichsba460e42005-07-14 00:33:47 -07008465USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008466M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008467L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008469F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008470
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008472M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008473L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008474L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008475T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476W: http://pegasus2.sourceforge.net/
8477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008478F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479
Felipe Balbid3ad5582012-05-21 16:24:49 +03008480USB PHY LAYER
8481M: Felipe Balbi <balbi@ti.com>
8482L: linux-usb@vger.kernel.org
8483T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8484S: Maintained
8485F: drivers/usb/phy/
8486F: drivers/usb/otg/
8487
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008488USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008489M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008490L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008492F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008493
8494USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008495M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008496L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008497L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008498T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008499W: http://pegasus2.sourceforge.net/
8500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008501F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502
Alan Cox4e688522008-04-30 00:52:11 -07008503USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008504M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008505L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008507F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008508
8509USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008510M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008511L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008512S: Maintained
8513W: http://geocities.com/i0xox0i
8514W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008515F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008516
Linus Torvalds1da177e2005-04-16 15:20:36 -07008517USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008518M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008521F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008522
8523USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008524M: Peter Berger <pberger@brimson.com>
8525M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008526L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008528F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008529
8530USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008531M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008532L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008534F: Documentation/usb/usb-serial.txt
8535F: drivers/usb/serial/generic.c
8536F: drivers/usb/serial/usb-serial.c
8537F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008538
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008540M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008541L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008543F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544
8545USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008546M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008547L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008549F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008550
8551USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008552M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008553L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008554W: http://www.connecttech.com
8555S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008556F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008558USB SMSC75XX ETHERNET DRIVER
8559M: Steve Glendinning <steve.glendinning@shawell.net>
8560L: netdev@vger.kernel.org
8561S: Maintained
8562F: drivers/net/usb/smsc75xx.*
8563
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008564USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008565M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008566L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008568F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008569
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008570USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008571M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008572L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008573L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008574T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008575W: http://www.linux-projects.org
8576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008577F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008578F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008579
8580USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008581M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008582L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008584T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008586F: Documentation/usb/
8587F: drivers/net/usb/
8588F: drivers/usb/
8589F: include/linux/usb.h
8590F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591
8592USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008593M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008594L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008596F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597
David Brownell69ae9e32006-11-14 02:03:31 -08008598USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008599M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008600L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008601W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008603F: drivers/net/usb/usbnet.c
8604F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008606USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008607M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008608L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008609L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008610T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008611W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008612S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008613F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008614F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008615
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008616USB VISION DRIVER
8617M: Hans Verkuil <hverkuil@xs4all.nl>
8618L: linux-media@vger.kernel.org
8619T: git git://linuxtv.org/media_tree.git
8620W: http://linuxtv.org
8621S: Odd Fixes
8622F: drivers/media/usb/usbvision/
8623
Laurent Pinchart8282da42012-10-04 02:32:42 +02008624USB WEBCAM GADGET
8625M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8626L: linux-usb@vger.kernel.org
8627S: Maintained
8628F: drivers/usb/gadget/*uvc*.c
8629F: drivers/usb/gadget/webcam.c
8630
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008631USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008632M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008633L: linux-wireless@vger.kernel.org
8634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008635F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008636
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008637USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008638M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008639L: linux-usb@vger.kernel.org
8640S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008641F: drivers/usb/host/xhci*
8642F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008643
Linus Torvalds1da177e2005-04-16 15:20:36 -07008644USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008645L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008647S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008648F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008650USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008651M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008652L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008653L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008654T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008655W: http://royale.zerezo.com/zr364xx/
8656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008657F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008658F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008659
Randy Dunlape7839f22008-10-12 16:11:45 -07008660USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008661M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008662M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663L: user-mode-linux-devel@lists.sourceforge.net
8664L: user-mode-linux-user@lists.sourceforge.net
8665W: http://user-mode-linux.sourceforge.net
8666S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008667F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008668F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008669F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008670F: fs/hostfs/
8671F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008672
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008673USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008674M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008675M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008677F: Documentation/DocBook/uio-howto.tmpl
8678F: drivers/uio/
8679F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008680
Karel Zak256cccb2012-06-01 10:13:09 +02008681UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008682M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008683L: util-linux@vger.kernel.org
8684W: http://en.wikipedia.org/wiki/Util-linux
8685T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008686S: Maintained
8687
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008688UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008689M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008690L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008691W: http://dev.gentoo.org/~spock/projects/uvesafb/
8692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008693F: Documentation/fb/uvesafb.txt
8694F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008695
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008696VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008697M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008699F: Documentation/filesystems/vfat.txt
8700F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008701
Alex Williamsoncba33452012-07-31 08:16:22 -06008702VFIO DRIVER
8703M: Alex Williamson <alex.williamson@redhat.com>
8704L: kvm@vger.kernel.org
8705S: Maintained
8706F: Documentation/vfio.txt
8707F: drivers/vfio/
8708F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008709F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008710
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008711VIDEOBUF2 FRAMEWORK
8712M: Pawel Osciak <pawel@osciak.com>
8713M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008714M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008715L: linux-media@vger.kernel.org
8716S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008717F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008718F: include/media/videobuf2-*
8719
Amit Shah9a824462010-03-23 18:23:09 +05308720VIRTIO CONSOLE DRIVER
8721M: Amit Shah <amit.shah@redhat.com>
8722L: virtualization@lists.linux-foundation.org
8723S: Maintained
8724F: drivers/char/virtio_console.c
8725F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008726F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308727
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308728VIRTIO CORE, NET AND BLOCK DRIVERS
8729M: Rusty Russell <rusty@rustcorp.com.au>
8730M: "Michael S. Tsirkin" <mst@redhat.com>
8731L: virtualization@lists.linux-foundation.org
8732S: Maintained
8733F: drivers/virtio/
8734F: drivers/net/virtio_net.c
8735F: drivers/block/virtio_blk.c
8736F: include/linux/virtio_*.h
8737
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008738VIRTIO HOST (VHOST)
8739M: "Michael S. Tsirkin" <mst@redhat.com>
8740L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008741L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008742L: netdev@vger.kernel.org
8743S: Maintained
8744F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008745F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008746
Linus Torvalds1da177e2005-04-16 15:20:36 -07008747VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008748M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008749S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008750F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751
Harald Weltef0bf7f62009-06-17 20:22:39 +02008752VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008753M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008754M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008755S: Maintained
8756F: drivers/mmc/host/via-sdmmc.c
8757
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008758VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008759M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008760L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008761S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008762F: include/linux/via-core.h
8763F: include/linux/via-gpio.h
8764F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008765F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008766
Francois Romieu01f20732007-01-26 00:57:17 -08008767VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008768M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008769L: netdev@vger.kernel.org
8770S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008771F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008772
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008773VIVI VIRTUAL VIDEO DRIVER
8774M: Hans Verkuil <hverkuil@xs4all.nl>
8775L: linux-media@vger.kernel.org
8776T: git git://linuxtv.org/media_tree.git
8777W: http://linuxtv.org
8778S: Maintained
8779F: drivers/media/platform/vivi*
8780
Patrick McHardybe7f8272007-10-23 20:26:36 -07008781VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008782M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008783L: netdev@vger.kernel.org
8784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008785F: drivers/net/macvlan.c
8786F: include/linux/if_*vlan.h
8787F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008788
Florian Fainelli55e331c2009-06-16 15:33:53 -07008789VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008790M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008791L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008792S: Maintained
8793F: drivers/vlynq/vlynq.c
8794F: include/linux/vlynq.h
8795
Martyn Welch390beae2012-05-03 17:52:36 +01008796VME SUBSYSTEM
8797M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008798M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008799M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8800L: devel@driverdev.osuosl.org
8801S: Maintained
8802T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8803F: Documentation/vme_api.txt
8804F: drivers/staging/vme/
8805F: drivers/vme/
8806F: include/linux/vme*
8807
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008808VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008809M: Shreyas Bhatewara <sbhatewara@vmware.com>
8810M: "VMware, Inc." <pv-drivers@vmware.com>
8811L: netdev@vger.kernel.org
8812S: Maintained
8813F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008814
Alok Kataria851b1642009-10-13 14:51:05 -07008815VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008816M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008817M: VMware PV-Drivers <pv-drivers@vmware.com>
8818L: linux-scsi@vger.kernel.org
8819S: Maintained
8820F: drivers/scsi/vmw_pvscsi.c
8821F: drivers/scsi/vmw_pvscsi.h
8822
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008823VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08008824M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008825M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008826W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008827W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008828T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008830F: drivers/regulator/
8831F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008832
Juerg Haefligerab413192006-09-24 20:54:04 +02008833VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008834M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008835L: lm-sensors@lm-sensors.org
8836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008837F: Documentation/hwmon/vt1211
8838F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008839
Roger Lucas1de9e372005-11-26 20:20:05 +01008840VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008841M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008842L: lm-sensors@lm-sensors.org
8843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008844F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008845
Tony Olech88095e72011-05-14 16:48:13 -04008846VUB300 USB to SDIO/SD/MMC bridge chip
8847M: Tony Olech <tony.olech@elandigitalsystems.com>
8848L: linux-mmc@vger.kernel.org
8849L: linux-usb@vger.kernel.org
8850S: Supported
8851F: drivers/mmc/host/vub300.c
8852
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008854M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008856F: Documentation/w1/
8857F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008858
Charles Spirakis13927072006-07-05 18:05:15 +02008859W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008860M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008861L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008863F: Documentation/hwmon/w83791d
8864F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008865
Rudolf Marek61db0112006-12-12 18:18:30 +01008866W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008867M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008868L: lm-sensors@lm-sensors.org
8869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008870F: Documentation/hwmon/w83793
8871F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008872
Jean Delvaree3760b42010-10-28 20:31:49 +02008873W83795 HARDWARE MONITORING DRIVER
8874M: Jean Delvare <khali@linux-fr.org>
8875L: lm-sensors@lm-sensors.org
8876S: Maintained
8877F: drivers/hwmon/w83795.c
8878
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008880M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008882F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008883
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008884WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008885M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008886L: linux-watchdog@vger.kernel.org
8887W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008888T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008890F: Documentation/watchdog/
8891F: drivers/watchdog/
8892F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008893F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008894
Linus Torvalds1da177e2005-04-16 15:20:36 -07008895WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008896M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897L: linux-scsi@vger.kernel.org
8898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008899F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900
David Herrmannb22e00f2011-09-06 13:50:40 +02008901WIIMOTE HID DRIVER
8902M: David Herrmann <dh.herrmann@googlemail.com>
8903L: linux-input@vger.kernel.org
8904S: Maintained
8905F: drivers/hid/hid-wiimote*
8906
David Härdemane258b802009-09-21 17:04:53 -07008907WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008908M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008909S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008910F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008911
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008912WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008913M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008914M: linux-wimax@intel.com
8915L: wimax@linuxwimax.org
8916S: Supported
8917W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008918F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008919F: include/linux/wimax/debug.h
8920F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008921F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008922F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008923
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008924WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008925M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008927F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008928
Linus Torvalds1da177e2005-04-16 15:20:36 -07008929WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008930M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008931L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008932W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008934F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008935
Mark Brownfebf1df2008-04-02 00:51:09 -04008936WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008937M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8938M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008939L: linux-input@vger.kernel.org
8940T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8941W: http://opensource.wolfsonmicro.com/node/7
8942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008943F: drivers/input/touchscreen/*wm97*
8944F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008945
Mark Brown055bcbc2010-08-13 14:18:12 +01008946WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008947M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008948L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008949T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008950T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008951W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008952S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008953F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008954F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008955F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008956F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008957F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008958F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008959F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008960F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008961F: drivers/input/misc/wm831x-on.c
8962F: drivers/input/touchscreen/wm831x-ts.c
8963F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008964F: drivers/mfd/arizona*
8965F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008966F: drivers/power/wm83*.c
8967F: drivers/rtc/rtc-wm83*.c
8968F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008969F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008970F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008971F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008972F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008973F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008974F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008975F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008976F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008977F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008978F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008979
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008980WORKQUEUE
8981M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008982T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8983S: Maintained
8984F: include/linux/workqueue.h
8985F: kernel/workqueue.c
8986F: Documentation/workqueue.txt
8987
Linus Torvalds1da177e2005-04-16 15:20:36 -07008988X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008989M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008990L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008991S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008992F: Documentation/networking/x25*
8993F: include/net/x25*
8994F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008996X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008997M: Thomas Gleixner <tglx@linutronix.de>
8998M: Ingo Molnar <mingo@redhat.com>
8999M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009000M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009001T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009003F: Documentation/x86/
9004F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009005
Matthew Garrettd0944852010-02-11 10:40:13 -05009006X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009007M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009008L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009009T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009010S: Maintained
9011F: drivers/platform/x86
9012
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009013X86 MCE INFRASTRUCTURE
9014M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009015M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009016L: linux-edac@vger.kernel.org
9017S: Maintained
9018F: arch/x86/kernel/cpu/mcheck/*
9019
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009020XC2028/3028 TUNER DRIVER
9021M: Mauro Carvalho Chehab <mchehab@redhat.com>
9022L: linux-media@vger.kernel.org
9023W: http://linuxtv.org
9024T: git git://linuxtv.org/media_tree.git
9025S: Maintained
9026F: drivers/media/tuners/tuner-xc2028.*
9027
Ian Campbellc4468082011-04-27 15:26:46 -07009028XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009029M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009030M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009031L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9032L: virtualization@lists.linux-foundation.org
9033S: Supported
9034F: arch/x86/xen/
9035F: drivers/*/xen-*front.c
9036F: drivers/xen/
9037F: arch/x86/include/asm/xen/
9038F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009039F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009040
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009041XEN HYPERVISOR ARM
9042M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9043L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9044S: Supported
9045F: arch/arm/xen/
9046F: arch/arm/include/asm/xen/
9047
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009048XEN NETWORK BACKEND DRIVER
9049M: Ian Campbell <ian.campbell@citrix.com>
9050L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9051L: netdev@vger.kernel.org
9052S: Supported
9053F: drivers/net/xen-netback/*
9054
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009055XEN PCI SUBSYSTEM
9056M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009057L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009058S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009059F: arch/x86/pci/*xen*
9060F: drivers/pci/*xen*
9061
9062XEN SWIOTLB SUBSYSTEM
9063M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009064L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009065S: Supported
9066F: arch/x86/xen/*swiotlb*
9067F: drivers/xen/*swiotlb*
9068
Linus Torvalds1da177e2005-04-16 15:20:36 -07009069XFS FILESYSTEM
9070P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009071M: Ben Myers <bpm@sgi.com>
9072M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009073M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009074L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009075W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009076T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009077S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009078F: Documentation/filesystems/xfs.txt
9079F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009080
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009081XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009082M: Anirudha Sarangi <anirudh@xilinx.com>
9083M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009084S: Maintained
9085F: drivers/net/ethernet/xilinx/xilinx_axienet*
9086
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009087XILINX SYSTEMACE DRIVER
Grant Likely19624232013-04-08 11:51:42 +01009088S: Unmaintained
Joe Perches679655d2009-04-07 20:44:32 -07009089F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009090
Peter Korsgaard238b8722006-12-06 20:35:17 -08009091XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009092M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009093L: linux-serial@vger.kernel.org
9094S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009095F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009096
Linus Torvalds1da177e2005-04-16 15:20:36 -07009097YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009098M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009099L: linux-hams@vger.kernel.org
9100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009101F: drivers/net/hamradio/yam*
9102F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009103
Henkaf64a5e2005-10-12 15:02:56 +02009104YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009105M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009106L: usbb2k-api-dev@nongnu.org
9107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009108F: Documentation/input/yealink.txt
9109F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009110
Linus Torvalds1da177e2005-04-16 15:20:36 -07009111Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009112M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009113W: http://yaina.de/jreuter/
9114W: http://www.qsl.net/dl1bke/
9115L: linux-hams@vger.kernel.org
9116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009117F: Documentation/networking/z8530drv.txt
9118F: drivers/net/hamradio/*scc.c
9119F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009120
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009121ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009122M: Daniel Drake <dsd@gentoo.org>
9123M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009124W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009125L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009126L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009128F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009129
Linus Torvalds1da177e2005-04-16 15:20:36 -07009130ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009131L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009132L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009133W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009134T: Mercurial http://linuxtv.org/hg/v4l-dvb
9135S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009136F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009137
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009138ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009139M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009140S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009141F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009142
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009144M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009145L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009146Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009147T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009148S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009149F: *
9150F: */