blob: 4f7d0bac1432bddda7056c4fa0efae03b74a3f7f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070093 N: Files and directories with regex patterns.
94 N: [^a-z]tegra all files whose path contains the word tegra
95 One pattern per line. Multiple N: lines acceptable.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070096 X: Files and directories that are NOT maintained, same rules as F:
97 Files exclusions are tested before file matches.
98 Can be useful for excluding a specific subdirectory, for instance:
99 F: net/
100 X: net/ipv6/
101 matches all files in and below net excluding net/ipv6/
102 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700103 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700105 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700106 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700107 matches patches or files that contain one or more of the words
108 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700109 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111Note: For the hard of thinking, this list is meant to remain in alphabetical
112order. If you could add yourselves to it in alphabetical order that would be
113so much easier [Ed]
114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700118
Steffen Klasserta6d89912007-08-10 14:05:27 -07001193C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700120M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700121L: netdev@vger.kernel.org
122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700123F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700124F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700127M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700128L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700130F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
adam radfordc4de0ce2010-03-08 12:40:36 -08001323WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
133M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800135W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800137F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
13953C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700146M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-hams@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700152M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700153M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700156F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
1588250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800159M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700163T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800164F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700165F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000169S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700170F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001729P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Eric Van Hensbergen <ericvh@gmail.com>
174M: Ron Minnich <rminnich@sandia.gov>
175M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100176L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500177W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800178Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700181F: Documentation/filesystems/9p.txt
182F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800183
Antti Palosaari91952bc2012-10-01 12:28:46 -0300184A8293 MEDIA DRIVER
185M: Antti Palosaari <crope@iki.fi>
186L: linux-media@vger.kernel.org
187W: http://linuxtv.org/
188W: http://palosaari.fi/linux/
189Q: http://patchwork.linuxtv.org/project/linux-media/list/
190T: git git://linuxtv.org/anttip/media_tree.git
191S: Maintained
192F: drivers/media/dvb-frontends/a8293*
193
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700195M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700196L: linux-scsi@vger.kernel.org
197W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700199F: Documentation/scsi/aacraid.txt
200F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700202ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100203M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200204L: lm-sensors@lm-sensors.org
205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700206F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700209M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700210L: lm-sensors@lm-sensors.org
211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700212F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700215M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216L: linux-acenic@sunsite.dk
217S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700218F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Peter Feuerere86435e2009-06-21 18:53:03 +0200220ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700221M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500222L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700223W: http://piie.net/?section=acerhdf
224S: Maintained
225F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200226
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000227ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800228M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500229L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700234M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200235M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500236L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400237W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800238Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400239T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700241F: drivers/acpi/
242F: drivers/pnp/pnpacpi/
243F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700244F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500245
Len Brown8b59a452007-01-08 19:03:28 -0500246ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700247M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500248L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300249W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700251F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Len Brown8b59a452007-01-08 19:03:28 -0500253ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700254M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500255L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300256W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700258F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700259
Len Brown359acec2007-02-10 01:59:24 -0500260ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700261M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500266
Carlos Corbachobff431e2008-02-05 02:17:04 +0000267ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500268L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100269S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700270F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000271
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100272AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700273M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200274W: http://wiki.parisc-linux.org/AD1889
275L: linux-parisc@vger.kernel.org
276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700277F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100278
Michael Hennerich527a1a82010-10-28 11:31:28 +0000279AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
280M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100281L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700282W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000283S: Supported
284F: drivers/misc/ad525x_dpot.c
285
286AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
287M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100288L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700289W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000290S: Supported
291F: drivers/regulator/ad5398.c
292
293AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
294M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100295L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700296W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000297S: Supported
298F: drivers/input/misc/ad714x.c
299
300AD7877 TOUCHSCREEN DRIVER
301M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100302L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700303W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000304S: Supported
305F: drivers/input/touchscreen/ad7877.c
306
307AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
308M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100309L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700310W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000311S: Supported
312F: drivers/input/touchscreen/ad7879.c
313
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700314ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
315M: Jiri Kosina <jkosina@suse.cz>
316S: Maintained
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700319M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200320L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700322F: Documentation/hwmon/adm1025
323F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700326M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100327L: lm-sensors@lm-sensors.org
328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700329F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330
Michael Wucc0b88c2007-08-31 01:15:25 -0400331ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400332L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200333W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400334S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700335F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400336
Sakari Ailuse8e31622012-11-12 18:14:39 -0300337ADP1653 FLASH CONTROLLER DRIVER
338M: Sakari Ailus <sakari.ailus@iki.fi>
339L: linux-media@vger.kernel.org
340S: Maintained
341F: drivers/media/i2c/adp1653.c
342F: include/media/adp1653.h
343
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
345M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100346L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700347W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000348S: Supported
349F: drivers/mfd/adp5520.c
350F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700351F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800352F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000353F: drivers/input/keyboard/adp5520-keys.c
354
355ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
356M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100357L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700358W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000359S: Supported
360F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800361F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362
363ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
364M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100365L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700366W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000367S: Supported
368F: drivers/video/backlight/adp8860_bl.c
369
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100370ADS1015 HARDWARE MONITOR DRIVER
371M: Dirk Eibach <eibach@gdsys.de>
372L: lm-sensors@lm-sensors.org
373S: Maintained
374F: Documentation/hwmon/ads1015
375F: drivers/hwmon/ads1015.c
376F: include/linux/i2c/ads1015.h
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700379M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700381F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jean Delvareb058b852009-12-09 20:36:08 +0100383ADT7475 HARDWARE MONITOR DRIVER
384M: Jean Delvare <khali@linux-fr.org>
385L: lm-sensors@lm-sensors.org
386S: Maintained
387F: Documentation/hwmon/adt7475
388F: drivers/hwmon/adt7475.c
389
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
391M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100392L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700393W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000394S: Supported
395F: drivers/input/misc/adxl34x.c
396
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700398M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399L: linux-scsi@vger.kernel.org
400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700401F: Documentation/scsi/advansys.txt
402F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700405M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700407F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Antti Palosaari91952bc2012-10-01 12:28:46 -0300409AF9013 MEDIA DRIVER
410M: Antti Palosaari <crope@iki.fi>
411L: linux-media@vger.kernel.org
412W: http://linuxtv.org/
413W: http://palosaari.fi/linux/
414Q: http://patchwork.linuxtv.org/project/linux-media/list/
415T: git git://linuxtv.org/anttip/media_tree.git
416S: Maintained
417F: drivers/media/dvb-frontends/af9013*
418
419AF9033 MEDIA DRIVER
420M: Antti Palosaari <crope@iki.fi>
421L: linux-media@vger.kernel.org
422W: http://linuxtv.org/
423W: http://palosaari.fi/linux/
424Q: http://patchwork.linuxtv.org/project/linux-media/list/
425T: git git://linuxtv.org/anttip/media_tree.git
426S: Maintained
427F: drivers/media/dvb-frontends/af9033*
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200430L: linux-fsdevel@vger.kernel.org
431S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700432F: Documentation/filesystems/affs.txt
433F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700436M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700437L: linux-afs@lists.infradead.org
438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700439F: fs/afs/
440F: include/net/af_rxrpc.h
441F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700444M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700445T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700447F: drivers/char/agp/
448F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800449F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700452M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453L: linux-scsi@vger.kernel.org
454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/scsi/aha152x*
456F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700459M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460L: linux-scsi@vger.kernel.org
461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700462F: drivers/scsi/aic7xxx/
463F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200464
Hans Verkuil450500a2012-11-23 07:11:33 -0300465AIMSLAB FM RADIO RECEIVER DRIVER
466M: Hans Verkuil <hverkuil@xs4all.nl>
467L: linux-media@vger.kernel.org
468T: git git://linuxtv.org/media_tree.git
469W: http://linuxtv.org
470S: Maintained
471F: drivers/media/radio/radio-aimslab*
472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700474M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700475L: linux-aio@kvack.org
476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700477F: fs/aio.c
478F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700482L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483W: http://www.linux-usb.org/SpeedTouch/
484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/usb/atm/speedtch.c
486F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Pierre Ossman272f1332007-05-14 21:25:26 +0200488ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200492
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000493ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700494M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100495L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700497F: Documentation/i2c/busses/i2c-ali1563
498F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700501M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700502M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500503M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700504S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700505L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700506F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Tobias Klauseradf92512011-02-09 10:58:29 +0100508ALTERA UART/JTAG UART SERIAL DRIVERS
509M: Tobias Klauser <tklauser@distanz.ch>
510L: linux-serial@vger.kernel.org
511L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
512S: Maintained
513F: drivers/tty/serial/altera_uart.c
514F: drivers/tty/serial/altera_jtaguart.c
515F: include/linux/altera_uart.h
516F: include/linux/altera_jtaguart.h
517
Andreas Herrmann512d1022011-05-25 20:43:31 +0200518AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100519M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200520L: lm-sensors@lm-sensors.org
521S: Maintained
522F: Documentation/hwmon/fam15h_power
523F: drivers/hwmon/fam15h_power.c
524
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700525AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700526M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700527L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700530
Jordan Crousef90b8112006-01-06 00:12:14 -0800531AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800532P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700533L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800534W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700536F: drivers/char/hw_random/geode-rng.c
537F: drivers/crypto/geode*
538F: drivers/video/geode/
539F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800540
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200541AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200542M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100544T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200545S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800546F: drivers/iommu/amd_iommu*.[ch]
547F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200548
Peter Orubae7f5b302008-07-28 18:44:11 +0200549AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100550M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700551L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700553F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200554
Stelian Pop284f42b2006-12-12 18:18:31 +0100555AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700556M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100557S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200558F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100559
Tom Tuckerf94b5332006-09-22 15:22:48 -0700560AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700561M: Tom Tucker <tom@opengridcomputing.com>
562M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700563L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700565F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700566
Hans Verkuil531fca12012-11-23 06:53:24 -0300567ANALOG DEVICES INC AD9389B DRIVER
568M: Hans Verkuil <hans.verkuil@cisco.com>
569L: linux-media@vger.kernel.org
570S: Maintained
571F: drivers/media/i2c/ad9389b*
572
573ANALOG DEVICES INC ADV7604 DRIVER
574M: Hans Verkuil <hans.verkuil@cisco.com>
575L: linux-media@vger.kernel.org
576S: Maintained
577F: drivers/media/i2c/adv7604*
578
Michael Hennerich527a1a82010-10-28 11:31:28 +0000579ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200580M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100581L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700583W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000584S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100585F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200586F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000587F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000588F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100589F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400591ANALOG DEVICES INC ASOC DRIVERS
592L: uclinux-dist-devel@blackfin.uclinux.org
593L: alsa-devel@alsa-project.org (moderated for non-subscribers)
594W: http://blackfin.uclinux.org/
595S: Supported
596F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400597
Johannes Berg42269062006-07-25 16:15:50 +0200598AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000600L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700601L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700603F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200606M: Jiri Kosina <jkosina@suse.cz>
607S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700608F: arch/x86/kernel/apm_32.c
609F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800610F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200611F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700613APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700614M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700615L: linux-input@vger.kernel.org
616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700617F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700618
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700619APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200620M: Henrik Rydberg <rydberg@euromail.se>
621L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700623F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700628F: drivers/net/appletalk/
629F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Viresh Kumara4801672011-02-22 15:46:07 +0530631ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700632M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530633L: linux-ide@vger.kernel.org
634S: Maintained
635F: include/linux/pata_arasan_cf_data.h
636F: drivers/ata/pata_arasan_cf.c
637
Jaya Kumar1154ea72005-06-21 17:17:04 -0700638ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700639M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700641F: drivers/video/arcfb.c
642F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700645M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700647F: arch/arm/lib/floppydma.S
648F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Will Deacon6f965212011-07-01 14:38:53 +0100650ARM PMU PROFILING AND DEBUGGING
651M: Will Deacon <will.deacon@arm.com>
652S: Maintained
653F: arch/arm/kernel/perf_event*
654F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100655F: arch/arm/include/asm/pmu.h
656F: arch/arm/kernel/hw_breakpoint.c
657F: arch/arm/include/asm/hw_breakpoint.h
658
Russell Kingd4275352009-04-16 14:05:27 +0100659ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100662W: http://www.arm.linux.org.uk/
663S: Maintained
664F: arch/arm/
665
Stephen Boydd323c2432012-10-24 11:00:29 -0700666ARM SUB-ARCHITECTURES
667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800668S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700669F: arch/arm/mach-*/
670F: arch/arm/plat-*/
671T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
672
Russell Kingcefbf4e2009-11-22 17:40:28 +0000673ARM PRIMECELL AACI PL041 DRIVER
674M: Russell King <linux@arm.linux.org.uk>
675S: Maintained
676F: sound/arm/aaci.*
677
678ARM PRIMECELL CLCD PL110 DRIVER
679M: Russell King <linux@arm.linux.org.uk>
680S: Maintained
681F: drivers/video/amba-clcd.*
682
683ARM PRIMECELL KMI PL050 DRIVER
684M: Russell King <linux@arm.linux.org.uk>
685S: Maintained
686F: drivers/input/serio/ambakmi.*
687F: include/linux/amba/kmi.h
688
Russell King2761f5c2007-05-24 06:56:08 +0200689ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000690M: Russell King <linux@arm.linux.org.uk>
691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700692F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000693F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200694
Russell King1b4304e2013-02-11 15:26:27 +0000695ARM PRIMECELL UART PL010 AND PL011 DRIVERS
696M: Russell King <linux@arm.linux.org.uk>
697S: Maintained
698F: drivers/tty/serial/amba-pl01*.c
699F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700
Russell Kingcefbf4e2009-11-22 17:40:28 +0000701ARM PRIMECELL BUS SUPPORT
702M: Russell King <linux@arm.linux.org.uk>
703S: Maintained
704F: drivers/amba/
705F: include/linux/amba/bus.h
706
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700708M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700709L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710S: Maintained
711
Sergey Lapin9c784f92008-08-03 02:29:48 +0100712ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700713M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100715S: Maintained
716
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700718M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720S: Maintained
721
Maxime Ripard1b106692012-11-15 21:51:26 +0100722ARM/Allwinner A1X SoC support
723M: Maxime Ripard <maxime.ripard@free-electrons.com>
724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
725S: Maintained
726F: arch/arm/mach-sunxi/
727
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800728ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700729M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800730M: Nicolas Ferre <nicolas.ferre@atmel.com>
731M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200733W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800734W: http://www.linux4sam.org
735S: Supported
736F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100737
Rob Herring986cf2e2011-06-22 11:28:53 -0500738ARM/CALXEDA HIGHBANK ARCHITECTURE
739M: Rob Herring <rob.herring@calxeda.com>
740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
741S: Maintained
742F: arch/arm/mach-highbank/
743
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300744ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
745M: Anton Vorontsov <avorontsov@mvista.com>
746S: Maintained
747F: arch/arm/mach-cns3xxx/
748T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
749
Alexander Shiyan386ab512012-11-17 17:57:24 +0400750ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
751M: Alexander Shiyan <shc_work@mail.ru>
752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
753S: Odd Fixes
754F: arch/arm/mach-clps711x/
755
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800756ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100757M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000758M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800760S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100761F: arch/arm/mach-ep93xx/
762F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800763
764ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700765M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800767S: Maintained
768
Russell Kingd4275352009-04-16 14:05:27 +0100769ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700771L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700772S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100773F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700774F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100775
Mike Rapoportd48134e2008-08-20 09:03:26 +0100776ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700777M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700778L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100779S: Maintained
780
Hubert Feurstein94150092009-10-07 08:36:07 +0100781ARM/CONTEC MICRO9 MACHINE SUPPORT
782M: Hubert Feurstein <hubert.feurstein@contec.at>
783S: Maintained
784F: arch/arm/mach-ep93xx/micro9.c
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788S: Maintained
789
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200790ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100791M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100793T: git git://git.berlios.de/gemini-board
794S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300795F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200796
Barry Songa990cbd2011-07-12 21:44:10 +0800797ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
798M: Barry Song <baohua.song@csr.com>
799L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
800S: Maintained
801F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800802F: drivers/dma/sirf-dma.c
803F: drivers/i2c/busses/i2c-sirf.c
Barry Songb3b665b2013-03-21 16:27:19 +0800804F: drivers/mmc/host/sdhci-sirf.c
Barry Song47ac3e42012-04-30 11:23:23 +0800805F: drivers/pinctrl/pinctrl-sirf.c
806F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800807
Russell Kingd4275352009-04-16 14:05:27 +0100808ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700809M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100811W: http://www.arm.linux.org.uk/
812S: Maintained
813F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700814F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100815
Russell Kinga9da4f72008-07-12 21:42:04 +0100816ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700817M: Daniel Ribeiro <drwyrm@gmail.com>
818M: Stefan Schmidt <stefan@openezx.org>
819M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200820L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100821W: http://www.openezx.org/
822S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200823T: topgit git://git.openezx.org/openezx.git
824F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100825
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200826ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100827M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700828L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100829S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700830T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300831F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200832
Russell Kingd4275352009-04-16 14:05:27 +0100833ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700834M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700835L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100836W: http://www.arm.linux.org.uk/
837S: Maintained
838F: arch/arm/include/asm/hardware/dec21285.h
839F: arch/arm/mach-footbridge/
840
Sascha Hauer86183a52008-07-24 23:50:35 +0200841ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700842M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700843L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200844S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700845T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100846F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700847F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200848
Shawn Guo8bcb97652011-10-07 22:24:18 +0800849ARM/FREESCALE IMX6
850M: Shawn Guo <shawn.guo@linaro.org>
851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
852S: Maintained
853T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
854F: arch/arm/mach-imx/*imx6*
855
Shawn Guoa9866a02011-10-21 11:53:34 +0800856ARM/FREESCALE MXS ARM ARCHITECTURE
857M: Shawn Guo <shawn.guo@linaro.org>
858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859S: Maintained
860T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
861F: arch/arm/mach-mxs/
862
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700864M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866S: Maintained
867
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100868ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700869M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100871S: Maintained
872
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200873ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700874M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100875M: Paul Parsons <lost.distance@yahoo.com>
876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200877S: Maintained
878F: arch/arm/mach-pxa/hx4700.c
879F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100880F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200881
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100882ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700883M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200884W: www.jlime.com
885S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700886T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
887F: arch/arm/mach-sa1100/jornada720.c
888F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100889
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200890ARM/IGEP MACHINE SUPPORT
891M: Enric Balletbo i Serra <eballetbo@gmail.com>
892M: Javier Martinez Canillas <javier@dowhile0.org>
893L: linux-omap@vger.kernel.org
894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
895S: Maintained
896F: arch/arm/mach-omap2/board-igep0020.c
897
Marek Vasut403d2972010-05-22 00:29:39 +0200898ARM/INCOME PXA270 SUPPORT
899M: Marek Vasut <marek.vasut@gmail.com>
900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700902F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200903
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800904ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700905M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700906M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700908S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100909
910ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700911M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700913S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800914
915ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700916M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700917M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700919S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800920
921ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700922M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700923M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700925S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800926
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800930S: Maintained
931
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200932ARM/INTEL IXP4XX ARM ARCHITECTURE
933M: Imre Kaloz <kaloz@openwrt.org>
934M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200936S: Maintained
937F: arch/arm/mach-ixp4xx/
938
Joe Perches838553c2010-10-26 14:22:59 -0700939ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100940M: Jonathan Cameron <jic23@cam.ac.uk>
941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942S: Maintained
943F: arch/arm/mach-pxa/stargate2.c
944F: drivers/pcmcia/pxa2xx_stargate2.c
945
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800946ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700947M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700948M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700950S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800951
952ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700953M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800955S: Maintained
956
957ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700958M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800960S: Maintained
961
Philipp Zabel3b8861712008-07-09 21:27:15 +0100962ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700963M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100964S: Maintained
965
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200966ARM/Marvell Armada 370 and Armada XP SOC support
967M: Jason Cooper <jason@lakedaemon.net>
968M: Andrew Lunn <andrew@lunn.ch>
969M: Gregory Clement <gregory.clement@free-electrons.com>
970L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971S: Maintained
972F: arch/arm/mach-mvebu/
973
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400974ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
975M: Jason Cooper <jason@lakedaemon.net>
976M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400978S: Maintained
979F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400980F: arch/arm/mach-kirkwood/
981F: arch/arm/mach-mv78xx0/
982F: arch/arm/mach-orion5x/
983F: arch/arm/plat-orion/
984
Alexander Clouterd69ac132011-04-14 15:22:02 -0700985ARM/Orion SoC/Technologic Systems TS-78xx platform support
986M: Alexander Clouter <alex@digriz.org.uk>
987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
988W: http://www.digriz.org.uk/ts78xx/kernel
989S: Maintained
990F: arch/arm/mach-orion5x/ts78xx-*
991
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000992ARM/MICREL KS8695 ARCHITECTURE
993M: Greg Ungerer <gerg@uclinux.org>
994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995F: arch/arm/mach-ks8695
996S: Odd Fixes
997
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200998ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700999M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001000L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001001F: arch/arm/mach-pxa/mioa701.c
1002S: Maintained
1003
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001004ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001005M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001006S: Maintained
1007
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001008ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001009M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001010M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001011M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1012L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1013S: Maintained
1014F: arch/arm/mach-nomadik/
1015F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001016F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001017T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001018
Andy Green9d762952009-05-19 06:41:42 -03001019ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001020M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001021L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1022W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1023S: Supported
1024
Daniel Walker0c19d212009-12-07 16:53:51 -08001025ARM/QUALCOMM MSM MACHINE SUPPORT
1026M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001027M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001028M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001029L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001030F: arch/arm/mach-msm/
1031F: drivers/video/msm/
1032F: drivers/mmc/host/msm_sdcc.c
1033F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001034F: drivers/tty/serial/msm_serial.h
1035F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001036F: drivers/*/pm8???-*
David Browncd9a8fb2013-03-12 11:41:55 -07001037F: drivers/ssbi/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001038F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001039T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001040S: Maintained
1041
Dirk Opfer8459c152005-11-06 14:27:52 +00001042ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001043M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1044M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001045S: Maintained
1046
Marek Vasut5d783a22009-07-16 13:26:48 +02001047ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001048M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001049L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001050W: http://hackndev.com
1051S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001052F: arch/arm/mach-pxa/include/mach/palmtx.h
1053F: arch/arm/mach-pxa/palmtx.c
1054F: arch/arm/mach-pxa/include/mach/palmt5.h
1055F: arch/arm/mach-pxa/palmt5.c
1056F: arch/arm/mach-pxa/include/mach/palmld.h
1057F: arch/arm/mach-pxa/palmld.c
1058F: arch/arm/mach-pxa/include/mach/palmte2.h
1059F: arch/arm/mach-pxa/palmte2.c
1060F: arch/arm/mach-pxa/include/mach/palmtc.h
1061F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001062
Joe Perchesb57fe922009-12-14 18:00:52 -08001063ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001064M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001065L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001066W: http://hackndev.com
1067S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001068F: arch/arm/mach-pxa/include/mach/palmtreo.h
1069F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001070
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001071ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001073L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001074W: http://hackndev.com
1075S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001076F: arch/arm/mach-pxa/include/mach/palmz72.h
1077F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001080M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1082S: Maintained
1083
1084ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001085M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001086L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087W: http://www.arm.linux.org.uk/
1088S: Maintained
1089
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001090ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001091M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001093S: Maintained
1094
Russell Kingd4275352009-04-16 14:05:27 +01001095ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001096M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001098W: http://www.arm.linux.org.uk/
1099S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001100F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1101F: arch/arm/include/asm/hardware/ioc.h
1102F: arch/arm/include/asm/hardware/iomd.h
1103F: arch/arm/include/asm/hardware/memc.h
1104F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001105F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001106F: drivers/net/ethernet/i825xx/ether1*
1107F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001108F: drivers/scsi/arm/
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001111M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112W: http://www.shark-linux.de/shark.html
1113S: Maintained
1114
Ben Dooksb21477f2009-06-13 10:46:34 +01001115ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001116M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001117M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001118L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001119L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001120W: http://www.fluff.org/ben/linux/
1121S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001122F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001123F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001124F: arch/arm/mach-s3c24*/
1125F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001126F: drivers/*/*s3c2410*
1127F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001128F: drivers/spi/spi-s3c*
1129F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001131ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001132M: Kukjin Kim <kgene.kim@samsung.com>
1133L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1134L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1135S: Maintained
1136F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001137F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001138
Kyungmin Park10ffa962011-03-04 17:36:26 -08001139ARM/SAMSUNG MOBILE MACHINE SUPPORT
1140M: Kyungmin Park <kyungmin.park@samsung.com>
1141L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142S: Maintained
1143F: arch/arm/mach-s5pv210/mach-aquila.c
1144F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001145F: arch/arm/mach-exynos/mach-universal_c210.c
1146F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001147
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001148ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1149M: Kyungmin Park <kyungmin.park@samsung.com>
1150M: Kamil Debski <k.debski@samsung.com>
1151L: linux-arm-kernel@lists.infradead.org
1152L: linux-media@vger.kernel.org
1153S: Maintained
1154F: drivers/media/platform/s5p-g2d/
1155
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001156ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1157M: Kyungmin Park <kyungmin.park@samsung.com>
1158M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1159L: linux-arm-kernel@lists.infradead.org
1160L: linux-media@vger.kernel.org
1161S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001162F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001163F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001164
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001165ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1166M: Kyungmin Park <kyungmin.park@samsung.com>
1167M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001168M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001169L: linux-arm-kernel@lists.infradead.org
1170L: linux-media@vger.kernel.org
1171S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001172F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001173F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001174
1175ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1176M: Kyungmin Park <kyungmin.park@samsung.com>
1177M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1178L: linux-arm-kernel@lists.infradead.org
1179L: linux-media@vger.kernel.org
1180S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001181F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001182
Paul Mundtd48d38e2010-02-08 12:50:24 +09001183ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001184M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001185M: Magnus Damm <magnus.damm@gmail.com>
1186L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001187W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001188Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001189T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001190S: Supported
1191F: arch/arm/mach-shmobile/
1192F: drivers/sh/
1193
Dinh Nguyen66314222012-07-18 16:07:18 -06001194ARM/SOCFPGA ARCHITECTURE
1195M: Dinh Nguyen <dinguyen@altera.com>
1196S: Maintained
1197F: arch/arm/mach-socfpga/
1198
1199ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1200M: Dinh Nguyen <dinguyen@altera.com>
1201S: Maintained
1202F: drivers/clk/socfpga/
1203
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001204ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001205M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001206L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001207S: Maintained
1208
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001209ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001210M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001211L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1212S: Maintained
1213
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001214ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001215M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001217S: Maintained
1218
wanzongshun98ad6e32009-02-13 06:04:32 +01001219ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001220M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001222W: http://www.mcuos.com
1223S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001224F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001225F: drivers/input/keyboard/w90p910_keypad.c
1226F: drivers/input/touchscreen/w90p910_ts.c
1227F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001228F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001229F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001230F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001231F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001232F: drivers/usb/host/ehci-w90x900.c
1233F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001234
Linus Walleij54274d72010-04-04 10:58:03 +01001235ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001236M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001237L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1238S: Supported
1239F: arch/arm/mach-u300/
1240F: drivers/i2c/busses/i2c-stu300.c
1241F: drivers/rtc/rtc-coh901331.c
1242F: drivers/watchdog/coh901327_wdt.c
1243F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001244F: drivers/mfd/ab3100*
1245F: drivers/rtc/rtc-ab3100.c
1246F: drivers/rtc/rtc-coh901331.c
1247T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001248
Linus Walleij87572882010-12-22 09:18:29 +01001249ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001250M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001251M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001252L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1253S: Maintained
1254F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001255F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001256F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001257F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001258F: drivers/mfd/abx500*
1259F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001260F: drivers/mfd/dbx500*
1261F: drivers/mfd/db8500*
1262F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001263F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001264F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001265T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001266
Russell Kingd4275352009-04-16 14:05:27 +01001267ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001268M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001270W: http://www.arm.linux.org.uk/
1271S: Maintained
1272F: arch/arm/vfp/
1273
Marek Vasute66b6d82010-03-26 06:51:32 +01001274ARM/VOIPAC PXA270 SUPPORT
1275M: Marek Vasut <marek.vasut@gmail.com>
1276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277S: Maintained
1278F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001279F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001280
Tony Prisk04529fe2012-07-24 04:19:37 +12001281ARM/VT8500 ARM ARCHITECTURE
1282M: Tony Prisk <linux@prisktech.co.nz>
1283L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284S: Maintained
1285F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001286F: drivers/clocksource/vt8500_timer.c
1287F: drivers/gpio/gpio-vt8500.c
1288F: drivers/mmc/host/wmt-sdmmc.c
1289F: drivers/pwm/pwm-vt8500.c
1290F: drivers/rtc/rtc-vt8500.c
1291F: drivers/tty/serial/vt8500_serial.c
1292F: drivers/usb/host/ehci-vt8500.c
1293F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001294F: drivers/video/vt8500lcdfb.*
1295F: drivers/video/wm8505fb*
1296F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001297
Marek Vasute66b6d82010-03-26 06:51:32 +01001298ARM/ZIPIT Z2 SUPPORT
1299M: Marek Vasut <marek.vasut@gmail.com>
1300L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301S: Maintained
1302F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001303F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001304
Michal Simek51f29d42013-01-21 17:41:46 +01001305ARM/ZYNQ ARCHITECTURE
1306M: Michal Simek <michal.simek@xilinx.com>
1307L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308W: http://wiki.xilinx.com
1309T: git git://git.xilinx.com/linux-xlnx.git
1310S: Supported
1311F: arch/arm/mach-zynq/
1312
Catalin Marinas38074222012-03-05 11:49:34 +00001313ARM64 PORT (AARCH64 ARCHITECTURE)
1314M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001315M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317S: Maintained
1318F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001319F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001320
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001321AS3645A LED FLASH CONTROLLER DRIVER
1322M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1323L: linux-media@vger.kernel.org
1324T: git git://linuxtv.org/media_tree.git
1325S: Maintained
1326F: drivers/media/i2c/as3645a.c
1327F: include/media/as3645a.h
1328
George Josephd58de032010-03-05 22:17:25 +01001329ASC7621 HARDWARE MONITOR DRIVER
1330M: George Joseph <george.joseph@fairview5.com>
1331L: lm-sensors@lm-sensors.org
1332S: Maintained
1333F: Documentation/hwmon/asc7621
1334F: drivers/hwmon/asc7621.c
1335
Corentin Charyb229ece2011-02-26 10:20:40 +01001336ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001337M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001339L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001340W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001342F: drivers/platform/x86/asus*.c
1343F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Andrew Morton953a6472008-11-06 12:53:28 -08001345ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001346M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001347W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001349F: Documentation/crypto/async-tx-api.txt
1350F: crypto/async_tx/
1351F: drivers/dma/
1352F: include/linux/dmaengine.h
1353F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001354
Wolfram Sanga1867d32009-09-18 22:45:51 +02001355AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001356M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001357L: linux-i2c@vger.kernel.org
1358S: Maintained
1359F: drivers/misc/eeprom/at24.c
1360F: include/linux/i2c/at24.h
1361
Randy Dunlape7839f22008-10-12 16:11:45 -07001362ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001363M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001364W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001366F: Documentation/aoe/
1367F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Joe Perches9a10a872010-12-01 09:37:55 -08001369ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001370M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001371L: linux-wireless@vger.kernel.org
1372S: Supported
1373F: drivers/net/wireless/ath/*
1374
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001375ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001376M: Jiri Slaby <jirislaby@gmail.com>
1377M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001378M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001379L: linux-wireless@vger.kernel.org
1380L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001381W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001382S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001383F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001384
Kalle Valo12e62d62011-09-13 10:21:25 +03001385ATHEROS ATH6KL WIRELESS DRIVER
1386M: Kalle Valo <kvalo@qca.qualcomm.com>
1387L: linux-wireless@vger.kernel.org
1388W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1389T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1390S: Supported
1391F: drivers/net/wireless/ath/ath6kl/
1392
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001393ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001394M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1395M: Jouni Malinen <jouni@qca.qualcomm.com>
1396M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1397M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001398L: linux-wireless@vger.kernel.org
1399L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001400W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001401S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001402F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001403
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001404WILOCITY WIL6210 WIRELESS DRIVER
1405M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1406L: linux-wireless@vger.kernel.org
1407L: wil6210@qca.qualcomm.com
1408S: Supported
1409W: http://wireless.kernel.org/en/users/Drivers/wil6210
1410F: drivers/net/wireless/ath/wil6210/
1411
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001412CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1413M: Christian Lamparter <chunkeey@googlemail.com>
1414L: linux-wireless@vger.kernel.org
1415W: http://wireless.kernel.org/en/users/Drivers/carl9170
1416S: Maintained
1417F: drivers/net/wireless/ath/carl9170/
1418
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001419ATK0110 HWMON DRIVER
1420M: Luca Tettamanti <kronos.it@gmail.com>
1421L: lm-sensors@lm-sensors.org
1422S: Maintained
1423F: drivers/hwmon/asus_atk0110.c
1424
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001425ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001428F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001429
Chris Snook7ae115b2008-09-09 03:26:57 -04001430ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001431M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001432M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001433L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001434W: http://sourceforge.net/projects/atl1
1435W: http://atl1.sourceforge.net
1436S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001437F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001440M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001441L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001442L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443W: http://linux-atm.sourceforge.net
1444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001445F: drivers/atm/
1446F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001447F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001449ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001450M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001451S: Maintained
1452F: drivers/mmc/host/atmel-mci.c
1453F: drivers/mmc/host/atmel-mci-regs.h
1454
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001455ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001456M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001457S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001458F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001459
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001460ATMEL DMA DRIVER
1461M: Nicolas Ferre <nicolas.ferre@atmel.com>
1462L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1463S: Supported
1464F: drivers/dma/at_hdmac.c
1465F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001466F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001467
Ludovic Desroches888f2802013-03-15 05:32:57 +00001468ATMEL I2C DRIVER
1469M: Ludovic Desroches <ludovic.desroches@atmel.com>
1470L: linux-i2c@vger.kernel.org
1471S: Supported
1472F: drivers/i2c/busses/i2c-at91.c
1473
Josh Wu15515542012-03-23 17:56:29 +08001474ATMEL ISI DRIVER
1475M: Josh Wu <josh.wu@atmel.com>
1476L: linux-media@vger.kernel.org
1477S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001478F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001479F: include/media/atmel-isi.h
1480
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001481ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001482M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001483L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001485F: drivers/video/atmel_lcdfb.c
1486F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001487
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001488ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001489M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001490S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001491F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001492
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001493ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001494M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001495S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001496F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001497
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001498ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1499M: Nicolas Ferre <nicolas.ferre@atmel.com>
1500L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501S: Supported
1502F: drivers/misc/atmel_tclib.c
1503F: drivers/clocksource/tcb_clksrc.c
1504
Josh Wuff2675d2012-03-23 17:56:55 +08001505ATMEL TSADCC DRIVER
1506M: Josh Wu <josh.wu@atmel.com>
1507L: linux-input@vger.kernel.org
1508S: Supported
1509F: drivers/input/touchscreen/atmel_tsadcc.c
1510
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001511ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001512M: Nicolas Ferre <nicolas.ferre@atmel.com>
1513L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001515F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001518M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001519L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520W: http://www.thekelleys.org.uk/atmel
1521W: http://atmelwlandriver.sourceforge.net/
1522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001523F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Chris Wrighta92b7b82005-07-07 18:12:23 -07001525AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001526M: Al Viro <viro@zeniv.linux.org.uk>
1527M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001528L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001529W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001530T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001533F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001534F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001535
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001536AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001538W: http://miguelojeda.es/auxdisplay.htm
1539W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001541F: drivers/auxdisplay/
1542F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001543
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001544AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001545M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1546M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001547W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001548W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001549W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001551F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001552
1553AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001554M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1555M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001562W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001564F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001565F: include/net/ax25.h
1566F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001568AZ6007 DVB DRIVER
1569M: Mauro Carvalho Chehab <mchehab@redhat.com>
1570L: linux-media@vger.kernel.org
1571W: http://linuxtv.org
1572T: git git://linuxtv.org/media_tree.git
1573S: Maintained
1574F: drivers/media/usb/dvb-usb-v2/az6007.c
1575
Hans Verkuil67773762012-11-23 07:09:23 -03001576AZTECH FM RADIO RECEIVER DRIVER
1577M: Hans Verkuil <hverkuil@xs4all.nl>
1578L: linux-media@vger.kernel.org
1579T: git git://linuxtv.org/media_tree.git
1580W: http://linuxtv.org
1581S: Maintained
1582F: drivers/media/radio/radio-aztech*
1583
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001584B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001586L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001587L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001588W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001590F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591
1592B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Larry Finger <Larry.Finger@lwfinger.net>
1594M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001595L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001596L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001597W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001599F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001600
Richard Purdie300abeb2007-02-07 22:21:07 +00001601BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001604F: drivers/video/backlight/
1605F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001606
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001607BATMAN ADVANCED
1608M: Marek Lindner <lindner_marek@yahoo.de>
1609M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001610M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001611L: b.a.t.m.a.n@lists.open-mesh.org
1612W: http://www.open-mesh.org/
1613S: Maintained
1614F: net/batman-adv/
1615
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001616BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001617M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618L: linux-hams@vger.kernel.org
1619W: http://www.baycom.org/~tom/ham/ham.html
1620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001621F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001622
Kent Overstreetcafe5632013-03-23 16:11:31 -07001623BCACHE (BLOCK LAYER CACHE)
1624M: Kent Overstreet <koverstreet@google.com>
1625L: linux-bcache@vger.kernel.org
1626W: http://bcache.evilpiepirate.org
1627S: Maintained:
1628F: drivers/md/bcache/
1629
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001630BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001631S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001632F: Documentation/filesystems/befs.txt
1633F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001634
1635BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001638F: Documentation/filesystems/bfs.txt
1639F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001640F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001641
Bryan Wu1394f032007-05-06 14:50:22 -07001642BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001643M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001644L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001645W: http://blackfin.uclinux.org
1646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001647F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001648
Bryan Wue190d6b2007-07-17 14:43:44 +08001649BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001650L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001651W: http://blackfin.uclinux.org
1652S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001653F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001654
Mike Frysinger566da5b2007-06-11 15:31:30 +08001655BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001657L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001658W: http://blackfin.uclinux.org
1659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001660F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001661
Mike Frysinger936ed492010-03-10 15:20:38 -08001662BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001663M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001664L: uclinux-dist-devel@blackfin.uclinux.org
1665W: http://blackfin.uclinux.org
1666S: Supported
1667F: drivers/mmc/host/bfin_sdh.c
1668
Bryan Wu1394f032007-05-06 14:50:22 -07001669BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001671L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001672W: http://blackfin.uclinux.org
1673S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001674F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001675
Bryan Wu1e6d3202007-07-15 02:50:02 +08001676BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001678L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001679W: http://blackfin.uclinux.org
1680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001682
Bryan Wud24ecfc2007-05-01 23:26:32 +02001683BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001684M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001685L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001686W: http://blackfin.uclinux.org/
1687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001688F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001689
Scott Jiang1e204372013-01-18 17:09:47 -03001690BLACKFIN MEDIA DRIVER
1691M: Scott Jiang <scott.jiang.linux@gmail.com>
1692L: uclinux-dist-devel@blackfin.uclinux.org
1693W: http://blackfin.uclinux.org/
1694S: Supported
1695F: drivers/media/platform/blackfin/
1696F: drivers/media/i2c/adv7183*
1697F: drivers/media/i2c/vs6624*
1698
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001699BLINKM RGB LED DRIVER
1700M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1701S: Maintained
1702F: drivers/leds/leds-blinkm.c
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001706T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001708F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Joern Engel2b54aae2008-02-06 01:38:02 -08001710BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001711M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001712L: linux-mtd@lists.infradead.org
1713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001715
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001716BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001718M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001719M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001720L: linux-bluetooth@vger.kernel.org
1721W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1723T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001728M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001729M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001730M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001731L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001732W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001733T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1734T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001736F: net/bluetooth/
1737F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001740M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001741M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001742L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001743W: http://sourceforge.net/projects/bonding/
1744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001745F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001746F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Gary Zambrano39105892006-06-22 17:26:20 -07001748BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001749M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001750L: netdev@vger.kernel.org
1751S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001752F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001753
Michael Chan948c51e2006-06-04 02:51:39 -07001754BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001755M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001756L: netdev@vger.kernel.org
1757S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001758F: drivers/net/ethernet/broadcom/bnx2.*
1759F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001760
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001761BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001762M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001763L: netdev@vger.kernel.org
1764S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001765F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001766
Stephen Warrenf680f252012-09-15 00:18:54 -06001767BROADCOM BCM2835 ARM ARCHICTURE
1768M: Stephen Warren <swarren@wwwdotorg.org>
1769L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1770T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1771S: Maintained
1772F: arch/arm/mach-bcm2835/
1773F: arch/arm/boot/dts/bcm2835*
1774F: arch/arm/configs/bcm2835_defconfig
1775F: drivers/*/*bcm2835*
1776
Michael Chan948c51e2006-06-04 02:51:39 -07001777BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001778M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001779M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001780L: netdev@vger.kernel.org
1781S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001782F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001783
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001784BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1785M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001786M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001787M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001788M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001789L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001790L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001791S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001792F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001793
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001794BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1795M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1796L: linux-scsi@vger.kernel.org
1797S: Supported
1798F: drivers/scsi/bnx2fc/
1799
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001800BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1801M: Rafał Miłecki <zajec5@gmail.com>
1802L: linux-wireless@vger.kernel.org
1803S: Maintained
1804F: drivers/bcma/
1805F: include/linux/bcma/
1806
Jing Huang7725ccf2009-09-23 17:46:15 -07001807BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001808M: Anil Gurumurthy <agurumur@brocade.com>
1809M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001810L: linux-scsi@vger.kernel.org
1811S: Supported
1812F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001813
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001814BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1815M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001816L: netdev@vger.kernel.org
1817S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001818F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001819
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001820BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001822L: linux-scsi@vger.kernel.org
1823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001824F: block/bsg.c
1825F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001826F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001827
Clemens Ladischaf399172011-01-10 16:32:54 +01001828BT87X AUDIO DRIVER
1829M: Clemens Ladisch <clemens@ladisch.de>
1830L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1831T: git git://git.alsa-project.org/alsa-kernel.git
1832S: Maintained
1833F: Documentation/sound/alsa/Bt87x.txt
1834F: sound/pci/bt87x.c
1835
Michael Bueschff1d5c22008-07-25 01:46:10 -07001836BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001837M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001838W: http://bu3sch.de/btgpio.php
1839S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001840F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001841
Joe Percheseb1eb042009-01-21 10:49:16 -05001842BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001843M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001844L: linux-btrfs@vger.kernel.org
1845W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001846Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001847T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001849F: Documentation/filesystems/btrfs.txt
1850F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001853M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001854L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001855W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001856T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001857S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001858F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001859F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Clemens Ladischaf399172011-01-10 16:32:54 +01001861C-MEDIA CMI8788 DRIVER
1862M: Clemens Ladisch <clemens@ladisch.de>
1863L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1864T: git git://git.alsa-project.org/alsa-kernel.git
1865S: Maintained
1866F: sound/pci/oxygen/
1867
Mark Salter21413552011-10-04 11:21:42 -04001868C6X ARCHITECTURE
1869M: Mark Salter <msalter@redhat.com>
1870M: Aurelien Jacquiot <a-jacquiot@ti.com>
1871L: linux-c6x-dev@linux-c6x.org
1872W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1873S: Maintained
1874F: arch/c6x/
1875
David Howellsa5432f5a2009-04-20 15:46:45 +01001876CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001877M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001878L: linux-cachefs@redhat.com
1879S: Supported
1880F: Documentation/filesystems/caching/cachefiles.txt
1881F: fs/cachefiles/
1882
Hans Verkuilc815ca32012-11-23 07:05:54 -03001883CADET FM/AM RADIO RECEIVER DRIVER
1884M: Hans Verkuil <hverkuil@xs4all.nl>
1885L: linux-media@vger.kernel.org
1886T: git git://linuxtv.org/media_tree.git
1887W: http://linuxtv.org
1888S: Maintained
1889F: drivers/media/radio/radio-cadet*
1890
Jonathan Corbet77d51402007-03-22 19:44:17 -03001891CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001892M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001893L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001894T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001896F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001897F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001898
Joe Perches201b6ba2010-09-07 20:33:24 +00001899CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001900M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001901L: netdev@vger.kernel.org
1902S: Supported
1903F: Documentation/networking/caif/
1904F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001905F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001906F: include/net/caif/
1907F: net/caif/
1908
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001909CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001910M: Muli Ben-Yehuda <muli@il.ibm.com>
1911M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001912L: discuss@x86-64.org
1913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001914F: arch/x86/kernel/pci-calgary_64.c
1915F: arch/x86/kernel/tce_64.c
1916F: arch/x86/include/asm/calgary.h
1917F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001918
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001919CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001920M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001921L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001922W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001923T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001924S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001925F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001926F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001927F: include/uapi/linux/can.h
1928F: include/uapi/linux/can/bcm.h
1929F: include/uapi/linux/can/raw.h
1930F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001931
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001932CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001933M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001934M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001935L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001936W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001937T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001938S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001939F: drivers/net/can/
1940F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001941F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001942F: include/uapi/linux/can/error.h
1943F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001944
James Morris95d16c72012-03-16 12:05:48 +11001945CAPABILITIES
1946M: Serge Hallyn <serge.hallyn@canonical.com>
1947L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001948S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001949F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001950F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001951F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001952F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001953F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001954
Arnd Bergmannb8154542008-05-16 11:10:59 +02001955CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001956M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001957L: linuxppc-dev@lists.ozlabs.org
1958L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001959W: http://www.ibm.com/developerworks/power/cell/
1960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001961F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001962F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001963F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001964F: arch/powerpc/oprofile/*cell*
1965F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001966
Sage Weil9030aaf2009-10-06 11:31:15 -07001967CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001968M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001969L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001970W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001971T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001972S: Supported
1973F: Documentation/filesystems/ceph.txt
1974F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001975F: net/ceph
1976F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001977F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001978
David Vrabel18332a82008-09-17 16:34:44 +01001979CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001980L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001981S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001982F: Documentation/usb/WUSB-Design-overview.txt
1983F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001984F: drivers/usb/host/hwa-hc.c
1985F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001986F: drivers/usb/wusbcore/
1987F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001988
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001989CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001990M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001991W: http://miguelojeda.es/auxdisplay.htm
1992W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001994F: drivers/auxdisplay/cfag12864b.c
1995F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001996
1997CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001998M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001999W: http://miguelojeda.es/auxdisplay.htm
2000W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002002F: drivers/auxdisplay/cfag12864bfb.c
2003F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002004
Johannes Berg704232c2007-04-23 12:20:05 -07002005CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002006M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002007L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002008W: http://wireless.kernel.org/
2009T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2010T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002011S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002012F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002013F: include/net/cfg80211.h
2014F: net/wireless/*
2015X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002016
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002017CHAR and MISC DRIVERS
2018M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002019M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002020T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002021S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002022F: drivers/char/*
2023F: drivers/misc/*
2024
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002025CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002027M: Joe Perches <joe@perches.com>
2028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002029F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002030
Harry Weif8407f262011-02-25 14:44:15 -08002031CHINESE DOCUMENTATION
2032M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002033L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002034L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2035S: Maintained
2036F: Documentation/zh_CN/
2037
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002038CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2039M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2040L: linux-usb@vger.kernel.org
2041S: Maintained
2042F: drivers/usb/chipidea/
2043
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002044CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002045M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002046M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002047M: Neel Patel <neepatel@cisco.com>
2048M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002049S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002050F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002051
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002052CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002053M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002054L: netdev@vger.kernel.org
2055S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002056F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002057
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002058CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002059M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002060L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002063
Timur Tabid9e9d822008-04-24 08:45:26 +10002064CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002065M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002066L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002067S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002068F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002069
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002070CLEANCACHE API
2071M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2072L: linux-kernel@vger.kernel.org
2073S: Maintained
2074F: mm/cleancache.c
2075F: include/linux/cleancache.h
2076
Russell Kingd4275352009-04-16 14:05:27 +01002077CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002078M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002079S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002080F: include/linux/clk.h
2081
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002082CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002083M: Hiral Patel <hiralpat@cisco.com>
2084M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002085M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002086L: linux-scsi@vger.kernel.org
2087S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002088F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002089
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002090CMPC ACPI DRIVER
2091M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2092M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002093L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002094S: Supported
2095F: drivers/platform/x86/classmate-laptop.c
2096
Nicolas Palix74425ee2010-06-06 17:15:01 +02002097COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002098M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002099M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002100M: Nicolas Palix <nicolas.palix@imag.fr>
2101L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002102W: http://coccinelle.lip6.fr/
2103S: Supported
2104F: scripts/coccinelle/
2105F: scripts/coccicheck
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002108M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109M: coda@cs.cmu.edu
2110L: codalist@coda.cs.cmu.edu
2111W: http://www.coda.cs.cmu.edu/
2112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002113F: Documentation/filesystems/coda.txt
2114F: fs/coda/
2115F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002116F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Mike Turquette7704add2012-05-02 18:37:45 -07002118COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002119M: Mike Turquette <mturquette@linaro.org>
2120L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2121T: git git://git.linaro.org/people/mturquette/linux.git
2122S: Maintained
2123F: drivers/clk/clk.c
2124F: drivers/clk/clk-*
2125F: include/linux/clk-pr*
2126
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002127COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002129L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002130L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002131W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002132Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002133T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002135F: Documentation/filesystems/cifs.txt
2136F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002140L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002145M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002146L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002148F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002151M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002152L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002154F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002156COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002157M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002158L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002161
Simon Arlott949be0f2007-03-06 02:47:46 -08002162CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002163M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002164L: accessrunner-general@lists.sourceforge.net
2165W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002167F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002168
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002169CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002170M: Joel Becker <jlbec@evilplan.org>
2171T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002173F: fs/configfs/
2174F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002175
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002176CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002177M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002178L: netdev@vger.kernel.org
2179S: Maintained
2180F: drivers/connector/
2181
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002182CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002183M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002184M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002185L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002186L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002187T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002189F: include/linux/cgroup*
2190F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002191F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002192
Rudolf Marekbebe4672007-05-08 17:22:02 +02002193CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002194M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002195L: lm-sensors@lm-sensors.org
2196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002197F: Documentation/hwmon/coretemp
2198F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002201M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202W: http://www.fi.muni.cz/~kas/cosa/
2203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002204F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Florian Fainelli4371ee32009-06-01 02:43:17 -07002206CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002207M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002208L: netdev@vger.kernel.org
2209S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002210F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002213M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002214M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002215L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002216L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217S: Maintained
viresh kumar45c009a2013-04-26 12:53:16 +00002218T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perches679655d2009-04-07 20:44:32 -07002219F: drivers/cpufreq/
2220F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002222CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2223M: Viresh Kumar <viresh.kumar@linaro.org>
2224M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2225L: cpufreq@vger.kernel.org
2226L: linux-pm@vger.kernel.org
2227W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2228S: Maintained
2229F: drivers/cpufreq/arm_big_little.h
2230F: drivers/cpufreq/arm_big_little.c
2231F: drivers/cpufreq/arm_big_little_dt.c
2232
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002233CPUIDLE DRIVERS
2234M: Rafael J. Wysocki <rjw@sisk.pl>
2235M: Daniel Lezcano <daniel.lezcano@linaro.org>
2236L: linux-pm@vger.kernel.org
2237S: Maintained
2238T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2239F: drivers/cpuidle/*
2240F: include/linux/cpuidle.h
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002243M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002245F: arch/x86/kernel/cpuid.c
2246F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002248CPU POWER MONITORING SUBSYSTEM
2249M: Dominik Brodowski <linux@dominikbrodowski.net>
2250M: Thomas Renninger <trenn@suse.de>
2251S: Maintained
2252F: tools/power/cpupower
2253
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002254CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002255M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002256W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002257W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002259F: Documentation/cgroups/cpusets.txt
2260F: include/linux/cpuset.h
2261F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002264W: http://sourceforge.net/projects/cramfs/
2265S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002266F: Documentation/filesystems/cramfs.txt
2267F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Mikael Starvik <starvik@axis.com>
2271M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002272L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273W: http://developer.axis.com
2274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002275F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002276F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002279M: Herbert Xu <herbert@gondor.apana.org.au>
2280M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002282T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002284F: Documentation/crypto/
2285F: arch/*/crypto/
2286F: crypto/
2287F: drivers/crypto/
2288F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Neil Horman5b07bd52009-02-05 16:03:04 +11002290CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002291M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002292L: linux-crypto@vger.kernel.org
2293S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002294F: crypto/ansi_cprng.c
2295F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002296
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002297CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002298M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002301
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002302CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002303M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002304L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002305L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002306T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002307W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002308W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002310F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002311F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002312F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002313
Hans Verkuil3f101d92012-11-23 07:00:02 -03002314CX2341X MPEG ENCODER HELPER MODULE
2315M: Hans Verkuil <hverkuil@xs4all.nl>
2316L: linux-media@vger.kernel.org
2317T: git git://linuxtv.org/media_tree.git
2318W: http://linuxtv.org
2319S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002320F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002321F: include/media/cx2341x*
2322
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002323CX88 VIDEO4LINUX DRIVER
2324M: Mauro Carvalho Chehab <mchehab@redhat.com>
2325L: linux-media@vger.kernel.org
2326W: http://linuxtv.org
2327T: git git://linuxtv.org/media_tree.git
2328S: Odd fixes
2329F: Documentation/video4linux/cx88/
2330F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002331
Antti Palosaari91952bc2012-10-01 12:28:46 -03002332CXD2820R MEDIA DRIVER
2333M: Antti Palosaari <crope@iki.fi>
2334L: linux-media@vger.kernel.org
2335W: http://linuxtv.org/
2336W: http://palosaari.fi/linux/
2337Q: http://patchwork.linuxtv.org/project/linux-media/list/
2338T: git git://linuxtv.org/anttip/media_tree.git
2339S: Maintained
2340F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002341
Steve Wisee5ec3782008-05-20 14:06:33 -07002342CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002343M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002344L: netdev@vger.kernel.org
2345W: http://www.chelsio.com
2346S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002347F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002348
2349CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002350M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002351L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002352W: http://www.openfabrics.org
2353S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002354F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002355
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002356CXGB4 ETHERNET DRIVER (CXGB4)
2357M: Dimitris Michailidis <dm@chelsio.com>
2358L: netdev@vger.kernel.org
2359W: http://www.chelsio.com
2360S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002361F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002362
2363CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2364M: Steve Wise <swise@chelsio.com>
2365L: linux-rdma@vger.kernel.org
2366W: http://www.openfabrics.org
2367S: Supported
2368F: drivers/infiniband/hw/cxgb4/
2369
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002370CXGB4VF ETHERNET DRIVER (CXGB4VF)
2371M: Casey Leedom <leedom@chelsio.com>
2372L: netdev@vger.kernel.org
2373W: http://www.chelsio.com
2374S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002375F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002376
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002377STMMAC ETHERNET DRIVER
2378M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2379L: netdev@vger.kernel.org
2380W: http://www.stlinux.com
2381S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002382F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002385M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002386L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387W: http://www.arm.linux.org.uk/
2388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002389F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002393S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002394F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002395F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002396F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002400S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002401F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002403CYPRESS_FIRMWARE MEDIA DRIVER
2404M: Antti Palosaari <crope@iki.fi>
2405L: linux-media@vger.kernel.org
2406W: http://linuxtv.org/
2407W: http://palosaari.fi/linux/
2408Q: http://patchwork.linuxtv.org/project/linux-media/list/
2409T: git git://linuxtv.org/anttip/media_tree.git
2410S: Maintained
2411F: drivers/media/common/cypress_firmware*
2412
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002413CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002414M: Javier Martinez Canillas <javier@dowhile0.org>
2415L: linux-input@vger.kernel.org
2416S: Maintained
2417F: drivers/input/touchscreen/cyttsp*
2418F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002421M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422W: http://yaina.de/jreuter/
2423W: http://www.qsl.net/dl1bke/
2424L: linux-hams@vger.kernel.org
2425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002426F: net/ax25/af_ax25.c
2427F: net/ax25/ax25_dev.c
2428F: net/ax25/ax25_ds_*
2429F: net/ax25/ax25_in.c
2430F: net/ax25/ax25_out.c
2431F: net/ax25/ax25_timer.c
2432F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002434DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002435L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002436S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002437F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002438F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002439
2440DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002441M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002442W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002443M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002445F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002448M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002449M: Ali Akcaagac <aliakc@web.de>
2450M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002452L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453L: http://lists.twibble.org/mailman/listinfo/dc395x/
2454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002455F: Documentation/scsi/dc395x.txt
2456F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002458DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002459M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002460L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002461W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002463F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002464F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002465F: include/linux/tfrc.h
2466F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469W: http://linux-decnet.sourceforge.net
2470L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002472F: Documentation/networking/decnet.txt
2473F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002476M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002478F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002480DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002481M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002482L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002484F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002487S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002489F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Doug Warzecha90563ec2005-09-06 15:17:15 -07002491DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002492M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002494F: Documentation/dcdbas.txt
2495F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002496
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002497DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002498M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002499S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002500F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002501
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002502DESIGNWARE USB2 DRD IP DRIVER
2503M: Paul Zimmerman <paulz@synopsys.com>
2504L: linux-usb@vger.kernel.org
2505S: Maintained
2506F: drivers/staging/dwc2/
2507
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002508DESIGNWARE USB3 DRD IP DRIVER
2509M: Felipe Balbi <balbi@ti.com>
2510L: linux-usb@vger.kernel.org
2511L: linux-omap@vger.kernel.org
2512T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2513S: Maintained
2514F: drivers/usb/dwc3/
2515
Kyungmin Park89d07762012-01-10 15:09:09 -08002516DEVICE FREQUENCY (DEVFREQ)
2517M: MyungJoo Ham <myungjoo.ham@samsung.com>
2518M: Kyungmin Park <kyungmin.park@samsung.com>
2519L: linux-kernel@vger.kernel.org
2520S: Maintained
2521F: drivers/devfreq/
2522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002524M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526S: Maintained
2527
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002528DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002529M: Alasdair Kergon <agk@redhat.com>
2530M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002531L: dm-devel@redhat.com
2532W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002533Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002534T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002536F: Documentation/device-mapper/
2537F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002538F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002539F: include/linux/device-mapper.h
2540F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002541
Guenter Roeck335d7c52011-01-26 11:45:49 -08002542DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002543M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002544L: linux-i2c@vger.kernel.org
2545S: Maintained
2546F: drivers/i2c/busses/i2c-diolan-u2c.c
2547
Randy Dunlape7839f22008-10-12 16:11:45 -07002548DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002549M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002551F: Documentation/filesystems/dnotify.txt
2552F: fs/notify/dnotify/
2553F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002556M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2558W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2559W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2560S: Maintained
2561
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002562DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002563M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/filesystems/quota.txt
2566F: fs/quota/
2567F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002568F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Bernie Thompson702686a2012-03-01 13:52:13 -08002570DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2571M: Bernie Thompson <bernie@plugable.com>
2572L: linux-fbdev@vger.kernel.org
2573S: Maintained
2574W: http://plugable.com/category/projects/udlfb/
2575F: drivers/video/udlfb.c
2576F: include/video/udlfb.h
2577F: Documentation/fb/udlfb.txt
2578
Randy Dunlape7839f22008-10-12 16:11:45 -07002579DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002580M: Christine Caulfield <ccaulfie@redhat.com>
2581M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002582L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002583W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002584T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002586F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002587
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302588DMA BUFFER SHARING FRAMEWORK
2589M: Sumit Semwal <sumit.semwal@linaro.org>
2590S: Maintained
2591L: linux-media@vger.kernel.org
2592L: dri-devel@lists.freedesktop.org
2593L: linaro-mm-sig@lists.linaro.org
2594F: drivers/base/dma-buf*
2595F: include/linux/dma-buf*
2596F: Documentation/dma-buf-sharing.txt
2597T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2598
Dan Williamsb3e5f262007-08-07 10:26:35 -07002599DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002600M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002601M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002603F: drivers/dma/
2604F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302605T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2606T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002607
Juerg Haefligerb8250372007-06-09 10:11:16 -04002608DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002609M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002610L: lm-sensors@lm-sensors.org
2611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002612F: Documentation/hwmon/dme1737
2613F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002614
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002615DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002616M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002617L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002618S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002619F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002620
Joe Perches7d2c86b2009-04-07 20:59:01 -07002621DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002622M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002623L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002624T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002626F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630L: blinux-list@redhat.com
2631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002632F: drivers/char/dtlk.c
2633F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002635DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002636M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002637L: linux-scsi@vger.kernel.org
2638W: http://www.adaptec.com/
2639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002640F: drivers/scsi/dpt*
2641F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002642
Philipp Reisnerb411b362009-09-25 16:07:19 -07002643DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002644P: Philipp Reisner
2645P: Lars Ellenberg
2646M: drbd-dev@lists.linbit.com
2647L: drbd-user@lists.linbit.com
2648W: http://www.drbd.org
2649T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2650T: git git://git.drbd.org/drbd-8.3.git
2651S: Supported
2652F: drivers/block/drbd/
2653F: lib/lru_cache.c
2654F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002655
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002656DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002657M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002658T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002660F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002661F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002662F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002663F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002664F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002665F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002666F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002669M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002670L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002671T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002673F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002674F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002675F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Chris Wilson8daf7472010-09-28 14:07:26 +01002677INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002678M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002679L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002680L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002681T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002682S: Supported
2683F: drivers/gpu/drm/i915
2684F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002685F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002686
Kyungmin Park398a6d42011-11-02 11:33:16 +09002687DRM DRIVERS FOR EXYNOS
2688M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002689M: Joonyoung Shim <jy0922.shim@samsung.com>
2690M: Seung-Woo Kim <sw0312.kim@samsung.com>
2691M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002692L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002693T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002694S: Supported
2695F: drivers/gpu/drm/exynos
2696F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002697F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002698
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002699DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002700M: Thierry Reding <thierry.reding@gmail.com>
2701M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002702L: dri-devel@lists.freedesktop.org
2703L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002704T: git git://anongit.freedesktop.org/tegra/linux.git
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002705S: Maintained
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002706F: drivers/gpu/host1x/
2707F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002708F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2709
Alexey Klimov598df1a2012-11-28 17:16:32 -03002710DSBR100 USB FM RADIO DRIVER
2711M: Alexey Klimov <klimov.linux@gmail.com>
2712L: linux-media@vger.kernel.org
2713T: git git://linuxtv.org/media_tree.git
2714S: Maintained
2715F: drivers/media/radio/dsbr100.c
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002718M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002719L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Antti Palosaari91952bc2012-10-01 12:28:46 -03002723DVB_USB_AF9015 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/af9015*
2732
2733DVB_USB_AF9035 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/af9035*
2742
2743DVB_USB_ANYSEE 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/anysee*
2752
2753DVB_USB_AU6610 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/au6610*
2762
2763DVB_USB_CE6230 MEDIA DRIVER
2764M: Antti Palosaari <crope@iki.fi>
2765L: linux-media@vger.kernel.org
2766W: http://linuxtv.org/
2767W: http://palosaari.fi/linux/
2768Q: http://patchwork.linuxtv.org/project/linux-media/list/
2769T: git git://linuxtv.org/anttip/media_tree.git
2770S: Maintained
2771F: drivers/media/usb/dvb-usb-v2/ce6230*
2772
Michael Krufkyd099dea2012-10-02 00:56:20 -03002773DVB_USB_CXUSB MEDIA DRIVER
2774M: Michael Krufky <mkrufky@linuxtv.org>
2775L: linux-media@vger.kernel.org
2776W: http://linuxtv.org/
2777W: http://github.com/mkrufky
2778Q: http://patchwork.linuxtv.org/project/linux-media/list/
2779T: git git://linuxtv.org/media_tree.git
2780S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002781F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002782
Antti Palosaari91952bc2012-10-01 12:28:46 -03002783DVB_USB_EC168 MEDIA DRIVER
2784M: Antti Palosaari <crope@iki.fi>
2785L: linux-media@vger.kernel.org
2786W: http://linuxtv.org/
2787W: http://palosaari.fi/linux/
2788Q: http://patchwork.linuxtv.org/project/linux-media/list/
2789T: git git://linuxtv.org/anttip/media_tree.git
2790S: Maintained
2791F: drivers/media/usb/dvb-usb-v2/ec168*
2792
Antti Palosaari55609832013-04-09 20:30:42 -03002793DVB_USB_GL861 MEDIA DRIVER
2794M: Antti Palosaari <crope@iki.fi>
2795L: linux-media@vger.kernel.org
2796W: http://linuxtv.org/
2797Q: http://patchwork.linuxtv.org/project/linux-media/list/
2798T: git git://linuxtv.org/anttip/media_tree.git
2799S: Maintained
2800F: drivers/media/usb/dvb-usb-v2/gl861*
2801
Michael Krufky8856f5f2012-10-02 00:55:50 -03002802DVB_USB_MXL111SF MEDIA DRIVER
2803M: Michael Krufky <mkrufky@linuxtv.org>
2804L: linux-media@vger.kernel.org
2805W: http://linuxtv.org/
2806W: http://github.com/mkrufky
2807Q: http://patchwork.linuxtv.org/project/linux-media/list/
2808T: git git://linuxtv.org/mkrufky/mxl111sf.git
2809S: Maintained
2810F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2811
Antti Palosaari91952bc2012-10-01 12:28:46 -03002812DVB_USB_RTL28XXU 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/rtl28xxu*
2821
2822DVB_USB_V2 MEDIA DRIVER
2823M: Antti Palosaari <crope@iki.fi>
2824L: linux-media@vger.kernel.org
2825W: http://linuxtv.org/
2826W: http://palosaari.fi/linux/
2827Q: http://patchwork.linuxtv.org/project/linux-media/list/
2828T: git git://linuxtv.org/anttip/media_tree.git
2829S: Maintained
2830F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2831F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2832
Jason Baronac0ac382011-08-11 14:36:43 -04002833DYNAMIC DEBUG
2834M: Jason Baron <jbaron@redhat.com>
2835S: Maintained
2836F: lib/dynamic_debug.c
2837F: include/linux/dynamic_debug.h
2838
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002839DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002840M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002841S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002842F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002843
Antti Palosaari91952bc2012-10-01 12:28:46 -03002844E4000 MEDIA DRIVER
2845M: Antti Palosaari <crope@iki.fi>
2846L: linux-media@vger.kernel.org
2847W: http://linuxtv.org/
2848W: http://palosaari.fi/linux/
2849Q: http://patchwork.linuxtv.org/project/linux-media/list/
2850T: git git://linuxtv.org/anttip/media_tree.git
2851S: Maintained
2852F: drivers/media/tuners/e4000*
2853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002856L: linux-eata@i-connect.net
2857L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002859F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002862M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863L: linux-scsi@vger.kernel.org
2864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002865F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002869L: linux-eata@i-connect.net
2870L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002872F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
2874EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002875M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002876L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877W: http://ebtables.sourceforge.net/
2878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002879F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002880F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002881F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Antti Palosaari91952bc2012-10-01 12:28:46 -03002883EC100 MEDIA DRIVER
2884M: Antti Palosaari <crope@iki.fi>
2885L: linux-media@vger.kernel.org
2886W: http://linuxtv.org/
2887W: http://palosaari.fi/linux/
2888Q: http://patchwork.linuxtv.org/project/linux-media/list/
2889T: git git://linuxtv.org/anttip/media_tree.git
2890S: Maintained
2891F: drivers/media/dvb-frontends/ec100*
2892
Michael Halcrow237fead2006-10-04 02:16:22 -07002893ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002894M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002895M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002896L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002897W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002898S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002899F: Documentation/filesystems/ecryptfs.txt
2900F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002901
Alan Coxda9bb1d2006-01-18 17:44:13 -08002902EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002903M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002904L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002905W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002906S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002907F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002908F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002909F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002910
Borislav Petkovc476c232009-05-20 20:31:58 +02002911EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002912M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002913M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002914L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002915W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002916S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002917F: drivers/edac/amd64_edac*
2918
Ralf Baechlef65aad42012-10-17 00:39:09 +02002919EDAC-CAVIUM
2920M: Ralf Baechle <ralf@linux-mips.org>
2921M: David Daney <david.daney@cavium.com>
2922L: linux-edac@vger.kernel.org
2923L: linux-mips@linux-mips.org
2924W: bluesmoke.sourceforge.net
2925S: Supported
2926F: drivers/edac/octeon_edac*
2927
Dave Peterson0e438e32006-03-26 01:38:55 -08002928EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002929M: Mark Gross <mark.gross@intel.com>
2930M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002931L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002932W: bluesmoke.sourceforge.net
2933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002934F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002935
2936EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002938L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002939W: bluesmoke.sourceforge.net
2940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002941F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002942
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002943EDAC-GHES
2944M: Mauro Carvalho Chehab <mchehab@redhat.com>
2945L: linux-edac@vger.kernel.org
2946W: bluesmoke.sourceforge.net
2947S: Maintained
2948F: drivers/edac/ghes-edac.c
2949
Douglas Thompson6bc78402007-07-19 01:50:12 -07002950EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002951M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002952L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002953W: bluesmoke.sourceforge.net
2954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002955F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002956
2957EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002958M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002959L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002960W: bluesmoke.sourceforge.net
2961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002962F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002963
2964EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002966L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002967W: bluesmoke.sourceforge.net
2968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002969F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002970
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002971EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002972M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002973L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002974W: bluesmoke.sourceforge.net
2975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002976F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002977
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002978EDAC-I7300
2979M: Mauro Carvalho Chehab <mchehab@redhat.com>
2980L: linux-edac@vger.kernel.org
2981W: bluesmoke.sourceforge.net
2982S: Maintained
2983F: drivers/edac/i7300_edac.c
2984
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002985EDAC-I7CORE
2986M: Mauro Carvalho Chehab <mchehab@redhat.com>
2987L: linux-edac@vger.kernel.org
2988W: bluesmoke.sourceforge.net
2989S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002990F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002991
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002992EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002993M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302994M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002995L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002996W: bluesmoke.sourceforge.net
2997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002998F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002999
3000EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003001M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003002L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003003W: bluesmoke.sourceforge.net
3004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003005F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003006
Dave Peterson0e438e32006-03-26 01:38:55 -08003007EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003008M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003009L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003010W: bluesmoke.sourceforge.net
3011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003012F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003013
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003014EDAC-SBRIDGE
3015M: Mauro Carvalho Chehab <mchehab@redhat.com>
3016L: linux-edac@vger.kernel.org
3017W: bluesmoke.sourceforge.net
3018S: Maintained
3019F: drivers/edac/sb_edac.c
3020
Clemens Ladischaf399172011-01-10 16:32:54 +01003021EDIROL UA-101/UA-1000 DRIVER
3022M: Clemens Ladisch <clemens@ladisch.de>
3023L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3024T: git git://git.alsa-project.org/alsa-kernel.git
3025S: Maintained
3026F: sound/usb/misc/ua101.c
3027
Matt Fleming1f7df952012-10-03 10:04:02 +01003028EXTENSIBLE FIRMWARE INTERFACE (EFI)
3029M: Matt Fleming <matt.fleming@intel.com>
3030L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003031T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003032S: Maintained
3033F: Documentation/x86/efi-stub.txt
3034F: arch/ia64/kernel/efi.c
3035F: arch/x86/boot/compressed/eboot.[ch]
3036F: arch/x86/include/asm/efi.h
3037F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003038F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003039F: include/linux/efi*.h
3040
Matt Flemingd68772b2013-02-08 16:27:24 +00003041EFI VARIABLE FILESYSTEM
3042M: Matthew Garrett <matthew.garrett@nebula.com>
3043M: Jeremy Kerr <jk@ozlabs.org>
3044M: Matt Fleming <matt.fleming@intel.com>
3045T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3046L: linux-efi@vger.kernel.org
3047S: Maintained
3048F: fs/efivarfs/
3049
Peter Jones85a00d92010-09-22 13:05:04 -07003050EFIFB FRAMEBUFFER DRIVER
3051L: linux-fbdev@vger.kernel.org
3052M: Peter Jones <pjones@redhat.com>
3053S: Maintained
3054F: drivers/video/efifb.c
3055
Josh Triplett0bee8d22006-07-30 03:03:58 -07003056EFS FILESYSTEM
3057W: http://aeschi.ch.eu.org/efs/
3058S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003059F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003060
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003061EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003062M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3063M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003064L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003065S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003066F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003067
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003068EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003069M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003070L: netdev@vger.kernel.org
3071S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003072F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003073
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003074EM28XX VIDEO4LINUX DRIVER
3075M: Mauro Carvalho Chehab <mchehab@redhat.com>
3076L: linux-media@vger.kernel.org
3077W: http://linuxtv.org
3078T: git git://linuxtv.org/media_tree.git
3079S: Maintained
3080F: drivers/media/usb/em28xx/
3081
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003082EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003083M: Paul Gortmaker <paul.gortmaker@windriver.com>
3084M: Matt Mackall <mpm@selenic.com>
3085M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003086L: linux-embedded@vger.kernel.org
3087S: Maintained
3088
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003089EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003090M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003091L: linux-scsi@vger.kernel.org
3092W: http://sourceforge.net/projects/lpfcxxxx
3093S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003094F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003095
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003096ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003097M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003098S: Maintained
3099F: drivers/misc/cb710/
3100F: drivers/mmc/host/cb710-mmc.*
3101F: include/linux/cb710.h
3102
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003103ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3104M: Maxim Levitsky <maximlevitsky@gmail.com>
3105S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003106F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003107
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003108EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003109M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003110S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003111T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003112F: drivers/video/s1d13xxxfb.c
3113F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003116M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003117L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003118L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003119W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: include/linux/netfilter_bridge/
3122F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003125M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003126L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: Documentation/filesystems/ext2.txt
3129F: fs/ext2/
3130F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
3132EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003133M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003134M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003135M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003136L: linux-ext4@vger.kernel.org
3137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003138F: Documentation/filesystems/ext3.txt
3139F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003140
3141EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003142M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003143M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003144L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003145W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003146Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003148F: Documentation/filesystems/ext4.txt
3149F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Mimi Zoharc5532b02011-08-17 18:52:24 -04003151Extended Verification Module (EVM)
3152M: Mimi Zohar <zohar@us.ibm.com>
3153S: Supported
3154F: security/integrity/evm/
3155
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003156EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3157M: MyungJoo Ham <myungjoo.ham@samsung.com>
3158M: Chanwoo Choi <cw00.choi@samsung.com>
3159L: linux-kernel@vger.kernel.org
3160S: Maintained
3161F: drivers/extcon/
3162F: Documentation/extcon/
3163
Jingoo Han0a799512012-02-06 11:30:39 +09003164EXYNOS DP DRIVER
3165M: Jingoo Han <jg1.han@samsung.com>
3166L: linux-fbdev@vger.kernel.org
3167S: Maintained
3168F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003169F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003170
Donghwa Lee33ad3912012-03-06 11:44:58 +09003171EXYNOS MIPI DISPLAY DRIVERS
3172M: Inki Dae <inki.dae@samsung.com>
3173M: Donghwa Lee <dh09.lee@samsung.com>
3174M: Kyungmin Park <kyungmin.park@samsung.com>
3175L: linux-fbdev@vger.kernel.org
3176S: Maintained
3177F: drivers/video/exynos/exynos_mipi*
3178F: include/video/exynos_mipi*
3179
Jean Delvaree53004e2006-01-09 23:26:14 +01003180F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003182L: lm-sensors@lm-sensors.org
3183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003184F: Documentation/hwmon/f71805f
3185F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003186
Michael Büscheea977e2012-04-02 12:14:32 -03003187FC0011 TUNER DRIVER
3188M: Michael Buesch <m@bues.ch>
3189L: linux-media@vger.kernel.org
3190S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003191F: drivers/media/tuners/fc0011.h
3192F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003193
Antti Palosaari91952bc2012-10-01 12:28:46 -03003194FC2580 MEDIA DRIVER
3195M: Antti Palosaari <crope@iki.fi>
3196L: linux-media@vger.kernel.org
3197W: http://linuxtv.org/
3198W: http://palosaari.fi/linux/
3199Q: http://patchwork.linuxtv.org/project/linux-media/list/
3200T: git git://linuxtv.org/anttip/media_tree.git
3201S: Maintained
3202F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Eric Paris88b2dbd2010-08-18 12:25:50 -04003204FANOTIFY
3205M: Eric Paris <eparis@redhat.com>
3206S: Maintained
3207F: fs/notify/fanotify/
3208F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003209F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003212M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213W: http://www.farsite.co.uk/
3214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003215F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Akinobu Mitac5408b82007-04-23 14:41:20 -07003217FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003218M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003219S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003220F: Documentation/fault-injection/
3221F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003222
Robert Lovecae727d2010-02-16 12:16:00 -08003223FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3224M: Robert Love <robert.w.love@intel.com>
3225L: devel@open-fcoe.org
3226W: www.Open-FCoE.org
3227S: Supported
3228F: drivers/scsi/libfc/
3229F: drivers/scsi/fcoe/
3230F: include/scsi/fc/
3231F: include/scsi/libfc.h
3232F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003233F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003234
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003235FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003236M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237L: linux-fsdevel@vger.kernel.org
3238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003239F: include/linux/fcntl.h
3240F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003241F: include/uapi/linux/fcntl.h
3242F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003243F: fs/fcntl.c
3244F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003245
3246FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003247M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003248L: linux-fsdevel@vger.kernel.org
3249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003250F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003251
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003252FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003253M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003254L: lm-sensors@lm-sensors.org
3255S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003256F: drivers/hwmon/f75375s.c
3257F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003258
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003259FIREWIRE AUDIO DRIVERS
3260M: Clemens Ladisch <clemens@ladisch.de>
3261L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3262T: git git://git.alsa-project.org/alsa-kernel.git
3263S: Maintained
3264F: sound/firewire/
3265
Stefan Richtereb86ec52012-11-03 09:25:20 +01003266FIREWIRE MEDIA DRIVERS (firedtv)
3267M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3268L: linux-media@vger.kernel.org
3269L: linux1394-devel@lists.sourceforge.net
3270T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3271S: Maintained
3272F: drivers/media/firewire/
3273
Chris Boota511ce32012-04-14 17:50:35 -07003274FIREWIRE SBP-2 TARGET
3275M: Chris Boot <bootc@bootc.net>
3276L: linux-scsi@vger.kernel.org
3277L: target-devel@vger.kernel.org
3278L: linux1394-devel@lists.sourceforge.net
3279T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3280S: Maintained
3281F: drivers/target/sbp/
3282
Joe Perches7d2c86b2009-04-07 20:59:01 -07003283FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003284M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003285L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003286W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003287T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003289F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003290F: include/linux/firewire.h
3291F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003292F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003293
3294FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003295M: Ming Lei <ming.lei@canonical.com>
3296L: linux-kernel@vger.kernel.org
3297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003298F: Documentation/firmware_class/
3299F: drivers/base/firmware*.c
3300F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003301
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003302FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3303M: Joshua Morris <josh.h.morris@us.ibm.com>
3304M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3305S: Maintained
3306F: drivers/block/rsxx/
3307
Jiri Kosina8206f662012-05-18 13:52:29 +02003308FLOPPY DRIVER
3309M: Jiri Kosina <jkosina@suse.cz>
3310T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3311S: Odd fixes
3312F: drivers/block/floppy.c
3313
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003314FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003315M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003316W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003318F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003319
3320FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003321L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003322S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003323F: drivers/net/wan/dlci.c
3324F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003327M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003328L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003330Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003331T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003333F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003334F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003335F: drivers/video/
3336F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003337F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003338F: include/uapi/video/
3339F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Timur Tabia57c1882012-10-16 17:33:42 -05003341FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003342M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003343L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003344S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003345F: drivers/video/fsl-diu-fb.*
3346
Zhang Wei173acc72008-03-01 07:42:48 -07003347FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003348M: Li Yang <leoli@freescale.com>
3349M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003350L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003352F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003353
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003354FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003355M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003356L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003357L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003359F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003360
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003361FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003363L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003364L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003365S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003366F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003367F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003368
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003369FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003370M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3371M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003372L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003373L: netdev@vger.kernel.org
3374S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003375F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003376F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003377
Timur Tabid9e9d822008-04-24 08:45:26 +10003378FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003379L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003380S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003381F: arch/powerpc/sysdev/qe_lib/
3382F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003383
Joe Perchesb55ef9292009-10-26 16:49:46 -07003384FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003385M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003386L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003387L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003388S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003389F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003390
Li Yangbeaf53b2007-05-25 13:54:02 +08003391FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003392M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003393L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003394L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003395S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003396F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003397
Timur Tabid9e9d822008-04-24 08:45:26 +10003398FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003399M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003400L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003401S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003402F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003403
3404FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003405M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003406L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003407L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003408S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003409F: sound/soc/fsl/fsl*
3410F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003413M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003416F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Pavel Machek71038f52009-01-15 13:51:02 -08003418FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003419M: Pavel Machek <pavel@ucw.cz>
3420M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003421L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003423F: Documentation/power/freezing-of-tasks.txt
3424F: include/linux/freezer.h
3425F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003426
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003427FRONTSWAP API
3428M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3429L: linux-kernel@vger.kernel.org
3430S: Maintained
3431F: mm/frontswap.c
3432F: include/linux/frontswap.h
3433
David Howellsa5432f5a2009-04-20 15:46:45 +01003434FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003435M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003436L: linux-cachefs@redhat.com
3437S: Supported
3438F: Documentation/filesystems/caching/
3439F: fs/fscache/
3440F: include/linux/fscache*.h
3441
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003442F2FS FILE SYSTEM
3443M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3444L: linux-f2fs-devel@lists.sourceforge.net
3445W: http://en.wikipedia.org/wiki/F2FS
3446T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3447S: Maintained
3448F: Documentation/filesystems/f2fs.txt
3449F: fs/f2fs/
3450F: include/linux/f2fs_fs.h
3451
David Howells5ab7ffe2007-04-10 15:10:45 +01003452FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003455F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Jonathan Woithe20b93732008-06-11 10:14:56 +09303457FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303458M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003459L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003461F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303462
Heungjun Kim4da621b62011-11-11 08:05:33 -03003463FUJITSU M-5MO LS CAMERA ISP DRIVER
3464M: Kyungmin Park <kyungmin.park@samsung.com>
3465M: Heungjun Kim <riverful.kim@samsung.com>
3466L: linux-media@vger.kernel.org
3467S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003468F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003469F: include/media/m5mols.h
3470
Robert Gerlach2d24c492012-01-18 14:26:22 +01003471FUJITSU TABLET EXTRAS
3472M: Robert Gerlach <khnz@gmx.de>
3473L: platform-driver-x86@vger.kernel.org
3474S: Maintained
3475F: drivers/platform/x86/fujitsu-tablet.c
3476
Miklos Szeredi04578f12005-09-09 13:10:22 -07003477FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003478M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003479L: fuse-devel@lists.sourceforge.net
3480W: http://fuse.sourceforge.net/
3481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003482F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003483F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003484
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003486M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003488S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003489F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
3491GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003492M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493L: linux-scsi@vger.kernel.org
3494W: http://www.icp-vortex.com/
3495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003496F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003498GEMTEK FM RADIO RECEIVER DRIVER
3499M: Hans Verkuil <hverkuil@xs4all.nl>
3500L: linux-media@vger.kernel.org
3501T: git git://linuxtv.org/media_tree.git
3502W: http://linuxtv.org
3503S: Maintained
3504F: drivers/media/radio/radio-gemtek*
3505
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003506GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003507M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003509F: drivers/i2c/busses/i2c-gpio.c
3510F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003511
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003512GENERIC GPIO I2C MULTIPLEXER DRIVER
3513M: Peter Korsgaard <peter.korsgaard@barco.com>
3514L: linux-i2c@vger.kernel.org
3515S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003516F: drivers/i2c/muxes/i2c-mux-gpio.c
3517F: include/linux/i2c-mux-gpio.h
3518F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003519
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003520GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003521M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003524F: drivers/net/wan/c101.c
3525F: drivers/net/wan/hd6457*
3526F: drivers/net/wan/hdlc*
3527F: drivers/net/wan/n2.c
3528F: drivers/net/wan/pc300too.c
3529F: drivers/net/wan/pci200syn.c
3530F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003532GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003533M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003534L: linux-arch@vger.kernel.org
3535T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3536S: Maintained
3537F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003538F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003539
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003540GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003541M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003542L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003543S: Supported
3544F: drivers/uio/uio_pci_generic.c
3545
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003546GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003547M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003548L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003549W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003550T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3551T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003553F: Documentation/filesystems/gfs2*.txt
3554F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003555F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003556
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003557GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003558M: Hansjoerg Lipp <hjlipp@web.de>
3559M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003560L: gigaset307x-common@lists.sourceforge.net
3561W: http://gigaset307x.sourceforge.net/
3562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003563F: Documentation/isdn/README.gigaset
3564F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003565F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003566
Grant Likelya0dc00b2011-02-12 01:48:14 -07003567GPIO SUBSYSTEM
Grant Likely19624232013-04-08 11:51:42 +01003568M: Grant Likely <grant.likely@linaro.org>
Linus Walleije4651a92012-08-06 09:52:52 +02003569M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003570S: Maintained
3571T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003572F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003573F: drivers/gpio/
3574F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003575F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003576
Harry Wei71a6d0a2011-05-11 15:13:33 -07003577GRE DEMULTIPLEXER DRIVER
3578M: Dmitry Kozlov <xeb@mail.ru>
3579L: netdev@vger.kernel.org
3580S: Maintained
3581F: net/ipv4/gre.c
3582F: include/net/gre.h
3583
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003584GRETH 10/100/1G Ethernet MAC device driver
3585M: Kristoffer Glembo <kristoffer@gaisler.com>
3586L: netdev@vger.kernel.org
3587S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003588F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003589
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003590GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003591M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003592L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003593T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003594S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003595F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003596
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003597GSPCA GL860 SUBDRIVER
3598M: Olivier Lorin <o.lorin@laposte.net>
3599L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003600T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003601S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003602F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003603
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003604GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003605M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003606L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003607T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003608S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003609F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003610
3611GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003612M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003613L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003614T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003615S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003616F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003617
Brian Johnson261982f2009-07-19 15:58:56 -03003618GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003619M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003620L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003621T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003622S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003623F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003624
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003625GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003626M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003627L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003628T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003629S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003630F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003631
3632GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003633M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003634L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003635T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003636S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003637F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003638
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003639STK1160 USB VIDEO CAPTURE DRIVER
3640M: Ezequiel Garcia <elezegarcia@gmail.com>
3641L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003642T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003643S: Maintained
3644F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003645
Harry Wei71a6d0a2011-05-11 15:13:33 -07003646HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3647M: Frank Seidel <frank@f-seidel.de>
3648L: platform-driver-x86@vger.kernel.org
3649W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3650S: Maintained
3651F: drivers/platform/x86/hdaps.c
3652
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003653HDPVR USB VIDEO ENCODER DRIVER
3654M: Hans Verkuil <hverkuil@xs4all.nl>
3655L: linux-media@vger.kernel.org
3656T: git git://linuxtv.org/media_tree.git
3657W: http://linuxtv.org
3658S: Odd Fixes
3659F: drivers/media/usb/hdpvr
3660
Harry Wei71a6d0a2011-05-11 15:13:33 -07003661HWPOISON MEMORY FAILURE HANDLING
3662M: Andi Kleen <andi@firstfloor.org>
3663L: linux-mm@kvack.org
3664T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3665S: Maintained
3666F: mm/memory-failure.c
3667F: mm/hwpoison-inject.c
3668
3669HYPERVISOR VIRTUAL CONSOLE DRIVER
3670L: linuxppc-dev@lists.ozlabs.org
3671S: Odd Fixes
3672F: drivers/tty/hvc/
3673
Michael Buesch844dd052006-06-26 00:24:59 -07003674HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003675M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003676M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003677L: lm-sensors@lm-sensors.org
3678W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003679T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003680T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003681S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003682F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003683F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003684F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003685
3686HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003687M: Matt Mackall <mpm@selenic.com>
3688M: Herbert Xu <herbert@gondor.apana.org.au>
3689S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003690F: Documentation/hw_random.txt
3691F: drivers/char/hw_random/
3692F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003693
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003694HARDWARE SPINLOCK CORE
3695M: Ohad Ben-Cohen <ohad@wizery.com>
3696S: Maintained
3697F: Documentation/hwspinlock.txt
3698F: drivers/hwspinlock/hwspinlock_*
3699F: include/linux/hwspinlock.h
3700
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003702L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Antti Palosaari91952bc2012-10-01 12:28:46 -03003706HD29L2 MEDIA DRIVER
3707M: Antti Palosaari <crope@iki.fi>
3708L: linux-media@vger.kernel.org
3709W: http://linuxtv.org/
3710W: http://palosaari.fi/linux/
3711Q: http://patchwork.linuxtv.org/project/linux-media/list/
3712T: git git://linuxtv.org/anttip/media_tree.git
3713S: Maintained
3714F: drivers/media/dvb-frontends/hd29l2*
3715
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003716HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003717M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003718L: iss_storagedev@hp.com
3719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003720F: Documentation/blockdev/cpqarray.txt
3721F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003722
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003723HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003724M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003725L: iss_storagedev@hp.com
3726S: Supported
3727F: Documentation/scsi/hpsa.txt
3728F: drivers/scsi/hpsa*.[ch]
3729F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003730F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003731
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003732HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003733M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003734L: iss_storagedev@hp.com
3735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003736F: Documentation/blockdev/cciss.txt
3737F: drivers/block/cciss*
3738F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003739F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003740
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003742L: linux-fsdevel@vger.kernel.org
3743S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003744F: Documentation/filesystems/hfs.txt
3745F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746
3747HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003748M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749L: linux-nvidia@lists.surfsouth.com
3750W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003752F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003754HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003755M: Pavel Machek <pavel@ucw.cz>
3756M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003757L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003759F: arch/x86/power/
3760F: drivers/base/power/
3761F: kernel/power/
3762F: include/linux/suspend.h
3763F: include/linux/freezer.h
3764F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003765F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003766
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003767HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003768M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003769L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003770T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003772F: drivers/hid/
3773F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003774F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003775
Ingo Molnar38bed542007-02-22 09:09:34 +01003776HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003777M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003778T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003780F: Documentation/timers/
3781F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003782F: kernel/time/clockevents.c
3783F: kernel/time/tick*.*
3784F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003785F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003786F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003787
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003790S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003791F: drivers/net/hamradio/dmascc.c
3792F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003794HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003796W: http://www.highpoint-tech.com
3797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003798F: Documentation/scsi/hptiop.txt
3799F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003802M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803L: linux-hippi@sunsite.dk
3804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003805F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003806F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003807F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003808F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Jouni Malinenff1d2762005-05-12 22:54:16 -04003810HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003811M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003812L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003813L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003814W: http://hostap.epitest.fi/
3815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003816F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003817
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003818HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003819L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003820S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003821F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003822
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003823HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003824M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003825S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003826F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003827
Joe Perches7d2c86b2009-04-07 20:59:01 -07003828HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003829M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003831F: Documentation/timers/hpet.txt
3832F: drivers/char/hpet.c
3833F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003834F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003835
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003836HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003837M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003839F: arch/x86/kernel/hpet.c
3840F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003843M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003846F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Joe Perches7d2c86b2009-04-07 20:59:01 -07003848HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003849M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003850W: http://www.pharscape.org
3851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003852F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003853
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003854HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003855M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003856L: linux-input@vger.kernel.org
3857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003858F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003859
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003861M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003863F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003865Hyper-V CORE AND DRIVERS
3866M: K. Y. Srinivasan <kys@microsoft.com>
3867M: Haiyang Zhang <haiyangz@microsoft.com>
3868L: devel@linuxdriverproject.org
3869S: Maintained
3870F: drivers/hv/
3871F: drivers/hid/hid-hyperv.c
3872F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003873
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003874I2C OVER PARALLEL PORT
3875M: Jean Delvare <khali@linux-fr.org>
3876L: linux-i2c@vger.kernel.org
3877S: Maintained
3878F: Documentation/i2c/busses/i2c-parport
3879F: Documentation/i2c/busses/i2c-parport-light
3880F: drivers/i2c/busses/i2c-parport.c
3881F: drivers/i2c/busses/i2c-parport-light.c
3882
3883I2C/SMBUS CONTROLLER DRIVERS FOR PC
3884M: Jean Delvare <khali@linux-fr.org>
3885L: linux-i2c@vger.kernel.org
3886S: Maintained
3887F: Documentation/i2c/busses/i2c-ali1535
3888F: Documentation/i2c/busses/i2c-ali1563
3889F: Documentation/i2c/busses/i2c-ali15x3
3890F: Documentation/i2c/busses/i2c-amd756
3891F: Documentation/i2c/busses/i2c-amd8111
3892F: Documentation/i2c/busses/i2c-i801
3893F: Documentation/i2c/busses/i2c-nforce2
3894F: Documentation/i2c/busses/i2c-piix4
3895F: Documentation/i2c/busses/i2c-sis5595
3896F: Documentation/i2c/busses/i2c-sis630
3897F: Documentation/i2c/busses/i2c-sis96x
3898F: Documentation/i2c/busses/i2c-via
3899F: Documentation/i2c/busses/i2c-viapro
3900F: drivers/i2c/busses/i2c-ali1535.c
3901F: drivers/i2c/busses/i2c-ali1563.c
3902F: drivers/i2c/busses/i2c-ali15x3.c
3903F: drivers/i2c/busses/i2c-amd756.c
3904F: drivers/i2c/busses/i2c-amd756-s4882.c
3905F: drivers/i2c/busses/i2c-amd8111.c
3906F: drivers/i2c/busses/i2c-i801.c
3907F: drivers/i2c/busses/i2c-isch.c
3908F: drivers/i2c/busses/i2c-nforce2.c
3909F: drivers/i2c/busses/i2c-nforce2-s4985.c
3910F: drivers/i2c/busses/i2c-piix4.c
3911F: drivers/i2c/busses/i2c-sis5595.c
3912F: drivers/i2c/busses/i2c-sis630.c
3913F: drivers/i2c/busses/i2c-sis96x.c
3914F: drivers/i2c/busses/i2c-via.c
3915F: drivers/i2c/busses/i2c-viapro.c
3916
Neil Hormancb7f07a2013-02-10 11:59:03 -05003917I2C/SMBUS ISMT DRIVER
3918M: Seth Heasley <seth.heasley@intel.com>
3919M: Neil Horman <nhorman@tuxdriver.com>
3920L: linux-i2c@vger.kernel.org
3921F: drivers/i2c/busses/i2c-ismt.c
3922F: Documentation/i2c/busses/i2c-ismt
3923
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003924I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003925M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003926L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003927S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003928F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003929
Jean Delvare5b543962005-08-15 19:51:02 +02003930I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003931M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003932L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003933W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003934T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003936F: Documentation/i2c/
3937F: drivers/i2c/
3938F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003939F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003940F: include/uapi/linux/i2c.h
3941F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003943I2C-TAOS-EVM DRIVER
3944M: Jean Delvare <khali@linux-fr.org>
3945L: linux-i2c@vger.kernel.org
3946S: Maintained
3947F: Documentation/i2c/busses/i2c-taos-evm
3948F: drivers/i2c/busses/i2c-taos-evm.c
3949
Till Harbaume8c76ee2007-05-01 23:26:35 +02003950I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003951M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003952L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003953W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003955F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003956
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003958M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003960F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
3962i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003963M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003964T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965S: Maintained
3966
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003968M: Tony Luck <tony.luck@intel.com>
3969M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003971T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003973F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
Kent Yoder956c2032012-09-07 04:17:01 +08003975IBM Power in-Nest Crypto Acceleration
3976M: Kent Yoder <key@linux.vnet.ibm.com>
3977L: linux-crypto@vger.kernel.org
3978S: Supported
3979F: drivers/crypto/nx/
3980
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003981IBM Power 842 compression accelerator
3982M: Robert Jennings <rcj@linux.vnet.ibm.com>
3983S: Supported
3984F: drivers/crypto/nx/nx-842.c
3985F: include/linux/nx842.h
3986
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003988M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003990F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
Santiago Leon9d348af2010-09-03 18:29:53 +00003992IBM Power Virtual Ethernet Device Driver
3993M: Santiago Leon <santil@linux.vnet.ibm.com>
3994L: netdev@vger.kernel.org
3995S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003996F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003997
Robert Jennings4b7652c2012-07-31 12:34:36 -05003998IBM Power Virtual SCSI/FC Device Drivers
3999M: Robert Jennings <rcj@linux.vnet.ibm.com>
4000L: linux-scsi@vger.kernel.org
4001S: Supported
4002F: drivers/scsi/ibmvscsi/
4003X: drivers/scsi/ibmvscsi/ibmvstgt.c
4004
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005IBM ServeRAID RAID DRIVER
4006P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07004007M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004009S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004010F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004012ICH LPC AND GPIO DRIVER
4013M: Peter Tyser <ptyser@xes-inc.com>
4014S: Maintained
4015F: drivers/mfd/lpc_ich.c
4016F: drivers/gpio/gpio-ich.c
4017
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004018IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004021Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004022T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004024F: Documentation/ide/
4025F: drivers/ide/
4026F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Ike Panhc6cb8c132011-08-25 22:28:45 +08004028IDEAPAD LAPTOP EXTRAS DRIVER
4029M: Ike Panhc <ike.pan@canonical.com>
4030L: platform-driver-x86@vger.kernel.org
4031W: http://launchpad.net/ideapad-laptop
4032S: Maintained
4033F: drivers/platform/x86/ideapad-laptop.c
4034
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004035IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004036M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004037L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004039F: Documentation/cdrom/ide-cd
4040F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Andy Henroid27471fd2008-10-09 11:45:22 -07004042IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004043M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004044L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004046F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004047
Sergey Lapin02cf2282009-06-08 12:18:50 +00004048IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004049M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004050M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004051L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004052W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004053T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004054S: Maintained
4055F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004056F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004057F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004058
Sean Young40ad4a32012-11-19 10:32:53 -03004059IGUANAWORKS USB IR TRANSCEIVER
4060M: Sean Young <sean@mess.org>
4061L: linux-media@vger.kernel.org
4062S: Maintained
4063F: drivers/media/rc/iguanair.c
4064
Ameya Palande9545f862012-01-10 09:00:58 -08004065IIO SUBSYSTEM AND DRIVERS
4066M: Jonathan Cameron <jic23@cam.ac.uk>
4067L: linux-iio@vger.kernel.org
4068S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004069F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004070F: drivers/staging/iio/
4071
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004072IKANOS/ADI EAGLE ADSL USB DRIVER
4073M: Matthieu Castet <castet.matthieu@free.fr>
4074M: Stanislaw Gruszka <stf_xl@wp.pl>
4075S: Maintained
4076F: drivers/usb/atm/ueagle-atm.c
4077
Guenter Roecke89ab512013-03-08 08:13:09 -08004078INA209 HARDWARE MONITOR DRIVER
4079M: Guenter Roeck <linux@roeck-us.net>
4080L: lm-sensors@lm-sensors.org
4081S: Maintained
4082F: Documentation/hwmon/ina209
4083F: Documentation/devicetree/bindings/i2c/ina209.txt
4084F: drivers/hwmon/ina209.c
4085
4086INA2XX HARDWARE MONITOR DRIVER
4087M: Guenter Roeck <linux@roeck-us.net>
4088L: lm-sensors@lm-sensors.org
4089S: Maintained
4090F: Documentation/hwmon/ina2xx
4091F: drivers/hwmon/ina2xx.c
4092F: include/linux/platform_data/ina2xx.h
4093
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004094INDUSTRY PACK SUBSYSTEM (IPACK)
4095M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4096M: Jens Taprogge <jens.taprogge@taprogge.org>
4097M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4098L: industrypack-devel@lists.sourceforge.net
4099W: http://industrypack.sourceforge.net
4100S: Maintained
4101F: drivers/ipack/
4102
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004103INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004104M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004106F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004107
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004109L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004110S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004111F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
4113INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004114M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Sean Hefty <sean.hefty@intel.com>
4116M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004117L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004118W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004119Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004120T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004122F: Documentation/infiniband/
4123F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004124F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Robert Lovec9f04f52005-07-15 12:21:07 -04004126INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: John McCutchan <john@johnmccutchan.com>
4128M: Robert Love <rlove@rlove.org>
4129M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004131F: Documentation/filesystems/inotify.txt
4132F: fs/notify/inotify/
4133F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004134F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004136INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4138M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004139L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004140Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004141T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004143F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004144F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004145F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004146F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004147
Henrik Rydberg3267a872010-06-24 19:10:40 -07004148INPUT MULTITOUCH (MT) PROTOCOL
4149M: Henrik Rydberg <rydberg@euromail.se>
4150L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004151T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004152S: Maintained
4153F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004154F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004155K: \b(ABS|SYN)_MT_
4156
Dave Jiang4ac13e12011-07-29 17:16:55 -07004157INTEL C600 SERIES SAS CONTROLLER DRIVER
4158M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004159M: Lukasz Dorau <lukasz.dorau@intel.com>
4160M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004161M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004162L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004163T: git git://git.code.sf.net/p/intel-sas/isci
4164S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004165F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004166
Len Brown26717172010-03-08 14:07:30 -05004167INTEL IDLE DRIVER
4168M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004169L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004170T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004171S: Supported
4172F: drivers/idle/intel_idle.c
4173
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004174INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004175M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004176L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004178F: Documentation/fb/intelfb.txt
4179F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004180
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004182M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004183L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004185F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304187INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004188M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004189L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304190W: http://www.lesswatts.org/projects/acpi/
4191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004192F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304193
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004195M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004197F: arch/x86/kernel/microcode_core.c
4198F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004200INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004201M: Dan Williams <djbw@fb.com>
4202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004203F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004204
David Woodhouse6c8909b2008-10-18 16:12:17 +01004205INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004206M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004207L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004208T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004209S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004210F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004211F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004212
Dan Williamsb3e5f262007-08-07 10:26:35 -07004213INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004214M: Dan Williams <djbw@fb.com>
4215S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004216F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004217
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004218INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004219M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004221F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4222F: arch/arm/mach-ixp4xx/include/mach/npe.h
4223F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4224F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004225F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004226F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004227
Michael Buesch844dd052006-06-26 00:24:59 -07004228INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004229M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004231F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004232
Jeff Kirsher0d164402010-10-05 01:15:17 +00004233INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004234M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4235M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4236M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004237M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4238M: Don Skidmore <donald.c.skidmore@intel.com>
4239M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004240M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004241M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004242M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004243M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004244L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004245W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004246W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004247T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4248T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004250F: Documentation/networking/e100.txt
4251F: Documentation/networking/e1000.txt
4252F: Documentation/networking/e1000e.txt
4253F: Documentation/networking/igb.txt
4254F: Documentation/networking/igbvf.txt
4255F: Documentation/networking/ixgb.txt
4256F: Documentation/networking/ixgbe.txt
4257F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004258F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004260INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4261M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004262L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004264F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004265F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004266F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004267
Shane Wang4bd96a72010-03-10 14:36:10 +08004268INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004269M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4270M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004271M: Shane Wang <shane.wang@intel.com>
4272L: tboot-devel@lists.sourceforge.net
4273W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004274T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004275S: Supported
4276F: Documentation/intel_txt.txt
4277F: include/linux/tboot.h
4278F: arch/x86/kernel/tboot.c
4279
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004280INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004281M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004282M: linux-wimax@intel.com
4283L: wimax@linuxwimax.org
4284S: Supported
4285W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004286F: Documentation/wimax/README.i2400m
4287F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004288F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004289
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004290INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4291M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004292L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004293S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004294F: drivers/net/wireless/iwlegacy/
4295
Zhu Yib481de92007-09-25 17:54:57 -07004296INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004297M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004298M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004299M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004300L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004301W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004302T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004304F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004305
Tomas Winklerde8fe022012-05-09 16:39:02 +03004306INTEL MANAGEMENT ENGINE (mei)
4307M: Tomas Winkler <tomas.winkler@intel.com>
4308L: linux-kernel@vger.kernel.org
4309S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004310F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004311F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08004312F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004313
Ralf Baechlecb109a02007-08-30 23:56:30 -07004314IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004315M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316L: linux-mips@linux-mips.org
4317S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004318F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Ralf Baechlecb109a02007-08-30 23:56:30 -07004320IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004321M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004322L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004323S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004324F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004325
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004326IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004327M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004329F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Francois Romieu1202d6f2007-09-17 17:13:55 -07004331IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: Francois Romieu <romieu@fr.zoreil.com>
4333M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004334L: netdev@vger.kernel.org
4335S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004336F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004337
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004338IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004339M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004340L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004342F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004343
Corey Minyard4409ebe2006-04-20 02:43:12 -07004344IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004345M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004346L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004347W: http://openipmi.sourceforge.net/
4348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004349F: Documentation/IPMI.txt
4350F: drivers/char/ipmi/
4351F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004352F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004353
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004354IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004355M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004356L: linux-scsi@vger.kernel.org
4357W: http://www.adaptec.com/
4358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004359F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004360
4361IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004362M: Wensong Zhang <wensong@linux-vs.org>
4363M: Simon Horman <horms@verge.net.au>
4364M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004365L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004366L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004368F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004369F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004370F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004371F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
Randy Dunlape7839f22008-10-12 16:11:45 -07004373IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004374M: Jiri Kosina <jkosina@suse.cz>
4375M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004376S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004377F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004378
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004379IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004380M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004381L: netdev@vger.kernel.org
4382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004383F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004384F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004385F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004386
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004388M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004389L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004390L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004392S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004393T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004394F: Documentation/networking/irda.txt
4395F: drivers/net/irda/
4396F: include/net/irda/
4397F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004399IRQ SUBSYSTEM
4400M: Thomas Gleixner <tglx@linutronix.de>
4401S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004402T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004403F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004404F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004405
Grant Likely7ab3a832012-02-14 14:06:47 -07004406IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4407M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely19624232013-04-08 11:51:42 +01004408M: Grant Likely <grant.likely@linaro.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004409T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4410S: Maintained
4411F: Documentation/IRQ-domain.txt
4412F: include/linux/irqdomain.h
4413F: kernel/irq/irqdomain.c
4414
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004415ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004416M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004418F: Documentation/isapnp.txt
4419F: drivers/pnp/isapnp/
4420F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004421
Hans Verkuild39b84202012-11-23 07:07:02 -03004422ISA RADIO MODULE
4423M: Hans Verkuil <hverkuil@xs4all.nl>
4424L: linux-media@vger.kernel.org
4425T: git git://linuxtv.org/media_tree.git
4426W: http://linuxtv.org
4427S: Maintained
4428F: drivers/media/radio/radio-isa*
4429
Harry Wei71a6d0a2011-05-11 15:13:33 -07004430iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4431M: Peter Jones <pjones@redhat.com>
4432M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4433S: Maintained
4434F: drivers/firmware/iscsi_ibft*
4435
Mike Christie14816b1e2007-11-28 16:22:06 -08004436ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004437M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004438L: open-iscsi@googlegroups.com
4439W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004440T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004442F: drivers/scsi/*iscsi*
4443F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004444
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004446M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004447L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004448L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004450T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004452F: Documentation/isdn/
4453F: drivers/isdn/
4454F: include/linux/isdn.h
4455F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004456F: include/uapi/linux/isdn.h
4457F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458
4459ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004460M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004461L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462W: http://www.melware.de
4463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004464F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
Jean Delvared6248702010-03-05 22:17:20 +01004466IT87 HARDWARE MONITORING DRIVER
4467M: Jean Delvare <khali@linux-fr.org>
4468L: lm-sensors@lm-sensors.org
4469S: Maintained
4470F: Documentation/hwmon/it87
4471F: drivers/hwmon/it87.c
4472
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004473IT913X MEDIA DRIVER
4474M: Malcolm Priestley <tvboxspy@gmail.com>
4475L: linux-media@vger.kernel.org
4476W: http://linuxtv.org/
4477Q: http://patchwork.linuxtv.org/project/linux-media/list/
4478S: Maintained
4479F: drivers/media/usb/dvb-usb-v2/it913x*
4480
4481IT913X FE MEDIA DRIVER
4482M: Malcolm Priestley <tvboxspy@gmail.com>
4483L: linux-media@vger.kernel.org
4484W: http://linuxtv.org/
4485Q: http://patchwork.linuxtv.org/project/linux-media/list/
4486S: Maintained
4487F: drivers/media/dvb-frontends/it913x-fe*
4488
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004489IT913X MEDIA DRIVER
4490M: Antti Palosaari <crope@iki.fi>
4491L: linux-media@vger.kernel.org
4492W: http://linuxtv.org/
4493W: http://palosaari.fi/linux/
4494Q: http://patchwork.linuxtv.org/project/linux-media/list/
4495T: git git://linuxtv.org/anttip/media_tree.git
4496S: Maintained
4497F: drivers/media/tuners/it913x*
4498
Hans Verkuil91821ff2007-12-02 09:35:33 -03004499IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004500M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004501L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004502L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004503T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004504W: http://www.ivtvdriver.org
4505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004506F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004507F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004508F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004509
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004510IX2505V MEDIA DRIVER
4511M: Malcolm Priestley <tvboxspy@gmail.com>
4512L: linux-media@vger.kernel.org
4513W: http://linuxtv.org/
4514Q: http://patchwork.linuxtv.org/project/linux-media/list/
4515S: Maintained
4516F: drivers/media/dvb-frontends/ix2505v*
4517
Guenter Roeck4453d732010-08-09 17:21:08 -07004518JC42.4 TEMPERATURE SENSOR DRIVER
4519M: Guenter Roeck <linux@roeck-us.net>
4520L: lm-sensors@lm-sensors.org
4521S: Maintained
4522F: drivers/hwmon/jc42.c
4523F: Documentation/hwmon/jc42
4524
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004525JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004526M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004527L: jfs-discussion@lists.sourceforge.net
4528W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004529T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004531F: Documentation/filesystems/jfs.txt
4532F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004533
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004534JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004535M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004536L: netdev@vger.kernel.org
4537S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004538F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004539
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004541M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004542L: linux-mtd@lists.infradead.org
4543W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004545F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004546F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
Josh Triplettde456d32006-07-30 03:04:00 -07004548JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004550M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004551L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004552S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004553F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004554F: include/linux/jbd.h
4555
4556JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4557M: "Theodore Ts'o" <tytso@mit.edu>
4558L: linux-ext4@vger.kernel.org
4559S: Maintained
4560F: fs/jbd2/
4561F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004562
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004563JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004564M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004565L: linux-serial@vger.kernel.org
4566S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004567F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004568
Clemens Ladischaf399172011-01-10 16:32:54 +01004569K10TEMP HARDWARE MONITORING DRIVER
4570M: Clemens Ladisch <clemens@ladisch.de>
4571L: lm-sensors@lm-sensors.org
4572S: Maintained
4573F: Documentation/hwmon/k10temp
4574F: drivers/hwmon/k10temp.c
4575
Rudolf Marek4660cb32006-10-08 22:01:26 +02004576K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004577M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004578L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004580F: Documentation/hwmon/k8temp
4581F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
4583KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004584M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004585L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004586S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004587F: Documentation/kbuild/kconfig-language.txt
4588F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
Vivek Goyalea6c2082006-05-20 14:59:55 -07004590KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004591M: Vivek Goyal <vgoyal@redhat.com>
4592M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004593L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004594W: http://lse.sourceforge.net/kdump/
4595S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004596F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004597
Hans Verkuilf41bf022012-11-23 07:04:36 -03004598KEENE FM RADIO TRANSMITTER DRIVER
4599M: Hans Verkuil <hverkuil@xs4all.nl>
4600L: linux-media@vger.kernel.org
4601T: git git://linuxtv.org/media_tree.git
4602W: http://linuxtv.org
4603S: Maintained
4604F: drivers/media/radio/radio-keene*
4605
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004607M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004608L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004610F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Michal Marek70fb7ba2010-01-29 14:22:43 +01004612KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004613M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004614T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4615T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004616L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004618F: Documentation/kbuild/
4619F: Makefile
4620F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004621F: scripts/basic/
4622F: scripts/mk*
4623F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004626L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004627W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004628S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004630KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004631M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004632L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004634S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004635F: fs/nfsd/
4636F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004637F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004638F: fs/lockd/
4639F: fs/nfs_common/
4640F: net/sunrpc/
4641F: include/linux/lockd/
4642F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004643F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
Avi Kivity426d62e2006-12-13 00:34:03 -08004645KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004646M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004647M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004648L: kvm@vger.kernel.org
4649W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004651F: Documentation/*/kvm.txt
4652F: arch/*/kvm/
4653F: arch/*/include/asm/kvm*
4654F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004655F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004656F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004657
Joerg Roedelad8003d2008-09-10 20:01:07 +02004658KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004659M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004660L: kvm@vger.kernel.org
4661W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004663F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004664F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004665
Hollis Blanchard513014b2008-04-16 23:28:08 -05004666KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004667M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004668L: kvm-ppc@vger.kernel.org
4669W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004670T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004671S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004672F: arch/powerpc/include/asm/kvm*
4673F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004674
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004675KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004676M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004677L: kvm-ia64@vger.kernel.org
4678W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004680F: Documentation/ia64/kvm.txt
4681F: arch/ia64/include/asm/kvm*
4682F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004683
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004684KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004685M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004686M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004687M: linux390@de.ibm.com
4688L: linux-s390@vger.kernel.org
4689W: http://www.ibm.com/developerworks/linux/linux390/
4690S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004691F: Documentation/s390/kvm.txt
4692F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004693F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004694F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004695
Christoffer Dalla7494742013-01-20 18:42:26 -05004696KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4697M: Christoffer Dall <cdall@cs.columbia.edu>
4698L: kvmarm@lists.cs.columbia.edu
4699W: http://systems.cs.columbia.edu/projects/kvm-arm
4700S: Maintained
4701F: arch/arm/include/uapi/asm/kvm*
4702F: arch/arm/include/asm/kvm*
4703F: arch/arm/kvm/
4704
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004705KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004706M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004707W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004708L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004710F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004711F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004712F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004713
David Howellse9714612010-03-29 23:42:09 +01004714KEYS/KEYRINGS:
4715M: David Howells <dhowells@redhat.com>
4716L: keyrings@linux-nfs.org
4717S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004718F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004719F: include/linux/key.h
4720F: include/linux/key-type.h
4721F: include/keys/
4722F: security/keys/
4723
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004724KEYS-TRUSTED
4725M: David Safford <safford@watson.ibm.com>
4726M: Mimi Zohar <zohar@us.ibm.com>
4727L: linux-security-module@vger.kernel.org
4728L: keyrings@linux-nfs.org
4729S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004730F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004731F: include/keys/trusted-type.h
4732F: security/keys/trusted.c
4733F: security/keys/trusted.h
4734
4735KEYS-ENCRYPTED
4736M: Mimi Zohar <zohar@us.ibm.com>
4737M: David Safford <safford@watson.ibm.com>
4738L: linux-security-module@vger.kernel.org
4739L: keyrings@linux-nfs.org
4740S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004741F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004742F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004743F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004744
Jason Wessel5b778da2010-05-20 21:04:28 -05004745KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004746M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004747W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004748L: kgdb-bugreport@lists.sourceforge.net
4749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004750F: Documentation/DocBook/kgdb.tmpl
4751F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004752F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004753F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004754F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004755F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004756
Pekka Enberg456db8c2008-04-28 22:47:29 +03004757KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004759M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004760S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004761F: Documentation/kmemcheck.txt
4762F: arch/x86/include/asm/kmemcheck.h
4763F: arch/x86/mm/kmemcheck/
4764F: include/linux/kmemcheck.h
4765F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004766
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004767KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004769S: Maintained
4770F: Documentation/kmemleak.txt
4771F: include/linux/kmemleak.h
4772F: mm/kmemleak.c
4773F: mm/kmemleak-test.c
4774
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004775KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4777M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4778M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004779M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: Documentation/kprobes.txt
4782F: include/linux/kprobes.h
4783F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004784
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004785KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004786M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004787W: http://miguelojeda.es/auxdisplay.htm
4788W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004790F: Documentation/auxdisplay/ks0108
4791F: drivers/auxdisplay/ks0108.c
4792F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004793
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004796S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004797F: Documentation/networking/lapb-module.txt
4798F: include/*/lapb.h
4799F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
4801LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004802M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803L: linux-scsi@vger.kernel.org
4804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: Documentation/scsi/53c700.txt
4806F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Richard Purdie263de9b2006-05-15 09:44:16 -07004808LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004809M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004810M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004811L: linux-leds@vger.kernel.org
4812T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004814F: drivers/leds/
4815F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004816
Jean Delvareb0461a42011-06-15 15:08:46 -07004817LEGACY EEPROM DRIVER
4818M: Jean Delvare <khali@linux-fr.org>
4819S: Maintained
4820F: Documentation/misc-devices/eeprom
4821F: drivers/misc/eeprom/eeprom.c
4822
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004824M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825L: legousb-devel@lists.sourceforge.net
4826W: http://legousb.sourceforge.net/
4827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004828F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
Michael Krufky055616a2012-10-02 00:56:06 -03004830LG2160 MEDIA DRIVER
4831M: Michael Krufky <mkrufky@linuxtv.org>
4832L: linux-media@vger.kernel.org
4833W: http://linuxtv.org/
4834W: http://github.com/mkrufky
4835Q: http://patchwork.linuxtv.org/project/linux-media/list/
4836T: git git://linuxtv.org/mkrufky/tuners.git
4837S: Maintained
4838F: drivers/media/dvb-frontends/lg2160.*
4839
Michael Krufky6f0e7722012-10-02 00:56:00 -03004840LGDT3305 MEDIA DRIVER
4841M: Michael Krufky <mkrufky@linuxtv.org>
4842L: linux-media@vger.kernel.org
4843W: http://linuxtv.org/
4844W: http://github.com/mkrufky
4845Q: http://patchwork.linuxtv.org/project/linux-media/list/
4846T: git git://linuxtv.org/mkrufky/tuners.git
4847S: Maintained
4848F: drivers/media/dvb-frontends/lgdt3305.*
4849
Rusty Russell568a17f2007-10-25 14:12:24 +10004850LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004851M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004852L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004853W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004854S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004855F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004856F: arch/x86/lguest/
4857F: drivers/lguest/
4858F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004859F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004860
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004862M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863W: http://www.ibm.com/linux/ltc/projects/ppc
4864S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004865F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004867LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004868M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4869M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004871L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004872Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004873T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004875F: Documentation/powerpc/
4876F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
4878LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004879M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004881L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004883F: arch/powerpc/platforms/powermac/
4884F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885
Grant Likely77a76362008-07-12 12:11:43 -06004886LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004887M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004888L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004889T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004891F: arch/powerpc/platforms/512x/
4892F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
4894LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004895M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004896M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004898L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004899T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004901F: arch/powerpc/platforms/40x/
4902F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
Grant Likely260c02a2007-10-02 12:15:34 +10004904LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004905L: linuxppc-dev@lists.ozlabs.org
Grant Likely19624232013-04-08 11:51:42 +01004906S: Unmaintained
Joe Perches11c34c72009-12-04 07:16:59 +00004907F: arch/powerpc/*/*virtex*
4908F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909
Tom Rinie93adf12005-07-26 12:49:53 -07004910LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004911M: Vitaly Bordug <vitb@kernel.crashing.org>
4912M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004913W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004914L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004915S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004916F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004917
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004919M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004920W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004921L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004922S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004923F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004924F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Olof Johanssonab06ff32006-09-06 14:44:54 -05004926LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004927M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004928L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004929S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004930F: arch/powerpc/platforms/pasemi/
4931F: drivers/*/*pasemi*
4932F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004933
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004935M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004936L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937S: Supported
4938
Harry Weia23ce6d2011-02-11 16:52:20 +01004939LIS3LV02D ACCELEROMETER DRIVER
4940M: Eric Piel <eric.piel@tremplin-utc.net>
4941S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004942F: Documentation/misc-devices/lis3lv02d
4943F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004944F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004945
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004946LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004947M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004949F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004950F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004951F: include/net/llc*
4952F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004953
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004954LM73 HARDWARE MONITOR DRIVER
4955M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4956L: lm-sensors@lm-sensors.org
4957S: Maintained
4958F: drivers/hwmon/lm73.c
4959
Jean Delvare156e2d12011-07-25 21:46:11 +02004960LM78 HARDWARE MONITOR DRIVER
4961M: Jean Delvare <khali@linux-fr.org>
4962L: lm-sensors@lm-sensors.org
4963S: Maintained
4964F: Documentation/hwmon/lm78
4965F: drivers/hwmon/lm78.c
4966
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004968M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004969L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004971F: Documentation/hwmon/lm83
4972F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973
4974LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004975M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004976L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004978F: Documentation/hwmon/lm90
4979F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Guenter Roeck917cc4e2013-05-19 20:44:27 -07004981LM95234 HARDWARE MONITOR DRIVER
4982M: Guenter Roeck <linux@roeck-us.net>
4983L: lm-sensors@lm-sensors.org
4984S: Maintained
4985F: Documentation/hwmon/lm95234
4986F: drivers/hwmon/lm95234.c
4987
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004988LME2510 MEDIA DRIVER
4989M: Malcolm Priestley <tvboxspy@gmail.com>
4990L: linux-media@vger.kernel.org
4991W: http://linuxtv.org/
4992Q: http://patchwork.linuxtv.org/project/linux-media/list/
4993S: Maintained
4994F: drivers/media/usb/dvb-usb-v2/lmedm04*
4995
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004996LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004997M: Peter Zijlstra <peterz@infradead.org>
4998M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004999T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: Documentation/lockdep*.txt
5002F: Documentation/lockstat.txt
5003F: include/linux/lockdep.h
5004F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005005
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005006LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07005007M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005008L: linux-ntfs-dev@lists.sourceforge.net
5009W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005011F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08005012F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
Joern Engelef6ada32009-11-20 22:17:12 +01005014LogFS
5015M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305016M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005017L: logfs@logfs.org
5018W: logfs.org
5019S: Maintained
5020F: fs/logfs/
5021
Roland Stiggeb62d7942013-04-02 19:37:11 +02005022LPC32XX MACHINE SUPPORT
5023M: Roland Stigge <stigge@antcom.de>
5024L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5025S: Maintained
5026F: arch/arm/mach-lpc32xx/
5027
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005028LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305029M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5030M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005031M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005032L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005033L: linux-scsi@vger.kernel.org
5034W: http://www.lsilogic.com/support
5035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005036F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305037F: drivers/scsi/mpt2sas/
5038F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005039
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005041M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042L: linux-scsi@vger.kernel.org
5043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
Guenter Roecke5f5c992010-06-25 11:59:54 -07005046LTC4261 HARDWARE MONITOR DRIVER
5047M: Guenter Roeck <linux@roeck-us.net>
5048L: lm-sensors@lm-sensors.org
5049S: Maintained
5050F: Documentation/hwmon/ltc4261
5051F: drivers/hwmon/ltc4261.c
5052
Mike Frysinger81365c32008-10-29 14:01:12 -07005053LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005054M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005055M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005056M: Cyril Hrubis <chrubis@suse.cz>
5057M: Caspar Zhang <caspar@casparzhang.com>
5058M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005059L: ltp-list@lists.sourceforge.net (subscribers-only)
5060W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005061T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005062T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005063S: Maintained
5064
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005065M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005066M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005067L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005068L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5069W: http://www.linux-m32r.org/
5070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005071F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005072
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005074M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075L: linux-m68k@lists.linux-m68k.org
5076W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005077T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005079F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005080F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081
5082M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005083M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005085L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005087F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
5089M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005090M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091W: http://www.tazenda.demon.co.uk/phil/linux-hp
5092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005093F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005095M88RS2000 MEDIA DRIVER
5096M: Malcolm Priestley <tvboxspy@gmail.com>
5097L: linux-media@vger.kernel.org
5098W: http://linuxtv.org/
5099Q: http://patchwork.linuxtv.org/project/linux-media/list/
5100S: Maintained
5101F: drivers/media/dvb-frontends/m88rs2000*
5102
Alexey Klimov07a092f2012-11-12 02:57:32 -03005103MA901 MASTERKIT USB FM RADIO DRIVER
5104M: Alexey Klimov <klimov.linux@gmail.com>
5105L: linux-media@vger.kernel.org
5106T: git git://linuxtv.org/media_tree.git
5107S: Maintained
5108F: drivers/media/radio/radio-ma901.c
5109
Jiri Benc64a327a2007-05-05 11:47:08 -07005110MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005111M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005112L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005113W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005114T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5115T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005117F: Documentation/networking/mac80211-injection.txt
5118F: include/net/mac80211.h
5119F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005120
Stefano Brivio1036d862007-12-23 04:46:27 +01005121MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005122M: Stefano Brivio <stefano.brivio@polimi.it>
5123M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005124L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005125W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005126T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5127T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005129F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005130
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005131MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005132M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005133L: netdev@vger.kernel.org
5134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005135F: drivers/net/macvlan.c
5136F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005137
Michael Kerriskfaf16682005-07-31 22:34:47 -07005138MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005139M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005140W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005141L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005142S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005143
stephen hemminger44c14c12012-04-02 12:59:47 +00005144MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5145M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005146M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005147L: netdev@vger.kernel.org
5148S: Maintained
5149F: drivers/net/ethernet/marvell/sk*
5150
Stefano Brivio74cda162007-11-19 20:27:46 +01005151MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005152L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005153S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005154F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005155
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005156MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005157M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005158L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005159S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005160F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005161F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005163MARVELL MVNETA ETHERNET DRIVER
5164M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5165L: netdev@vger.kernel.org
5166S: Maintained
5167F: drivers/net/ethernet/marvell/mvneta.*
5168
Bing Zhaofcad5842011-07-13 13:11:58 -07005169MARVELL MWIFIEX WIRELESS DRIVER
5170M: Bing Zhao <bzhao@marvell.com>
5171L: linux-wireless@vger.kernel.org
5172S: Maintained
5173F: drivers/net/wireless/mwifiex/
5174
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005175MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005176M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005177L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005178S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005179F: drivers/net/wireless/mwl8k.c
5180
Pierre Ossman2a695672009-03-16 19:52:26 +01005181MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005182M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005183S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005184F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005185
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005187L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005188S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005189F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005190F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191
Guenter Roeckca462082012-06-01 23:28:23 -07005192MAX16065 HARDWARE MONITOR DRIVER
5193M: Guenter Roeck <linux@roeck-us.net>
5194L: lm-sensors@lm-sensors.org
5195S: Maintained
5196F: Documentation/hwmon/max16065
5197F: drivers/hwmon/max16065.c
5198
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005199MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005200M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005201L: lm-sensors@lm-sensors.org
5202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005203F: Documentation/hwmon/max6650
5204F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005205
Guenter Roecke89ab512013-03-08 08:13:09 -08005206MAX6697 HARDWARE MONITOR DRIVER
5207M: Guenter Roeck <linux@roeck-us.net>
5208L: lm-sensors@lm-sensors.org
5209S: Maintained
5210F: Documentation/hwmon/max6697
5211F: Documentation/devicetree/bindings/i2c/max6697.txt
5212F: drivers/hwmon/max6697.c
5213F: include/linux/platform_data/max6697.h
5214
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005215MAXIRADIO FM RADIO RECEIVER DRIVER
5216M: Hans Verkuil <hverkuil@xs4all.nl>
5217L: linux-media@vger.kernel.org
5218T: git git://linuxtv.org/media_tree.git
5219W: http://linuxtv.org
5220S: Maintained
5221F: drivers/media/radio/radio-maxiradio*
5222
Joe Perches127c49a2009-04-08 08:34:04 -07005223MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005224M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005225P: LinuxTV.org Project
5226L: linux-media@vger.kernel.org
5227W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005228Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005229T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005230S: Maintained
5231F: Documentation/dvb/
5232F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005233F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005234F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005235F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005236F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005237F: include/uapi/linux/dvb/
5238F: include/uapi/linux/videodev2.h
5239F: include/uapi/linux/media.h
5240F: include/uapi/linux/v4l2-*
5241F: include/uapi/linux/meye.h
5242F: include/uapi/linux/ivtv*
5243F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005244
Hans Verkuil6149a932012-11-23 07:21:19 -03005245MEDIAVISION PRO MOVIE STUDIO DRIVER
5246M: Hans Verkuil <hverkuil@xs4all.nl>
5247L: linux-media@vger.kernel.org
5248T: git git://linuxtv.org/media_tree.git
5249W: http://linuxtv.org
5250S: Odd Fixes
5251F: drivers/media/parport/pms*
5252
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005253MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005255L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005256W: http://megaraid.lsilogic.com
5257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005258F: Documentation/scsi/megaraid.txt
5259F: drivers/scsi/megaraid.*
5260F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005261
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005262MELLANOX ETHERNET DRIVER (mlx4_en)
5263M: Amir Vadai <amirv@mellanox.com>
5264L: netdev@vger.kernel.org
5265S: Supported
5266W: http://www.mellanox.com
5267Q: http://patchwork.ozlabs.org/project/netdev/list/
5268F: drivers/net/ethernet/mellanox/mlx4/en_*
5269
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005270MEMORY MANAGEMENT
5271L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005272W: http://www.linux-mm.org
5273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005274F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005275F: include/linux/gfp.h
5276F: include/linux/mmzone.h
5277F: include/linux/memory_hotplug.h
5278F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005279F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005280
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005281MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005282M: Johannes Weiner <hannes@cmpxchg.org>
5283M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005284M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005285M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005286L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005287L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005289F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005290F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005291
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005292MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005293M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005295W: http://www.linux-mtd.infradead.org/
5296Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005297T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005299F: drivers/mtd/
5300F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005301F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
James Hogan12285942012-10-10 12:59:49 +01005303METAG ARCHITECTURE
5304M: James Hogan <james.hogan@imgtec.com>
5305S: Supported
5306F: arch/metag/
5307F: Documentation/metag/
5308F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005309F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005310F: drivers/irqchip/irq-metag.c
5311F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005312F: drivers/tty/metag_da.c
5313F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005314
Michal Simekc6375b02009-03-27 14:25:52 +01005315MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005316M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005317L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005318W: http://www.monstr.eu/fdt/
5319T: git git://git.monstr.eu/linux-2.6-microblaze.git
5320S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005321F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322
5323MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005324M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005326F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
5328MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005329M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005331W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005332T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005333Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005334S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005335F: Documentation/mips/
5336F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
Hans Verkuil08b76202012-11-23 07:15:42 -03005338MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5339M: Hans Verkuil <hverkuil@xs4all.nl>
5340L: linux-media@vger.kernel.org
5341T: git git://linuxtv.org/media_tree.git
5342W: http://linuxtv.org
5343S: Odd Fixes
5344F: drivers/media/radio/radio-miropcm20*
5345
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005347M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005349F: include/linux/module.h
5350F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
5352MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005354S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005355F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005356F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005357F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
Jiri Slabyb9705b62008-04-30 00:53:48 -07005359MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005360M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005362F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005363F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005364
Alexey Klimov889b2f82012-11-16 17:43:59 -03005365MR800 AVERMEDIA USB FM RADIO DRIVER
5366M: Alexey Klimov <klimov.linux@gmail.com>
5367L: linux-media@vger.kernel.org
5368T: git git://linuxtv.org/media_tree.git
5369S: Maintained
5370F: drivers/media/radio/radio-mr800.c
5371
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005372MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005373M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005374L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005376F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005377
Anisse Astier0f1006b2009-12-17 11:28:49 +01005378MSI WMI SUPPORT
5379M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005380L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005381S: Supported
5382F: drivers/platform/x86/msi-wmi.c
5383
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005384MT9M032 SENSOR DRIVER
5385M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5386L: linux-media@vger.kernel.org
5387T: git git://linuxtv.org/media_tree.git
5388S: Maintained
5389F: drivers/media/i2c/mt9m032.c
5390F: include/media/mt9m032.h
5391
5392MT9P031 SENSOR DRIVER
5393M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5394L: linux-media@vger.kernel.org
5395T: git git://linuxtv.org/media_tree.git
5396S: Maintained
5397F: drivers/media/i2c/mt9p031.c
5398F: include/media/mt9p031.h
5399
5400MT9T001 SENSOR DRIVER
5401M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5402L: linux-media@vger.kernel.org
5403T: git git://linuxtv.org/media_tree.git
5404S: Maintained
5405F: drivers/media/i2c/mt9t001.c
5406F: include/media/mt9t001.h
5407
5408MT9V032 SENSOR DRIVER
5409M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5410L: linux-media@vger.kernel.org
5411T: git git://linuxtv.org/media_tree.git
5412S: Maintained
5413F: drivers/media/i2c/mt9v032.c
5414F: include/media/mt9v032.h
5415
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005416MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005417M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005418T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005420F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005421
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005422MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005423M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005424L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005425T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: drivers/mmc/
5428F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005429F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005430
David Brownell15a05802007-08-08 09:12:54 -07005431MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005432S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005433F: drivers/mmc/host/mmc_spi.c
5434F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005437M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005439F: Documentation/sound/oss/MultiSound
5440F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441
Jiri Slabyd7354102006-12-08 02:38:35 -08005442MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005443S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005444F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005445F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005446
Felipe Balbi550a7372008-07-24 12:27:36 +03005447MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005448M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005449L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005450T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005452F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005453
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005454MXL5007T MEDIA DRIVER
5455M: Michael Krufky <mkrufky@linuxtv.org>
5456L: linux-media@vger.kernel.org
5457W: http://linuxtv.org/
5458W: http://github.com/mkrufky
5459Q: http://patchwork.linuxtv.org/project/linux-media/list/
5460T: git git://linuxtv.org/mkrufky/tuners.git
5461S: Maintained
5462F: drivers/media/tuners/mxl5007t.*
5463
Brice Goglin2d3cf582008-05-17 12:45:36 +02005464MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005465M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005466L: netdev@vger.kernel.org
5467W: http://www.myri.com/scs/download-Myri10GE.html
5468S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005469F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005470
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005472S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005473F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
Daniel Mack23dc05a2011-05-18 11:28:38 +02005475NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5476M: Daniel Mack <zonque@gmail.com>
5477S: Maintained
5478L: alsa-devel@alsa-project.org
5479W: http://www.native-instruments.com
5480F: sound/usb/caiaq/
5481
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005483M: Petr Vandrovec <petr@vandrovec.name>
5484S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005485F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486
5487NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005488M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489L: linux-scsi@vger.kernel.org
5490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005491F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005493NCT6775 HARDWARE MONITOR DRIVER
5494M: Guenter Roeck <linux@roeck-us.net>
5495L: lm-sensors@lm-sensors.org
5496S: Maintained
5497F: Documentation/hwmon/nct6775
5498F: drivers/hwmon/nct6775.c
5499
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005500NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005501M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005502L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005503W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005504S: Supported
5505F: drivers/infiniband/hw/nes/
5506
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005507NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005508M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005509L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005511F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005512
Jon Masonb2f5a052010-07-15 08:47:27 +00005513NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005514M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005515L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005517F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005518F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005519F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005520
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522P: Harald Welte
5523P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005524M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005525M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005526L: netfilter-devel@vger.kernel.org
5527L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005528L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529W: http://www.netfilter.org/
5530W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005531T: git git://1984.lsi.us.es/nf
5532T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005534F: include/linux/netfilter*
5535F: include/linux/netfilter/
5536F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005537F: include/uapi/linux/netfilter*
5538F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005539F: net/*/netfilter.c
5540F: net/*/netfilter/
5541F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
Paul Moore4cc67732006-09-25 15:57:13 -07005543NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005544M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005545W: http://netlabel.sf.net
5546L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005547S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005548F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005549F: include/net/netlabel.h
5550F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005551
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005553M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005555W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005557F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005558F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005559F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005561NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005564L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005565F: Documentation/blockdev/nbd.txt
5566F: drivers/block/nbd.c
5567F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005568F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569
Neil Horman6e436502009-10-05 03:56:55 +00005570NETWORK DROP MONITOR
5571M: Neil Horman <nhorman@tuxdriver.com>
5572L: netdev@vger.kernel.org
5573S: Maintained
5574W: https://fedorahosted.org/dropwatch/
5575F: net/core/drop_monitor.c
5576
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005578M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005579L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005580W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005581Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005582T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5583T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005585F: net/
5586F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005587F: include/linux/in.h
5588F: include/linux/net.h
5589F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005590F: include/uapi/linux/in.h
5591F: include/uapi/linux/net.h
5592F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593
5594NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005595M: "David S. Miller" <davem@davemloft.net>
5596M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005597M: James Morris <jmorris@namei.org>
5598M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5599M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005600L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005601T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005603F: net/ipv4/
5604F: net/ipv6/
5605F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005606F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607
David S. Miller73b76562012-10-16 14:08:40 -04005608NETWORKING [IPSEC]
5609M: Steffen Klassert <steffen.klassert@secunet.com>
5610M: Herbert Xu <herbert@gondor.apana.org.au>
5611M: "David S. Miller" <davem@davemloft.net>
5612L: netdev@vger.kernel.org
5613T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5614S: Maintained
5615F: net/xfrm/
5616F: net/key/
5617F: net/ipv4/xfrm*
5618F: net/ipv6/xfrm*
5619F: include/uapi/linux/xfrm.h
5620F: include/net/xfrm.h
5621
James Morris10e2ff12007-08-25 14:41:28 -07005622NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005623M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005624L: netdev@vger.kernel.org
5625S: Maintained
5626
John W. Linville29f8f632006-01-18 14:52:48 -08005627NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005628M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005629L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005630Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005631T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005632S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005633F: net/mac80211/
5634F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005635F: net/wireless/
5636F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005637F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005638F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005639F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005640F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005641
Joe Perches788873a2009-04-16 09:38:45 +00005642NETWORKING DRIVERS
5643L: netdev@vger.kernel.org
5644W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005645Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005646T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5647T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005648S: Odd Fixes
5649F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005650F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005651F: include/linux/netdevice.h
5652F: include/linux/arcdevice.h
5653F: include/linux/etherdevice.h
5654F: include/linux/fcdevice.h
5655F: include/linux/fddidevice.h
5656F: include/linux/hippidevice.h
5657F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005658F: include/uapi/linux/if_*
5659F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005660
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005661NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005662M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005663M: Sony Chacko <sony.chacko@qlogic.com>
5664M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005665L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005666W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005667S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005668F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005669
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005670NFC SUBSYSTEM
5671M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5672M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5673M: Samuel Ortiz <sameo@linux.intel.com>
5674L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005675L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005676S: Maintained
5677F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005678F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005679F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005680F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005681F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005683NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005685L: linux-nfs@vger.kernel.org
5686W: http://client.linux-nfs.org
5687T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005689F: fs/lockd/
5690F: fs/nfs/
5691F: fs/nfs_common/
5692F: net/sunrpc/
5693F: include/linux/lockd/
5694F: include/linux/nfs*
5695F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005696F: include/uapi/linux/nfs*
5697F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005699NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005700M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005701L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005702W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005703T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005704S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005705F: Documentation/filesystems/nilfs2.txt
5706F: fs/nilfs2/
5707F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005708
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005710M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005713F: Documentation/scsi/NinjaSCSI.txt
5714F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715
5716NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005717M: GOTO Masanori <gotom@debian.or.jp>
5718M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005721F: Documentation/scsi/NinjaSCSI.txt
5722F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723
Jon Masonfce8a7b2012-11-16 19:27:12 -07005724NTB DRIVER
5725M: Jon Mason <jon.mason@intel.com>
5726S: Supported
5727F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005728F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005729F: include/linux/ntb.h
5730
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005732M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005734W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005735T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005737F: Documentation/filesystems/ntfs.txt
5738F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005740NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005741M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005742L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005744F: drivers/video/riva/
5745F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746
Matthew Wilcox79461682012-11-10 08:54:53 -05005747NVM EXPRESS DRIVER
5748M: Matthew Wilcox <willy@linux.intel.com>
5749L: linux-nvme@lists.infradead.org
5750T: git git://git.infradead.org/users/willy/linux-nvme.git
5751S: Supported
5752F: drivers/block/nvme.c
5753F: include/linux/nvme.h
5754
Tony Lindgrenf5525782009-05-28 13:23:53 -07005755OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005756M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005757L: linux-omap@vger.kernel.org
5758W: http://www.muru.com/linux/omap/
5759W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005760Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005761T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005762S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005763F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005764F: drivers/i2c/busses/i2c-omap.c
5765F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005766
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005767OMAP DEVICE TREE SUPPORT
5768M: Benoît Cousson <b-cousson@ti.com>
5769M: Tony Lindgren <tony@atomide.com>
5770L: linux-omap@vger.kernel.org
5771L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5772S: Maintained
5773F: arch/arm/boot/dts/*omap*
5774F: arch/arm/boot/dts/*am3*
5775
Tony Lindgrenf5525782009-05-28 13:23:53 -07005776OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005777M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005778L: linux-omap@vger.kernel.org
5779S: Maintained
5780F: arch/arm/*omap*/*clock*
5781
5782OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005783M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005784L: linux-omap@vger.kernel.org
5785S: Maintained
5786F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005787F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005788
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005789OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5790M: Rajendra Nayak <rnayak@ti.com>
5791M: Paul Walmsley <paul@pwsan.com>
5792L: linux-omap@vger.kernel.org
5793S: Maintained
5794F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5795F: arch/arm/mach-omap2/powerdomain44xx.c
5796F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5797F: arch/arm/mach-omap2/clockdomain44xx.c
5798
Tony Lindgrenf5525782009-05-28 13:23:53 -07005799OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005800M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005801M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005802L: alsa-devel@alsa-project.org (subscribers-only)
5803L: linux-omap@vger.kernel.org
5804S: Maintained
5805F: sound/soc/omap/
5806
5807OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005808M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005809L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005810L: linux-omap@vger.kernel.org
5811S: Maintained
5812F: drivers/video/omap/
5813
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005814OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005815M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005816L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005817L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005818S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005819F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005820F: Documentation/arm/OMAP/DSS
5821
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005822OMAP HARDWARE SPINLOCK SUPPORT
5823M: Ohad Ben-Cohen <ohad@wizery.com>
5824L: linux-omap@vger.kernel.org
5825S: Maintained
5826F: drivers/hwspinlock/omap_hwspinlock.c
5827F: arch/arm/mach-omap2/hwspinlock.c
5828
Tony Lindgrenf5525782009-05-28 13:23:53 -07005829OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005830M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005831L: linux-omap@vger.kernel.org
5832S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005833F: drivers/mmc/host/omap.c
5834
5835OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305836M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305837L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005838L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305839S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005840F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005841
5842OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005843M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005844S: Maintained
5845F: drivers/char/hw_random/omap-rng.c
5846
Paul Walmsleyf400c822010-12-06 19:08:54 -07005847OMAP HWMOD SUPPORT
5848M: Benoît Cousson <b-cousson@ti.com>
5849M: Paul Walmsley <paul@pwsan.com>
5850L: linux-omap@vger.kernel.org
5851S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005852F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005853
5854OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5855M: Benoît Cousson <b-cousson@ti.com>
5856L: linux-omap@vger.kernel.org
5857S: Maintained
5858F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5859
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005860OMAP IMAGE SIGNAL PROCESSOR (ISP)
5861M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5862L: linux-media@vger.kernel.org
5863S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005864F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005865
Tony Lindgrenf5525782009-05-28 13:23:53 -07005866OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005867M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005868L: linux-usb@vger.kernel.org
5869L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005870T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005871S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005872F: drivers/usb/*/*omap*
5873F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005874
Kevin Hilman6d994712012-07-16 10:05:07 -07005875OMAP GPIO DRIVER
5876M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005877M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005878L: linux-omap@vger.kernel.org
5879S: Maintained
5880F: drivers/gpio/gpio-omap.c
5881
Bob Copeland0ad122d2008-07-25 19:45:18 -07005882OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005883M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005884L: linux-karma-devel@lists.sourceforge.net
5885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005886F: Documentation/filesystems/omfs.txt
5887F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005888
Harald Weltec1986ee2005-11-13 16:06:29 -08005889OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005890M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005892F: drivers/char/pcmcia/cm4000_cs.c
5893F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005894F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005895
Harald Welte77c44ab2005-11-13 16:06:26 -08005896OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005899F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005900
Jonathan Corbet77d51402007-03-22 19:44:17 -03005901OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005902M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005903L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005904T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005905S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005906F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005907
Thomas Gleixner431bca72007-05-02 09:31:35 +02005908ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005909M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005910L: linux-mtd@lists.infradead.org
5911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005912F: drivers/mtd/onenand/
5913F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005914
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005916M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917L: osst-users@lists.sourceforge.net
5918L: linux-scsi@vger.kernel.org
5919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005920F: drivers/scsi/osst*
5921F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005923OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005924M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005925L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005927F: Documentation/i2c/busses/i2c-ocores
5928F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005929
Grant Likely860c44c2009-10-26 16:49:49 -07005930OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01005931M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05005932M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005933L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005934W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005935T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005936S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005937F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005938F: drivers/of
5939F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005940F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005941K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005942K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005943
Jonas Bonn19f9d392011-06-04 22:00:38 +03005944OPENRISC ARCHITECTURE
5945M: Jonas Bonn <jonas@southpole.se>
5946W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005947L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005948S: Maintained
5949T: git git://openrisc.net/~jonas/linux
5950F: arch/openrisc
5951
Jesse Grossccb13522011-10-25 19:26:31 -07005952OPENVSWITCH
5953M: Jesse Gross <jesse@nicira.com>
5954L: dev@openvswitch.org
5955W: http://openvswitch.org
5956T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5957S: Maintained
5958F: net/openvswitch/
5959
Clemens Ladischaf399172011-01-10 16:32:54 +01005960OPL4 DRIVER
5961M: Clemens Ladisch <clemens@ladisch.de>
5962L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5963T: git git://git.alsa-project.org/alsa-kernel.git
5964S: Maintained
5965F: sound/drivers/opl4/
5966
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005968M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969L: oprofile-list@lists.sf.net
5970S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005971F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005972F: arch/*/oprofile/
5973F: drivers/oprofile/
5974F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005976ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005977M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005978M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005979L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5980W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005981T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005982S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005983F: Documentation/filesystems/ocfs2.txt
5984F: Documentation/filesystems/dlmfs.txt
5985F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005986
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005988L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005989W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005990W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005991S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005992F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005994OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005995M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005996M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005997L: osd-dev@open-osd.org
5998W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005999T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02006000S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006001F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07006002F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006003F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02006004
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006005P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006006M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006007L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006008W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006010F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006011
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006012PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006013M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006014L: netdev@vger.kernel.org
6015S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006016F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006017
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006018PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006019M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006020L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006022F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006023
Steffen Klassert48fc2672010-08-13 10:10:46 -04006024PADATA PARALLEL EXECUTION MECHANISM
6025M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006026L: linux-crypto@vger.kernel.org
6027S: Maintained
6028F: kernel/padata.c
6029F: include/linux/padata.h
6030F: Documentation/padata.txt
6031
Harald Welte709ee532008-09-23 17:46:57 +02006032PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006033M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05006034L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006036F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006037
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006038PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006039M: David Howells <dhowells@redhat.com>
6040M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006041L: linux-am33-list@redhat.com (moderated for non-subscribers)
6042W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006044F: Documentation/mn10300/
6045F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006048L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006049S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006050F: drivers/parport/
6051F: include/linux/parport*.h
6052F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006053F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006055PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006056M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006057M: Chris Wright <chrisw@sous-sol.org>
6058M: Alok Kataria <akataria@vmware.com>
6059M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006060L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006061S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006062F: Documentation/ia64/paravirt_ops.txt
6063F: arch/*/kernel/paravirt*
6064F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006065
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006068L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069W: http://www.torque.net/linux-pp.html
6070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006071F: Documentation/blockdev/paride.txt
6072F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073
6074PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006075M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006076M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006077L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006079Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006080T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006082F: arch/parisc/
6083F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084
Jim Cromie1662d322006-10-06 00:43:59 -07006085PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006086M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006087L: lm-sensors@lm-sensors.org
6088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006089F: Documentation/hwmon/pc87360
6090F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006091
6092PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006093M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006095F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006096
Jean Delvare1ad107f2010-08-14 21:09:00 +02006097PC87427 HARDWARE MONITORING DRIVER
6098M: Jean Delvare <khali@linux-fr.org>
6099L: lm-sensors@lm-sensors.org
6100S: Maintained
6101F: Documentation/hwmon/pc87427
6102F: drivers/hwmon/pc87427.c
6103
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006104PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006105M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006106S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006107F: drivers/leds/leds-pca9532.c
6108F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006109
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006110PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006111M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006112L: linux-i2c@vger.kernel.org
6113S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006114F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006115
Khalid Aziz3971dae2012-04-12 12:49:13 -07006116PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006117M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006118S: Maintained
6119F: drivers/firmware/pcdp.*
6120
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006121PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006122M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006123L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006125F: Documentation/PCI/pci-error-recovery.txt
6126F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006127
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006129M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006130L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006131Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006132T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006134F: Documentation/PCI/
6135F: drivers/pci/
6136F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006139P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006140L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006141W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006142T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006144F: Documentation/pcmcia/
6145F: drivers/pcmcia/
6146F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147
6148PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006149M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006150L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006152F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153
Steffen Klassert48fc2672010-08-13 10:10:46 -04006154PCRYPT PARALLEL CRYPTO ENGINE
6155M: Steffen Klassert <steffen.klassert@secunet.com>
6156L: linux-crypto@vger.kernel.org
6157S: Maintained
6158F: crypto/pcrypt.c
6159F: include/crypto/pcrypt.h
6160
Tejun Heoe72df0b2010-12-10 17:02:49 +01006161PER-CPU MEMORY ALLOCATOR
6162M: Tejun Heo <tj@kernel.org>
6163M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006164T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6165S: Maintained
6166F: include/linux/percpu*.h
6167F: mm/percpu*.c
6168F: arch/*/include/asm/percpu.h
6169
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006170PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006171M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006173F: include/linux/delayacct.h
6174F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006175
Ingo Molnar57c0c152009-09-21 12:20:38 +02006176PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006177M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6178M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006179M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006180M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006181T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006182S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006183F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006184F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006185F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006186F: arch/*/kernel/perf_event*.c
6187F: arch/*/kernel/*/perf_event*.c
6188F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006189F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006190F: arch/*/kernel/perf_callchain.c
6191F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006192
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006193PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006194M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006195L: linux-abi-devel@lists.sourceforge.net
6196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006197F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006198F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006199
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006200PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006201M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006202S: Supported
6203F: Documentation/networking/phonet.txt
6204F: include/linux/phonet.h
6205F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006206F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006207F: net/phonet/
6208
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006210M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211L: linux-mtd@lists.infradead.org
6212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006213F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214
Bruno Prémontefdbb102012-07-30 21:39:03 +02006215PICOLCD HID DRIVER
6216M: Bruno Prémont <bonbons@linux-vserver.org>
6217L: linux-input@vger.kernel.org
6218S: Maintained
6219F: drivers/hid/hid-picolcd*
6220
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006221PICOXCELL SUPPORT
6222M: Jamie Iles <jamie@jamieiles.com>
6223L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6224T: git git://github.com/jamieiles/linux-2.6-ji.git
6225S: Supported
6226F: arch/arm/mach-picoxcell
6227F: drivers/*/picoxcell*
6228F: drivers/*/*/picoxcell*
6229
Linus Walleij2744e8a2011-05-02 20:50:54 +02006230PIN CONTROL SUBSYSTEM
6231M: Linus Walleij <linus.walleij@linaro.org>
6232S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006233F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006234F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006235
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006236PIN CONTROLLER - ATMEL AT91
6237M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6238L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6239S: Maintained
6240F: drivers/pinctrl/pinctrl-at91.c
6241
Viresh Kumardeda8282012-03-28 22:27:07 +05306242PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006243M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306244L: spear-devel@list.st.com
6245L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6246W: http://www.st.com/spear
6247S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006248F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306249
Peter Osterlund249a6772005-09-27 21:45:30 -07006250PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006251M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006253F: drivers/block/pktcdvd.c
6254F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006255F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006256
GuanXuetaob31d8272011-01-16 00:35:49 +08006257PKUNITY SOC DRIVERS
6258M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6259W: http://mprc.pku.edu.cn/~guanxuetao/linux
6260S: Maintained
6261T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6262F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006263F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006264F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006265F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006266
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006267PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006268M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006269L: lm-sensors@lm-sensors.org
6270W: http://www.lm-sensors.org/
6271W: http://www.roeck-us.net/linux/drivers/
6272T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6273S: Maintained
6274F: Documentation/hwmon/pmbus
6275F: drivers/hwmon/pmbus/
6276F: include/linux/i2c/pmbus.h
6277
Anil Ravindranath89a36812009-08-25 17:35:18 -07006278PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006279M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006280L: linux-scsi@vger.kernel.org
6281W: http://www.pmc-sierra.com/
6282S: Supported
6283F: drivers/scsi/pmcraid.*
6284
jack wangdbf9bfe2009-10-14 16:19:21 +08006285PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006286M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006287M: lindar_liu@usish.com
6288L: linux-scsi@vger.kernel.org
6289S: Supported
6290F: drivers/scsi/pm8001/
6291
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006293M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006294T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006296F: fs/timerfd.c
6297F: include/linux/timer*
6298F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299
Anton Vorontsov3be86142007-07-15 04:43:36 +04006300POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006301M: Anton Vorontsov <cbou@mail.ru>
6302M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006303T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006305F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006306F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006307
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006309M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006310M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313
Vitaly Wool999445d2007-01-04 13:07:03 +01006314PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006315M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006316L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006318F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006319
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322L: linux-ppp@vger.kernel.org
6323S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006324F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325
6326PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006327M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006329F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006330F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331
6332PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006333M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006335F: drivers/net/ppp/pppoe.c
6336F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337
James Chapmana6d23702007-06-27 15:53:17 -07006338PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006339M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006340S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006341F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006342F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006343F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006344
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006345PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006346M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006347W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6348L: linuxpps@ml.enneenne.com (subscribers-only)
6349S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006350F: Documentation/pps/
6351F: drivers/pps/
6352F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006353
Harry Wei71a6d0a2011-05-11 15:13:33 -07006354PPTP DRIVER
6355M: Dmitry Kozlov <xeb@mail.ru>
6356L: netdev@vger.kernel.org
6357S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006358F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006359W: http://sourceforge.net/projects/accel-pptp
6360
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006362M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363L: kpreempt-tech@lists.sourceforge.net
6364W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006366F: Documentation/preempt-locking.txt
6367F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368
6369PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006370M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006371L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006372W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006373S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006374F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006376PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006377M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006378L: linux-ide@vger.kernel.org
6379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006380F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006381
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006382PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006383M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006384L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006385L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006386S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006387F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006388
Geoff Levandf58a9d12006-11-23 00:46:51 +01006389PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006390M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006391L: linuxppc-dev@lists.ozlabs.org
6392L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006394F: arch/powerpc/boot/ps3*
6395F: arch/powerpc/include/asm/lv1call.h
6396F: arch/powerpc/include/asm/ps3*.h
6397F: arch/powerpc/platforms/ps3/
6398F: drivers/*/ps3*
6399F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006400F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006401F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006402F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006403
Jim Pariscffb4add2009-01-06 11:32:10 +00006404PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006405M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006406L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006407S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006408F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006409
Anton Vorontsov8defe592012-08-03 18:07:20 -07006410PSTORE FILESYSTEM
6411M: Anton Vorontsov <cbouatmailru@gmail.com>
6412M: Colin Cross <ccross@android.com>
6413M: Kees Cook <keescook@chromium.org>
6414M: Tony Luck <tony.luck@intel.com>
6415S: Maintained
6416T: git git://git.infradead.org/users/cbou/linux-pstore.git
6417F: fs/pstore/
6418F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006419F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006420F: drivers/acpi/apei/erst.c
6421
Richard Cochran7fbc4152012-03-10 01:55:53 +00006422PTP HARDWARE CLOCK SUPPORT
6423M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006424L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006425S: Maintained
6426W: http://linuxptp.sourceforge.net/
6427F: Documentation/ABI/testing/sysfs-ptp
6428F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006429F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006430F: drivers/net/phy/dp83640*
6431F: drivers/ptp/*
6432F: include/linux/ptp_cl*
6433
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006434PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006435M: Roland McGrath <roland@redhat.com>
6436M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006437S: Maintained
6438F: include/asm-generic/syscall.h
6439F: include/linux/ptrace.h
6440F: include/linux/regset.h
6441F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006442F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006443F: kernel/ptrace.c
6444
Michael Krufky83202042006-07-03 00:24:18 -07006445PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006446M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006447L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006448L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006449W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006450T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006452F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006453F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006454
Hans de Goede39532e62012-11-04 17:05:59 -03006455PWC WEBCAM DRIVER
6456M: Hans de Goede <hdegoede@redhat.com>
6457L: linux-media@vger.kernel.org
6458T: git git://linuxtv.org/media_tree.git
6459S: Maintained
6460F: drivers/media/usb/pwc/*
6461
Thierry Reding200efed2012-03-27 13:16:18 +02006462PWM SUBSYSTEM
6463M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006464L: linux-kernel@vger.kernel.org
6465S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006466W: http://gitorious.org/linux-pwm
6467T: git git://gitorious.org/linux-pwm/linux-pwm.git
6468F: Documentation/pwm.txt
6469F: Documentation/devicetree/bindings/pwm/
6470F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006471F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006472F: drivers/video/backlight/pwm_bl.c
6473F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006474
Eric Miao30ec2612008-06-12 15:21:41 -07006475PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006476M: Eric Miao <eric.y.miao@gmail.com>
6477M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006478M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006479L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006480T: git git://github.com/hzhuang1/linux.git
6481T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006483F: arch/arm/mach-pxa/
6484F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006485F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006486F: drivers/usb/gadget/pxa2*
6487F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006488F: sound/arm/pxa*
6489F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006491MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006492M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006493M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006494L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006495T: git git://github.com/hzhuang1/linux.git
6496T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006497S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006498F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006499
Pierre Ossman272f1332007-05-14 21:25:26 +02006500PXA MMCI DRIVER
6501S: Orphan
6502
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006503PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006504M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006505L: rtc-linux@googlegroups.com
6506S: Maintained
6507
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006508QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006509M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006510L: linux-rdma@vger.kernel.org
6511S: Supported
6512F: drivers/infiniband/hw/qib/
6513
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006514QLOGIC QLA1280 SCSI DRIVER
6515M: Michael Reed <mdr@sgi.com>
6516L: linux-scsi@vger.kernel.org
6517S: Maintained
6518F: drivers/scsi/qla1280.[ch]
6519
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006521M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006522M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523L: linux-scsi@vger.kernel.org
6524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006525F: Documentation/scsi/LICENSE.qla2xxx
6526F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527
Ravi Anand883c98f2010-04-28 11:45:49 +05306528QLOGIC QLA4XXX iSCSI DRIVER
6529M: Ravi Anand <ravi.anand@qlogic.com>
6530M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6531M: iscsi-driver@qlogic.com
6532L: linux-scsi@vger.kernel.org
6533S: Supported
6534F: drivers/scsi/qla4xxx/
6535
Ron Mercer5a4faa872006-07-25 00:40:21 -07006536QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006537M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006538M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006539M: linux-driver@qlogic.com
6540L: netdev@vger.kernel.org
6541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006542F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006543F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006544
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006545QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca3822013-03-06 13:03:25 +00006546M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6547M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006548M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006549M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006550M: linux-driver@qlogic.com
6551L: netdev@vger.kernel.org
6552S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006553F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006554
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006555QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006556M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006557M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006558M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006559M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006560L: netdev@vger.kernel.org
6561S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006562F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006563
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006565M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566W: http://www.alarsen.net/linux/qnx4fs/
6567S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006568F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006569F: include/uapi/linux/qnx4_fs.h
6570F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571
Antti Palosaari91952bc2012-10-01 12:28:46 -03006572QT1010 MEDIA DRIVER
6573M: Antti Palosaari <crope@iki.fi>
6574L: linux-media@vger.kernel.org
6575W: http://linuxtv.org/
6576W: http://palosaari.fi/linux/
6577Q: http://patchwork.linuxtv.org/project/linux-media/list/
6578T: git git://linuxtv.org/anttip/media_tree.git
6579S: Maintained
6580F: drivers/media/tuners/qt1010*
6581
Richard Kuo4f4567c2011-10-31 18:56:38 -05006582QUALCOMM HEXAGON ARCHITECTURE
6583M: Richard Kuo <rkuo@codeaurora.org>
6584L: linux-hexagon@vger.kernel.org
6585S: Supported
6586F: arch/hexagon/
6587
Hans Verkuil35e35402012-11-23 07:02:29 -03006588QUICKCAM PARALLEL PORT WEBCAMS
6589M: Hans Verkuil <hverkuil@xs4all.nl>
6590L: linux-media@vger.kernel.org
6591T: git git://linuxtv.org/media_tree.git
6592W: http://linuxtv.org
6593S: Odd Fixes
6594F: drivers/media/parport/*-qcam*
6595
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006596RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006597M: Yehuda Sadeh <yehuda@inktank.com>
6598M: Sage Weil <sage@inktank.com>
6599M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006600M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006601W: http://ceph.com/
6602T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006603S: Supported
6604F: drivers/block/rbd.c
6605F: drivers/block/rbd_types.h
6606
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006608M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006609L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006611F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006612F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613
Hans de Goedec6c9b342012-11-04 17:03:58 -03006614RADIOSHARK RADIO DRIVER
6615M: Hans de Goede <hdegoede@redhat.com>
6616L: linux-media@vger.kernel.org
6617T: git git://linuxtv.org/media_tree.git
6618S: Maintained
6619F: drivers/media/radio/radio-shark.c
6620
6621RADIOSHARK2 RADIO DRIVER
6622M: Hans de Goede <hdegoede@redhat.com>
6623L: linux-media@vger.kernel.org
6624T: git git://linuxtv.org/media_tree.git
6625S: Maintained
6626F: drivers/media/radio/radio-shark2.c
6627F: drivers/media/radio/radio-tea5777.c
6628
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006630M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006631L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006633F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
Randy Dunlape7839f22008-10-12 16:11:45 -07006635RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006636P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006637M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006638M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006639M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006640L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006641L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006642W: http://rt2x00.serialmonkey.com/
6643S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006644T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006645F: drivers/net/wireless/rt2x00/
6646
Nick Piggin9db55792008-02-08 04:19:49 -08006647RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006648M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006650F: Documentation/blockdev/ramdisk.txt
6651F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006652
Matt Mackall9e95ce22005-04-16 15:25:56 -07006653RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006654M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006656F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006657
Matt Porter394b7012005-11-07 01:00:15 -08006658RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006659M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006660M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006662F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006663
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006664RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006665L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006666S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006667F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006668
6669RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006670M: Josh Triplett <josh@freedesktop.org>
6671M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006672S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006673T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006674F: Documentation/RCU/torture.txt
6675F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006676
Florian Fainellic1f766b2008-02-06 22:39:44 +01006677RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006679S: Maintained
6680
Florian Fainellidb17f3952007-12-19 11:30:30 +01006681RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006682M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006683L: netdev@vger.kernel.org
6684S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006685F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006686
Andy Grovera09ed662009-02-24 15:30:41 +00006687RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006688M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006689L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006690S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006691F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006692
Josh Triplett595182b2006-10-04 02:17:21 -07006693READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006694M: Dipankar Sarma <dipankar@in.ibm.com>
6695M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006696W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006697S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006698T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006699F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006700X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006701F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006702F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006703X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006704
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006705REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006706M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006707L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006708Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006710F: Documentation/rtc.txt
6711F: drivers/rtc/
6712F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006713F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006714
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006716L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006718F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719
Mark Brownb83a3132011-05-11 19:59:58 +02006720REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006721M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006722T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6723S: Supported
6724F: drivers/base/regmap/
6725F: include/linux/regmap.h
6726
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006727REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6728M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006729T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006730S: Maintained
6731F: drivers/remoteproc/
6732F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006733F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006734
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03006735REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
6736M: Ohad Ben-Cohen <ohad@wizery.com>
6737T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
6738S: Maintained
6739F: drivers/rpmsg/
6740F: Documentation/rpmsg.txt
6741F: include/linux/rpmsg.h
6742
Ivo van Doorne08976452008-04-12 19:23:55 +02006743RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006744M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006745L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006746W: http://wireless.kernel.org/
6747T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6748T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006749S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006750F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006751F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006752
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006753RICOH SMARTMEDIA/XD DRIVER
6754M: Maxim Levitsky <maximlevitsky@gmail.com>
6755S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006756F: drivers/mtd/nand/r852.c
6757F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006758
Maxim Levitsky92634122011-03-25 01:56:59 -07006759RICOH R5C592 MEMORYSTICK DRIVER
6760M: Maxim Levitsky <maximlevitsky@gmail.com>
6761S: Maintained
6762F: drivers/memstick/host/r592.*
6763
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764ROCKETPORT DRIVER
6765P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766W: http://www.comtrol.com
6767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006768F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006769F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770
6771ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006772M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006774W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006776F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006777F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006778F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779
Antti Palosaari91952bc2012-10-01 12:28:46 -03006780RTL2830 MEDIA DRIVER
6781M: Antti Palosaari <crope@iki.fi>
6782L: linux-media@vger.kernel.org
6783W: http://linuxtv.org/
6784W: http://palosaari.fi/linux/
6785Q: http://patchwork.linuxtv.org/project/linux-media/list/
6786T: git git://linuxtv.org/anttip/media_tree.git
6787S: Maintained
6788F: drivers/media/dvb-frontends/rtl2830*
6789
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006790RTL2832 MEDIA DRIVER
6791M: Antti Palosaari <crope@iki.fi>
6792L: linux-media@vger.kernel.org
6793W: http://linuxtv.org/
6794W: http://palosaari.fi/linux/
6795Q: http://patchwork.linuxtv.org/project/linux-media/list/
6796T: git git://linuxtv.org/anttip/media_tree.git
6797S: Maintained
6798F: drivers/media/dvb-frontends/rtl2832*
6799
Larry Finger59840482008-11-12 17:13:09 -06006800RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006801M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006802L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006803W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006804T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006805S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006806F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006807
Larry Finger59840482008-11-12 17:13:09 -06006808RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006809M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006810M: Hin-Tak Leung <htl10@users.sourceforge.net>
6811M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006812L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006813W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006814T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006815S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006816F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006817
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006818RTL8192CE WIRELESS DRIVER
6819M: Larry Finger <Larry.Finger@lwfinger.net>
6820M: Chaoming Li <chaoming_li@realsil.com.cn>
6821L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006822W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006823T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6824S: Maintained
6825F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006826F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006827
6828S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006829M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006830L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006832F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006833
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834S390
Joe Perches8b58be82009-07-29 15:04:30 -07006835M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6836M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006838L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006839W: http://www.ibm.com/developerworks/linux/linux390/
6840S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006841F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006842F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006843F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006844F: Documentation/s390/
6845F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006846
6847S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006848M: Ursula Braun <ursula.braun@de.ibm.com>
6849M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006850M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006851L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006852W: http://www.ibm.com/developerworks/linux/linux390/
6853S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006854F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006855
Felix Beckfeed9b62009-03-26 15:24:23 +01006856S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006857M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006858M: linux390@de.ibm.com
6859L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006860W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006861S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006862F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006863
Heiko Carstens5238da42006-02-11 17:56:01 -08006864S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006865M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006866M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006867L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006868W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006870F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871
Ursula Braundd96df22007-09-19 13:09:02 +02006872S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006873M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006874M: linux390@de.ibm.com
6875L: linux-s390@vger.kernel.org
6876W: http://www.ibm.com/developerworks/linux/linux390/
6877S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006878F: drivers/s390/net/*iucv*
6879F: include/net/iucv/
6880F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006881
Ben Dooks4dde7f72008-06-30 22:40:38 +01006882S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006883M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006885S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006886F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006887
Hans Verkuil1f15a222012-11-23 07:45:29 -03006888SAA6588 RDS RECEIVER DRIVER
6889M: Hans Verkuil <hverkuil@xs4all.nl>
6890L: linux-media@vger.kernel.org
6891T: git git://linuxtv.org/media_tree.git
6892W: http://linuxtv.org
6893S: Odd Fixes
6894F: drivers/media/i2c/saa6588*
6895
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006896SAA7134 VIDEO4LINUX DRIVER
6897M: Mauro Carvalho Chehab <mchehab@redhat.com>
6898L: linux-media@vger.kernel.org
6899W: http://linuxtv.org
6900T: git git://linuxtv.org/media_tree.git
6901S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006902F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006903F: drivers/media/pci/saa7134/
6904
Linus Torvalds1da177e2005-04-16 15:20:36 -07006905SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006906M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006907L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006908T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006910F: drivers/media/common/saa7146/
6911F: drivers/media/pci/saa7146/
6912F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913
Corentin Chary92304a42011-12-05 12:38:35 -05006914SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006915M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006916L: platform-driver-x86@vger.kernel.org
6917S: Maintained
6918F: drivers/platform/x86/samsung-laptop.c
6919
Mark Brown4a109cc2010-09-24 10:50:46 +01006920SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006921M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006922L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6923S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006924F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006925
Jingoo Han0d89a282011-12-19 11:09:35 +09006926SAMSUNG FRAMEBUFFER DRIVER
6927M: Jingoo Han <jg1.han@samsung.com>
6928L: linux-fbdev@vger.kernel.org
6929S: Maintained
6930F: drivers/video/s3c-fb.c
6931
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006932SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6933M: Sangbeom Kim <sbkim73@samsung.com>
6934L: linux-kernel@vger.kernel.org
6935S: Supported
6936F: drivers/mfd/sec*.c
6937F: drivers/regulator/s2m*.c
6938F: drivers/regulator/s5m*.c
6939F: drivers/rtc/rtc-sec.c
6940F: include/linux/mfd/samsung/
6941
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006942SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6943M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6944L: linux-media@vger.kernel.org
6945L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6946S: Maintained
6947F: drivers/media/platform/s3c-camif/
6948F: include/media/s3c_camif.h
6949
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006950SAMSUNG S5C73M3 CAMERA DRIVER
6951M: Kyungmin Park <kyungmin.park@samsung.com>
6952M: Andrzej Hajda <a.hajda@samsung.com>
6953L: linux-media@vger.kernel.org
6954S: Supported
6955F: drivers/media/i2c/s5c73m3/*
6956
Alan Coxca749e22011-03-18 13:56:14 +00006957SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006958M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006959L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006960S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006961F: drivers/tty/serial
6962
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306963SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006964M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306965S: Maintained
6966F: include/linux/dw_dmac.h
6967F: drivers/dma/dw_dmac_regs.h
6968F: drivers/dma/dw_dmac.c
6969
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006970SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6971M: Seungwon Jeon <tgih.jun@samsung.com>
6972M: Jaehoon Chung <jh80.chung@samsung.com>
6973L: linux-mmc@vger.kernel.org
6974S: Maintained
6975F: include/linux/mmc/dw_mmc.h
6976F: drivers/mmc/host/dw_mmc*
6977
Thomas Gleixner88606e82010-12-14 21:37:13 +01006978TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006979M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006980M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006981T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006982S: Supported
6983F: include/linux/clocksource.h
6984F: include/linux/time.h
6985F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006986F: include/uapi/linux/time.h
6987F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006988F: kernel/time/clocksource.c
6989F: kernel/time/time*.c
6990F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006991F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006992
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006993TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006994M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006995M: Hans Verkuil <hverkuil@xs4all.nl>
6996S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006997F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006998
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007000M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007002F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003
7004SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01007005M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007006M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007007T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09007009F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07007010F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007011F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012
Chen Liqin6bcf6732009-06-13 15:24:33 +08007013SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07007014M: Chen Liqin <liqin.chen@sunplusct.com>
7015M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08007016W: http://www.sunplusct.com
7017S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07007018F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08007019
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007021M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022L: linux-scsi@vger.kernel.org
7023W: http://www.kernel.dk
7024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007025F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026
Roland Dreierfb50a832010-10-07 09:54:53 -07007027SCSI RDMA PROTOCOL (SRP) INITIATOR
7028M: David Dillow <dillowda@ornl.gov>
7029L: linux-rdma@vger.kernel.org
7030S: Supported
7031W: http://www.openfabrics.org
7032Q: http://patchwork.kernel.org/project/linux-rdma/list/
7033T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7034F: drivers/infiniband/ulp/srp/
7035F: include/scsi/srp.h
7036
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007038M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039L: linux-scsi@vger.kernel.org
7040W: http://www.torque.net/sg
7041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007042F: drivers/scsi/sg.c
7043F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044
7045SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007046M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007048T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7049T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7050T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007052F: drivers/scsi/
7053F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054
7055SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007056M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057L: linux-scsi@vger.kernel.org
7058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007059F: Documentation/scsi/st.txt
7060F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061
7062SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007063M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007064M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007065L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007066W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007068F: Documentation/networking/sctp.txt
7069F: include/linux/sctp.h
7070F: include/net/sctp/
7071F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072
7073SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007074M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007075S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007076F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007077F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007078F: drivers/watchdog/scx200_wdt.c
7079F: drivers/i2c/busses/scx200*
7080F: drivers/mtd/maps/scx200_docflash.c
7081F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007082
7083SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007086F: drivers/char/scx200_gpio.c
7087F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007088
7089SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007090M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007092F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093
Sascha Sommer6a369132008-07-15 14:21:29 +02007094SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007095M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007096L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007098F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007099
Randy Dunlape7839f22008-10-12 16:11:45 -07007100SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007101M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007102L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007103T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7104S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007105F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007106F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007107
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007108SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007109M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007110L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007111L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007113F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114
Ben Dooks0d1bb412009-06-14 13:52:37 +01007115SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007116M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007117L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007118S: Maintained
7119F: drivers/mmc/host/sdhci-s3c.c
7120
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007121SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007122M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007123L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007124L: linux-mmc@vger.kernel.org
7125S: Maintained
7126F: drivers/mmc/host/sdhci-spear.c
7127
James Morris8711cca2008-12-04 03:19:45 +11007128SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007129M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007130L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007131T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007132W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007133S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007134F: security/
James Morris8711cca2008-12-04 03:19:45 +11007135
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007137M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138S: Supported
7139
7140SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007141M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007142M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007143M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007144L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007145W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007146T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007148F: include/linux/selinux*
7149F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007150F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151
John Johansenc1c124e2010-07-29 14:48:09 -07007152APPARMOR SECURITY MODULE
7153M: John Johansen <john.johansen@canonical.com>
7154L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7155W: apparmor.wiki.kernel.org
7156T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7157S: Supported
7158F: security/apparmor/
7159
Jiri Slabycef2cf02007-05-08 00:31:45 -07007160SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007161M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007163F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007164F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007165
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007166SERIAL ATA (SATA) SUBSYSTEM
Tejun Heo3d9b9352013-05-07 10:09:27 -07007167M: Tejun Heo <tj@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168L: linux-ide@vger.kernel.org
Tejun Heo3d9b9352013-05-07 10:09:27 -07007169T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007171F: drivers/ata/
7172F: include/linux/ata.h
7173F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007174
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307175SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007176M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007177L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007178W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007179S: Supported
7180F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307181
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007182SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007183M: Sathya Perla <sathya.perla@emulex.com>
7184M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7185M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007186L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007187W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007188S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007189F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007190
Ben Hutchings8ceee662008-04-27 12:55:59 +01007191SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007192M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007193M: Ben Hutchings <bhutchings@solarflare.com>
7194L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007195S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007196F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007197
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007198SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007199M: Dimitri Sivanich <sivanich@sgi.com>
7200M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007202F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007203
7204SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007205M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007206L: linux-ia64@vger.kernel.org
7207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007208F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007209F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007210F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007211
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007213M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214L: linux-visws-devel@lists.sf.net
7215W: http://linux-visws.sf.net
7216S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007217F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218
Jack Steiner75312612008-08-15 00:40:42 -07007219SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007220M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007222F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007223
Hans Verkuil49cc6292012-11-30 07:13:29 -03007224SI470X FM RADIO RECEIVER I2C DRIVER
7225M: Hans Verkuil <hverkuil@xs4all.nl>
7226L: linux-media@vger.kernel.org
7227T: git git://linuxtv.org/media_tree.git
7228W: http://linuxtv.org
7229S: Odd Fixes
7230F: drivers/media/radio/si470x/radio-si470x-i2c.c
7231
7232SI470X FM RADIO RECEIVER USB DRIVER
7233M: Hans Verkuil <hverkuil@xs4all.nl>
7234L: linux-media@vger.kernel.org
7235T: git git://linuxtv.org/media_tree.git
7236W: http://linuxtv.org
7237S: Maintained
7238F: drivers/media/radio/si470x/radio-si470x-common.c
7239F: drivers/media/radio/si470x/radio-si470x.h
7240F: drivers/media/radio/si470x/radio-si470x-usb.c
7241
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007242SI4713 FM RADIO TRANSMITTER I2C DRIVER
7243M: Eduardo Valentin <edubezval@gmail.com>
7244L: linux-media@vger.kernel.org
7245T: git git://linuxtv.org/media_tree.git
7246W: http://linuxtv.org
7247S: Odd Fixes
7248F: drivers/media/radio/si4713-i2c.?
7249
7250SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7251M: Eduardo Valentin <edubezval@gmail.com>
7252L: linux-media@vger.kernel.org
7253T: git git://linuxtv.org/media_tree.git
7254W: http://linuxtv.org
7255S: Odd Fixes
7256F: drivers/media/radio/radio-si4713.h
7257
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007258SIANO DVB DRIVER
7259M: Mauro Carvalho Chehab <mchehab@redhat.com>
7260L: linux-media@vger.kernel.org
7261W: http://linuxtv.org
7262T: git git://linuxtv.org/media_tree.git
7263S: Odd fixes
7264F: drivers/media/common/siano/
7265F: drivers/media/dvb/siano/
7266F: drivers/media/usb/siano/
7267F: drivers/media/mmc/siano
7268
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007269SH_VEU V4L2 MEM2MEM DRIVER
7270M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7271L: linux-media@vger.kernel.org
7272S: Maintained
7273F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007274
7275SH_VOU V4L2 OUTPUT DRIVER
7276M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7277L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007278S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007279F: drivers/media/platform/sh_vou.c
7280F: include/media/sh_vou.h
7281
Len Brown6349d992009-08-14 15:07:14 -04007282SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007283M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007284L: sfi-devel@simplefirmware.org
7285W: http://simplefirmware.org/
7286T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007287S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007288F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007289F: drivers/sfi/
7290F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007291
Linus Torvalds1da177e2005-04-16 15:20:36 -07007292SIMTEC EB110ATX (Chalice CATS)
7293P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007294P: Vincent Sanders <vince@simtec.co.uk>
7295M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296W: http://www.simtec.co.uk/products/EB110ATX/
7297S: Supported
7298
7299SIMTEC EB2410ITX (BAST)
7300P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007301P: Vincent Sanders <vince@simtec.co.uk>
7302M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303W: http://www.simtec.co.uk/products/EB2410ITX/
7304S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007305F: arch/arm/mach-s3c2410/mach-bast.c
7306F: arch/arm/mach-s3c2410/bast-ide.c
7307F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007309TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007310M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007311M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307312L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307313T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007314Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007315S: Supported
7316F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007317F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007318
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007319TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007320M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007321L: linux-media@vger.kernel.org
7322L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7323W: http://linuxtv.org/
7324Q: http://patchwork.linuxtv.org/project/linux-media/list/
7325T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007326S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007327F: drivers/media/platform/davinci/
7328F: include/media/davinci/
7329
Francois Romieu92aab3c2005-07-30 13:11:18 +02007330SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007331M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007332L: netdev@vger.kernel.org
7333S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007334F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007335
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007337M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007339L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007341F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
7343SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007344M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007347F: Documentation/fb/sisfb.txt
7348F: drivers/video/sis/
7349F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350
7351SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007352M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353W: http://www.winischhofer.at/linuxsisusbvga.shtml
7354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007355F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356
Christoph Lameter415ad262007-07-26 10:40:56 -07007357SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007358M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007359M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007360M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007361L: linux-mm@kvack.org
7362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007363F: include/linux/sl?b*.h
7364F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007365
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007366SLEEPABLE READ-COPY UPDATE (SRCU)
7367M: Lai Jiangshan <laijs@cn.fujitsu.com>
7368M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7369W: http://www.rdrop.com/users/paulmck/RCU/
7370S: Supported
7371T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7372F: include/linux/srcu*
7373F: kernel/srcu*
7374
Casey Schaufler66372842012-05-23 18:34:52 -07007375SMACK SECURITY MODULE
7376M: Casey Schaufler <casey@schaufler-ca.com>
7377L: linux-security-module@vger.kernel.org
7378W: http://schaufler-ca.com
7379T: git git://git.gitorious.org/smack-next/kernel.git
7380S: Maintained
7381F: Documentation/security/Smack.txt
7382F: security/smack/
7383
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007385M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007386S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007387F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388
Sakari Ailuse8e31622012-11-12 18:14:39 -03007389SMIA AND SMIA++ IMAGE SENSOR DRIVER
7390M: Sakari Ailus <sakari.ailus@iki.fi>
7391L: linux-media@vger.kernel.org
7392S: Maintained
7393F: drivers/media/i2c/smiapp
7394F: include/media/smiapp.h
7395F: drivers/media/i2c/smiapp-pll.c
7396F: drivers/media/i2c/smiapp-pll.h
7397
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007398SMM665 HARDWARE MONITOR DRIVER
7399M: Guenter Roeck <linux@roeck-us.net>
7400L: lm-sensors@lm-sensors.org
7401S: Maintained
7402F: Documentation/hwmon/smm665
7403F: drivers/hwmon/smm665.c
7404
Steve Glendinning9df73052010-08-14 21:08:54 +02007405SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007406M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007407L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007408S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007409F: Documentation/hwmon/emc2103
7410F: drivers/hwmon/emc2103.c
7411
Hans de Goedea98d5062011-03-21 17:59:36 +01007412SMSC SCH5627 HARDWARE MONITOR DRIVER
7413M: Hans de Goede <hdegoede@redhat.com>
7414L: lm-sensors@lm-sensors.org
7415S: Supported
7416F: Documentation/hwmon/sch5627
7417F: drivers/hwmon/sch5627.c
7418
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007419SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007420M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007421L: lm-sensors@lm-sensors.org
7422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007423F: Documentation/hwmon/smsc47b397
7424F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007425
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007426SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007427M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007428L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007430F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007431F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007432
Steve Glendinning2cb37722008-12-11 20:54:30 -08007433SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007434M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007435L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007436S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007437F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007438
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007439SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007440M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007441L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007442S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007443F: drivers/video/smscufx.c
7444
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007445SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007446M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007447L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007448T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007449S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007450F: include/media/soc*
7451F: drivers/media/i2c/soc_camera/
7452F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007454SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007455M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007457F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007458
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007460M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007463F: drivers/md/
7464F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007465F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007468M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007469L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007471F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472
Michael Buesch61e115a2007-09-18 15:12:50 -04007473SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007474M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007475L: netdev@vger.kernel.org
7476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007477F: drivers/ssb/
7478F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007479
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007481M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007482L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007483W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007485F: Documentation/laptops/sony-laptop.txt
7486F: drivers/char/sonypi.c
7487F: drivers/platform/x86/sony-laptop.c
7488F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489
Alex Dubovbaf85322008-02-09 10:20:54 -08007490SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007491M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007492W: http://tifmxx.berlios.de/
7493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007494F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007495
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007497M: Jaroslav Kysela <perex@perex.cz>
7498M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007499L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007500W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007501T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007502T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007504F: Documentation/sound/
7505F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007506F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007507F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508
Mark Brownbd903bd2008-11-19 19:16:05 +00007509SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007510M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007511M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007512T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007513L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007514W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007516F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007517F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007518
Sam Ravnborg473321f2009-01-04 15:47:49 -08007519SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007520M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007522Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007523T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7524T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007526F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007527F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528
David S. Miller6404fcc2010-03-16 01:00:17 -07007529SPARC SERIAL DRIVERS
7530M: "David S. Miller" <davem@davemloft.net>
7531L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007532T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7533T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007534S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007535F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007536F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007537F: drivers/tty/serial/sunhv.c
7538F: drivers/tty/serial/sunsab.c
7539F: drivers/tty/serial/sunsab.h
7540F: drivers/tty/serial/sunsu.c
7541F: drivers/tty/serial/sunzilog.c
7542F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007543
Christopher Li389325b2012-04-05 14:25:14 -07007544SPARSE CHECKER
7545M: "Christopher Li" <sparse@chrisli.org>
7546L: linux-sparse@vger.kernel.org
7547W: https://sparse.wiki.kernel.org/
7548T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7549T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7550S: Maintained
7551F: include/linux/compiler.h
7552
viresh kumarfc0c1952010-04-01 12:31:21 +01007553SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007554M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307555M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007556L: spear-devel@list.st.com
7557L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007558W: http://www.st.com/spear
7559S: Maintained
7560F: arch/arm/plat-spear/
7561
Viresh Kumar71e09a92012-04-20 22:39:48 +05307562SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007563M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307564M: Shiraz Hashim <shiraz.hashim@st.com>
7565L: spear-devel@list.st.com
7566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7567W: http://www.st.com/spear
7568S: Maintained
7569F: arch/arm/mach-spear13xx/
7570
viresh kumarfc0c1952010-04-01 12:31:21 +01007571SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007572M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307573M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007574L: spear-devel@list.st.com
7575L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007576W: http://www.st.com/spear
7577S: Maintained
7578F: arch/arm/mach-spear3xx/
7579
7580SPEAR6XX MACHINE SUPPORT
7581M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307582M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007583M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007584L: spear-devel@list.st.com
7585L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007586W: http://www.st.com/spear
7587S: Maintained
7588F: arch/arm/mach-spear6xx/
7589
7590SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007591M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007592L: spear-devel@list.st.com
7593L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007594W: http://www.st.com/spear
7595S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307596F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007597
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007598SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007599M: Mark Brown <broonie@kernel.org>
Grant Likely19624232013-04-08 11:51:42 +01007600M: Grant Likely <grant.likely@linaro.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007601L: spi-devel-general@lists.sourceforge.net
Mark Browne7e4e132013-04-18 18:18:47 +01007602T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007603Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007605F: Documentation/spi/
7606F: drivers/spi/
7607F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007608F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007609
Jim Lewis2752e4012006-09-29 02:01:19 -07007610SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007611M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7612M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007613L: netdev@vger.kernel.org
7614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007615F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007616F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007617
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007618SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007619M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007620L: linuxppc-dev@lists.ozlabs.org
7621L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007622W: http://www.ibm.com/developerworks/power/cell/
7623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007624F: Documentation/filesystems/spufs.txt
7625F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007626
Phillip Lougherfc555842009-01-05 08:46:29 +00007627SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007628M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007629L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7630W: http://squashfs.org.uk
7631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007632F: Documentation/filesystems/squashfs.txt
7633F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007634
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007636M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007638F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639
Linus Torvalds26e9a392008-10-17 09:50:12 -07007640STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007641M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007642L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007643S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007644
Linus Torvalds26e9a392008-10-17 09:50:12 -07007645STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007646M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007647T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007648L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007649S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007650F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007651
Joe Perchesc8c8b102011-07-05 09:42:12 -07007652STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7653M: Henk de Groot <pe1dnn@amsat.org>
7654S: Odd Fixes
7655F: drivers/staging/wlags49_h2/
7656F: drivers/staging/wlags49_h25/
7657
Joe Perchesc9555152011-07-05 09:42:01 -07007658STAGING - ASUS OLED
7659M: Jakub Schmidtke <sjakub@gmail.com>
7660S: Odd Fixes
7661F: drivers/staging/asus_oled/
7662
Joe Perchesebd3d012011-07-05 09:42:02 -07007663STAGING - COMEDI
7664M: Ian Abbott <abbotti@mev.co.uk>
7665M: Mori Hess <fmhess@users.sourceforge.net>
7666S: Odd Fixes
7667F: drivers/staging/comedi/
7668
Joe Perches8ca572c2011-07-05 09:42:03 -07007669STAGING - CRYSTAL HD VIDEO DECODER
7670M: Naren Sankar <nsankar@broadcom.com>
7671M: Jarod Wilson <jarod@wilsonet.com>
7672M: Scott Davilla <davilla@4pi.com>
7673M: Manu Abraham <abraham.manu@gmail.com>
7674S: Odd Fixes
7675F: drivers/staging/crystalhd/
7676
Joe Perches0f16ffc2011-07-05 09:42:04 -07007677STAGING - ECHO CANCELLER
7678M: Steve Underwood <steveu@coppice.org>
7679M: David Rowe <david@rowetel.com>
7680S: Odd Fixes
7681F: drivers/staging/echo/
7682
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007683STAGING - ET131X NETWORK DRIVER
7684M: Mark Einon <mark.einon@gmail.com>
7685S: Odd Fixes
7686F: drivers/staging/et131x/
7687
Joe Perchesa0138162011-07-05 15:21:34 -07007688STAGING - FLARION FT1000 DRIVERS
7689M: Marek Belisko <marek.belisko@gmail.com>
7690S: Odd Fixes
7691F: drivers/staging/ft1000/
7692
Joe Perchesec3fab92011-07-05 09:42:05 -07007693STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7694M: David Täht <d@teklibre.com>
7695S: Odd Fixes
7696F: drivers/staging/frontier/
7697
Hans Verkuil98ded592013-03-09 12:59:44 -03007698STAGING - GO7007 MPEG CODEC
7699M: Hans Verkuil <hans.verkuil@cisco.com>
7700S: Maintained
7701F: drivers/staging/media/go7007/
7702
Joe Perches6c1bb422011-07-05 09:42:07 -07007703STAGING - INDUSTRIAL IO
7704M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007705L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007706S: Odd Fixes
7707F: drivers/staging/iio/
7708
Joe Perchesa0138162011-07-05 15:21:34 -07007709STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7710M: Jarod Wilson <jarod@wilsonet.com>
7711W: http://www.lirc.org/
7712S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007713F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007714
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007715STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007716M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007717M: Marc Dietrich <marvin24@gmx.de>
7718L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007719L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007720S: Maintained
7721F: drivers/staging/nvec/
7722
Joe Perchesa0138162011-07-05 15:21:34 -07007723STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7724M: Andres Salomon <dilinger@queued.net>
7725M: Chris Ball <cjb@laptop.org>
7726M: Jon Nettleton <jon.nettleton@gmail.com>
7727W: http://wiki.laptop.org/go/DCON
7728S: Odd Fixes
7729F: drivers/staging/olpc_dcon/
7730
Chris Kelly94cfdd12012-03-14 10:55:42 +00007731STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007732M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007733S: Maintained
7734F: drivers/staging/ozwpan/
7735
Joe Perchesa0138162011-07-05 15:21:34 -07007736STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007737M: Willy Tarreau <willy@meta-x.org>
7738S: Odd Fixes
7739F: drivers/staging/panel/
7740
Joe Perchesa0138162011-07-05 15:21:34 -07007741STAGING - REALTEK RTL8712U DRIVERS
7742M: Larry Finger <Larry.Finger@lwfinger.net>
7743M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7744S: Odd Fixes
7745F: drivers/staging/rtl8712/
7746
Joe Perches9629fa82011-07-05 09:42:09 -07007747STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7748M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7749S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007750F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007751
Joe Perchesa0138162011-07-05 15:21:34 -07007752STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007753M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7754S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007755F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007756
7757STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7758M: William Hubbs <w.d.hubbs@gmail.com>
7759M: Chris Brannon <chris@the-brannons.com>
7760M: Kirk Reiser <kirk@braille.uwo.ca>
7761M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7762L: speakup@braille.uwo.ca
7763W: http://www.linux-speakup.org/
7764S: Odd Fixes
7765F: drivers/staging/speakup/
7766
7767STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007768M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007769S: Odd Fixes
7770F: drivers/staging/tidspbridge/
7771
Joe Perchesa0138162011-07-05 15:21:34 -07007772STAGING - USB ENE SM/MS CARD READER DRIVER
7773M: Al Cho <acho@novell.com>
7774S: Odd Fixes
7775F: drivers/staging/keucr/
7776
Joe Perchesb3e871c2011-07-05 09:42:10 -07007777STAGING - VIA VT665X DRIVERS
7778M: Forest Bond <forest@alittletooquiet.net>
7779S: Odd Fixes
7780F: drivers/staging/vt665?/
7781
Joe Perches81a9a522011-07-05 09:42:11 -07007782STAGING - WINBOND IS89C35 WLAN USB DRIVER
7783M: Pavel Machek <pavel@ucw.cz>
7784S: Odd Fixes
7785F: drivers/staging/winbond/
7786
Joe Perches709bcb02011-07-05 09:42:13 -07007787STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007788M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007789S: Odd Fixes
7790F: drivers/staging/xgifb/
7791
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007793M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007794S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007795F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007796
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007797SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007798M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007799W: http://sammy.net/sun3/
7800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007801F: arch/m68k/kernel/*sun3*
7802F: arch/m68k/sun3*/
7803F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007804F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007805
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007806SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007807M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007808L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007810Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007811T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007812S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007813F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007814F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007815F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007816
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007817SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007818M: Len Brown <len.brown@intel.com>
7819M: Pavel Machek <pavel@ucw.cz>
7820M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007821L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007822S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007823F: Documentation/power/
7824F: arch/x86/kernel/acpi/
7825F: drivers/base/power/
7826F: kernel/power/
7827F: include/linux/suspend.h
7828F: include/linux/freezer.h
7829F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830
7831SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007832M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833L: linux-video@atrey.karlin.mff.cuni.cz
7834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007835F: Documentation/svga.txt
7836F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007838SWIOTLB SUBSYSTEM
7839M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7840L: linux-kernel@vger.kernel.org
7841S: Supported
7842F: lib/swiotlb.c
7843F: arch/*/kernel/pci-swiotlb.c
7844F: include/linux/swiotlb.h
7845
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307846SYNOPSYS ARC ARCHITECTURE
7847M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307848S: Supported
7849F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307850F: Documentation/devicetree/bindings/arc/
7851F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307852
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007854M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007856F: Documentation/filesystems/sysv-fs.txt
7857F: fs/sysv/
7858F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007860TARGET SUBSYSTEM
7861M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7862L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007863L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007864L: http://groups.google.com/group/linux-iscsi-target-dev
7865W: http://www.linux-iscsi.org
Nicholas Bellinger452cf322013-05-11 16:27:56 -07007866T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007867S: Supported
7868F: drivers/target/
7869F: include/target/
7870F: Documentation/target/
7871
Alan Cox4e688522008-04-30 00:52:11 -07007872TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007873M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007875F: Documentation/accounting/taskstats*
7876F: include/linux/taskstats*
7877F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007878
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007879TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007880M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007881L: netdev@vger.kernel.org
7882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007883F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007884F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007885F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007886
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007887TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007888M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7889M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007890W: http://tcp-lp-mod.sourceforge.net/
7891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007892F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007893
Antti Palosaari91952bc2012-10-01 12:28:46 -03007894TDA10071 MEDIA DRIVER
7895M: Antti Palosaari <crope@iki.fi>
7896L: linux-media@vger.kernel.org
7897W: http://linuxtv.org/
7898W: http://palosaari.fi/linux/
7899Q: http://patchwork.linuxtv.org/project/linux-media/list/
7900T: git git://linuxtv.org/anttip/media_tree.git
7901S: Maintained
7902F: drivers/media/dvb-frontends/tda10071*
7903
7904TDA18212 MEDIA DRIVER
7905M: Antti Palosaari <crope@iki.fi>
7906L: linux-media@vger.kernel.org
7907W: http://linuxtv.org/
7908W: http://palosaari.fi/linux/
7909Q: http://patchwork.linuxtv.org/project/linux-media/list/
7910T: git git://linuxtv.org/anttip/media_tree.git
7911S: Maintained
7912F: drivers/media/tuners/tda18212*
7913
7914TDA18218 MEDIA DRIVER
7915M: Antti Palosaari <crope@iki.fi>
7916L: linux-media@vger.kernel.org
7917W: http://linuxtv.org/
7918W: http://palosaari.fi/linux/
7919Q: http://patchwork.linuxtv.org/project/linux-media/list/
7920T: git git://linuxtv.org/anttip/media_tree.git
7921S: Maintained
7922F: drivers/media/tuners/tda18218*
7923
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007924TDA18271 MEDIA DRIVER
7925M: Michael Krufky <mkrufky@linuxtv.org>
7926L: linux-media@vger.kernel.org
7927W: http://linuxtv.org/
7928W: http://github.com/mkrufky
7929Q: http://patchwork.linuxtv.org/project/linux-media/list/
7930T: git git://linuxtv.org/mkrufky/tuners.git
7931S: Maintained
7932F: drivers/media/tuners/tda18271*
7933
Michael Krufkye48307a2012-10-02 00:56:33 -03007934TDA827x MEDIA DRIVER
7935M: Michael Krufky <mkrufky@linuxtv.org>
7936L: linux-media@vger.kernel.org
7937W: http://linuxtv.org/
7938W: http://github.com/mkrufky
7939Q: http://patchwork.linuxtv.org/project/linux-media/list/
7940T: git git://linuxtv.org/mkrufky/tuners.git
7941S: Maintained
7942F: drivers/media/tuners/tda8290.*
7943
Michael Krufky66cf9212012-10-02 00:56:28 -03007944TDA8290 MEDIA DRIVER
7945M: Michael Krufky <mkrufky@linuxtv.org>
7946L: linux-media@vger.kernel.org
7947W: http://linuxtv.org/
7948W: http://github.com/mkrufky
7949Q: http://patchwork.linuxtv.org/project/linux-media/list/
7950T: git git://linuxtv.org/mkrufky/tuners.git
7951S: Maintained
7952F: drivers/media/tuners/tda8290.*
7953
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007954TDA9840 MEDIA DRIVER
7955M: Hans Verkuil <hverkuil@xs4all.nl>
7956L: linux-media@vger.kernel.org
7957T: git git://linuxtv.org/media_tree.git
7958W: http://linuxtv.org
7959S: Maintained
7960F: drivers/media/i2c/tda9840*
7961
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007962TEA5761 TUNER DRIVER
7963M: Mauro Carvalho Chehab <mchehab@redhat.com>
7964L: linux-media@vger.kernel.org
7965W: http://linuxtv.org
7966T: git git://linuxtv.org/media_tree.git
7967S: Odd fixes
7968F: drivers/media/tuners/tea5761.*
7969
7970TEA5767 TUNER DRIVER
7971M: Mauro Carvalho Chehab <mchehab@redhat.com>
7972L: linux-media@vger.kernel.org
7973W: http://linuxtv.org
7974T: git git://linuxtv.org/media_tree.git
7975S: Maintained
7976F: drivers/media/tuners/tea5767.*
7977
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007978TEA6415C MEDIA DRIVER
7979M: Hans Verkuil <hverkuil@xs4all.nl>
7980L: linux-media@vger.kernel.org
7981T: git git://linuxtv.org/media_tree.git
7982W: http://linuxtv.org
7983S: Maintained
7984F: drivers/media/i2c/tea6415c*
7985
7986TEA6420 MEDIA DRIVER
7987M: Hans Verkuil <hverkuil@xs4all.nl>
7988L: linux-media@vger.kernel.org
7989T: git git://linuxtv.org/media_tree.git
7990W: http://linuxtv.org
7991S: Maintained
7992F: drivers/media/i2c/tea6420*
7993
Jiri Pirko3d249d42011-11-11 22:16:48 +00007994TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007995M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007996L: netdev@vger.kernel.org
7997S: Supported
7998F: drivers/net/team/
7999F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008000F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00008001
Vivien Didelot7d029122013-01-04 16:18:14 -05008002TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8003M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8004S: Maintained
8005F: arch/x86/platform/ts5500/
8006
Sean Young40ad4a32012-11-19 10:32:53 -03008007TECHNOTREND USB IR RECEIVER
8008M: Sean Young <sean@mess.org>
8009L: linux-media@vger.kernel.org
8010S: Maintained
8011F: drivers/media/rc/ttusbir.c
8012
Erik Gilling84b94142010-06-09 15:35:53 -07008013TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07008014M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07008015L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07008016Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8017T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07008018S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07008019N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07008020
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008021TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008022M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008023L: netdev@vger.kernel.org
8024S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008025F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008026
Alan Cox4e688522008-04-30 00:52:11 -07008027Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008028M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008030F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008031
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008032TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008033M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008034M: Max Filippov <jcmvbkbc@gmail.com>
8035L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008037F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008038
Zhang Ruid3fb6952012-11-15 08:58:27 +08008039THERMAL
8040M: Zhang Rui <rui.zhang@intel.com>
Eduardo Valentinfa3031d2013-04-10 14:44:08 +00008041M: Eduardo Valentin <eduardo.valentin@ti.com>
Zhang Ruid3fb6952012-11-15 08:58:27 +08008042L: linux-pm@vger.kernel.org
8043T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
Eduardo Valentin2f99a472013-04-10 14:44:09 +00008044Q: https://patchwork.kernel.org/project/linux-pm/list/
Zhang Ruid3fb6952012-11-15 08:58:27 +08008045S: Supported
8046F: drivers/thermal/
8047F: include/linux/thermal.h
Eduardo Valentincfaf7172013-04-17 17:12:21 +00008048F: include/linux/cpu_cooling.h
Zhang Ruid3fb6952012-11-15 08:58:27 +08008049
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008050THINGM BLINK(1) USB RGB LED DRIVER
8051M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8052S: Maintained
8053F: drivers/hid/hid-thingm.c
8054
Alan Cox4e688522008-04-30 00:52:11 -07008055THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008056M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008057L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05008058L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008059W: http://ibm-acpi.sourceforge.net
8060W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008061T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008063F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008064
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008065TI BANDGAP AND THERMAL DRIVER
8066M: Eduardo Valentin <eduardo.valentin@ti.com>
8067L: linux-pm@vger.kernel.org
8068S: Maintained
8069F: drivers/staging/omap-thermal/
8070
Alex Dubov4020f2d2006-10-04 02:15:37 -07008071TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008072M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008074F: drivers/misc/tifm*
8075F: drivers/mmc/host/tifm_sd.c
8076F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008077
M R Swami Reddy152ad442012-04-02 20:02:31 +05308078TI LM49xxx FAMILY ASoC CODEC DRIVERS
8079M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308080M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308081L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8082S: Maintained
8083F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308084F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308085
Kim, Milo0edd8072012-12-17 16:01:17 -08008086TI LP855x BACKLIGHT DRIVER
8087M: Milo Kim <milo.kim@ti.com>
8088S: Maintained
8089F: Documentation/backlight/lp855x-driver.txt
8090F: drivers/video/backlight/lp855x_bl.c
8091F: include/linux/platform_data/lp855x.h
8092
Kim, Milofaf13f62012-12-10 05:27:03 +00008093TI LP8727 CHARGER DRIVER
8094M: Milo Kim <milo.kim@ti.com>
8095S: Maintained
8096F: drivers/power/lp8727_charger.c
8097F: include/linux/platform_data/lp8727.h
8098
Kim, Milo22f12292012-12-10 05:27:55 +00008099TI LP8788 MFD DRIVER
8100M: Milo Kim <milo.kim@ti.com>
8101S: Maintained
8102F: drivers/iio/adc/lp8788_adc.c
8103F: drivers/leds/leds-lp8788.c
8104F: drivers/mfd/lp8788*.c
8105F: drivers/power/lp8788-charger.c
8106F: drivers/regulator/lp8788-*.c
8107F: include/linux/mfd/lp8788*.h
8108
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008109TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008110M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008111L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8112S: Maintained
8113F: sound/soc/codecs/twl4030*
8114
Luciano Coelho90921012011-11-20 21:40:41 +02008115TI WILINK WIRELESS DRIVERS
8116M: Luciano Coelho <coelho@ti.com>
8117L: linux-wireless@vger.kernel.org
8118W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8119W: http://wireless.kernel.org/en/users/Drivers/wl1251
8120T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8121S: Maintained
8122F: drivers/net/wireless/ti/
8123F: include/linux/wl12xx.h
8124
Per Lidene86eaa32006-01-12 16:45:18 +01008125TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008126M: Jon Maloy <jon.maloy@ericsson.com>
8127M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008128L: netdev@vger.kernel.org (core kernel code)
8129L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008130W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008131S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008132F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008133F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008134
Chris Metcalf867e3592010-05-28 23:09:12 -04008135TILE ARCHITECTURE
8136M: Chris Metcalf <cmetcalf@tilera.com>
8137W: http://www.tilera.com/scm/
8138S: Supported
8139F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008140F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008141F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008142F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008143
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008145M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008146L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147W: http://sourceforge.net/projects/tlan/
8148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008149F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008150F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008151
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008152TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008153M: Kentaro Takeda <takedakn@nttdata.co.jp>
8154M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008155L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8156L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008157L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8158L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8159W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008160T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008162F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008163
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008164TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008165M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05008166L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008167S: Maintained
8168F: drivers/platform/x86/topstar-laptop.c
8169
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05008171L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008172S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008173F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174
8175TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008176M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177L: tlinux-users@tce.toshiba-dme.co.jp
8178W: http://www.buzzard.org.uk/toshiba/
8179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008180F: drivers/char/toshiba.c
8181F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008182F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008183
Pierre Ossmand719f902009-03-24 21:06:09 +01008184TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008185M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008186M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008187L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008188S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008189F: drivers/mmc/host/tmio_mmc*
8190F: drivers/mmc/host/sh_mobile_sdhi.c
8191F: include/linux/mmc/tmio.h
8192F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008193
Guenter Roeck917cc4e2013-05-19 20:44:27 -07008194TMP401 HARDWARE MONITOR DRIVER
8195M: Guenter Roeck <linux@roeck-us.net>
8196L: lm-sensors@lm-sensors.org
8197S: Maintained
8198F: Documentation/hwmon/tmp401
8199F: drivers/hwmon/tmp401.c
8200
Hugh Dickins98f32602009-05-21 20:33:58 +01008201TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008202M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008203L: linux-mm@kvack.org
8204S: Maintained
8205F: include/linux/shmem_fs.h
8206F: mm/shmem.c
8207
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008208TM6000 VIDEO4LINUX DRIVER
8209M: Mauro Carvalho Chehab <mchehab@redhat.com>
8210L: linux-media@vger.kernel.org
8211W: http://linuxtv.org
8212T: git git://linuxtv.org/media_tree.git
8213S: Odd fixes
8214F: drivers/media/usb/tm6000/
8215
Alan Cox4e688522008-04-30 00:52:11 -07008216TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008217M: Kent Yoder <key@linux.vnet.ibm.com>
8218M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008219W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008220M: Marcel Selhorst <tpmdd@selhorst.net>
8221M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008222W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008223L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008225F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008226
Joe Perchesd6f005a2009-10-26 16:49:40 -07008227TRACING
8228M: Steven Rostedt <rostedt@goodmis.org>
8229M: Frederic Weisbecker <fweisbec@gmail.com>
8230M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008231T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008232S: Maintained
8233F: Documentation/trace/ftrace.txt
8234F: arch/*/*/*/ftrace.h
8235F: arch/*/kernel/ftrace.c
8236F: include/*/ftrace.h
8237F: include/linux/trace*.h
8238F: include/trace/
8239F: kernel/trace/
8240
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008242M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008243T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008245K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246
Alan Cox4e688522008-04-30 00:52:11 -07008247TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008248M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008249M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008250S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008251T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008252F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008253F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008254F: include/linux/serial_core.h
8255F: include/linux/serial.h
8256F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008257F: include/uapi/linux/serial_core.h
8258F: include/uapi/linux/serial.h
8259F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008260
Antti Palosaari91952bc2012-10-01 12:28:46 -03008261TUA9001 MEDIA DRIVER
8262M: Antti Palosaari <crope@iki.fi>
8263L: linux-media@vger.kernel.org
8264W: http://linuxtv.org/
8265W: http://palosaari.fi/linux/
8266Q: http://patchwork.linuxtv.org/project/linux-media/list/
8267T: git git://linuxtv.org/anttip/media_tree.git
8268S: Maintained
8269F: drivers/media/tuners/tua9001*
8270
Grant Grundler740db6d2008-02-17 11:53:49 -07008271TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008272M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008273L: netdev@vger.kernel.org
8274S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008275F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276
8277TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008278M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279W: http://vtun.sourceforge.net/tun
8280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008281F: Documentation/networking/tuntap.txt
8282F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008284TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008285M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008287F: drivers/tc/
8288F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008289
Linus Torvalds1da177e2005-04-16 15:20:36 -07008290U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008291M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008292L: linux-scsi@vger.kernel.org
8293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008294F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008295
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008296UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008297M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008298M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008299L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008300T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008301W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008303F: Documentation/filesystems/ubifs.txt
8304F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008305
Alan Coxcc2020e2008-05-19 14:21:51 +01008306UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008307M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008308W: http://www.uclinux.org/
8309L: uclinux-dev@uclinux.org (subscribers-only)
8310S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008311F: arch/m68k/*/*_no.*
8312F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008313
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008314UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008315M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008316W: http://uclinux-h8.sourceforge.jp/
8317S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008318F: arch/h8300/
8319F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008320F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008321
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008323M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008325F: Documentation/filesystems/udf.txt
8326F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008327
Alan Coxcc2020e2008-05-19 14:21:51 +01008328UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008329M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008331F: Documentation/filesystems/ufs.txt
8332F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008333
David Herrmann0a09d3a2012-06-10 15:16:28 +02008334UHID USERSPACE HID IO DRIVER:
8335M: David Herrmann <dh.herrmann@googlemail.com>
8336L: linux-input@vger.kernel.org
8337S: Maintained
8338F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008339F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008340
David Vrabel18332a82008-09-17 16:34:44 +01008341ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008342L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008343S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008344F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008345F: include/linux/uwb.h
8346F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008347
GuanXuetaob31d8272011-01-16 00:35:49 +08008348UNICORE32 ARCHITECTURE:
8349M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8350W: http://mprc.pku.edu.cn/~guanxuetao/linux
8351S: Maintained
8352T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8353F: arch/unicore32/
8354
Tony Finchd8379ab2009-11-27 15:50:30 +00008355UNIFDEF
8356M: Tony Finch <dot@dotat.at>
8357W: http://dotat.at/prog/unifdef
8358S: Maintained
8359F: scripts/unifdef.c
8360
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008362M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363W: http://www.kernel.dk
8364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008365F: Documentation/cdrom/
8366F: drivers/cdrom/cdrom.c
8367F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008368F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308370UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8371M: Vinayak Holikatti <vinholikatti@gmail.com>
8372M: Santosh Y <santoshsy@gmail.com>
8373L: linux-scsi@vger.kernel.org
8374S: Supported
8375F: Documentation/scsi/ufs.txt
8376F: drivers/scsi/ufs/
8377
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008378UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008379M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008380W: http://www.linux-mtd.infradead.org/
8381L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008382T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008383S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008384F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008385F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008386F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008387
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008388UNSORTED BLOCK IMAGES (UBI) Fastmap
8389M: Richard Weinberger <richard@nod.at>
8390L: linux-mtd@lists.infradead.org
8391S: Maintained
8392F: drivers/mtd/ubi/fastmap.c
8393
Linus Torvalds1da177e2005-04-16 15:20:36 -07008394USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008395M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008396L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008398F: Documentation/usb/acm.txt
8399F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008401USB AR5523 WIRELESS DRIVER
8402M: Pontus Fuchs <pontus.fuchs@gmail.com>
8403L: linux-wireless@vger.kernel.org
8404S: Maintained
8405F: drivers/net/wireless/ath/ar5523/
8406
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008407USB ATTACHED SCSI
8408M: Matthew Wilcox <willy@linux.intel.com>
8409M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008410M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008411L: linux-usb@vger.kernel.org
8412L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008413S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008414F: drivers/usb/storage/uas.c
8415
Linus Torvalds1da177e2005-04-16 15:20:36 -07008416USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008417M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008418L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008420F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008421F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008423USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008424M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008425L: linux-usb@vger.kernel.org
8426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008427F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008428
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008429USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008430M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008431L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008432W: http://www.linux-usb.org/usbnet
8433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008434F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008435
Alan Coxcc2020e2008-05-19 14:21:51 +01008436USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008437M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008438L: rio500-users@lists.sourceforge.net
8439W: http://rio500.sourceforge.net
8440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008441F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008442
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008444M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008445L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008447F: Documentation/usb/ehci.txt
8448F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449
David Brownell69ae9e32006-11-14 02:03:31 -08008450USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008451M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008452L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008453W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008454T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008456F: drivers/usb/gadget/
8457F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008458
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008459USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008460M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008461L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008462T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008464F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008465F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466
matt mooney857aab32011-06-17 15:50:46 -07008467USB/IP DRIVERS
8468M: Matt Mooney <mfm@muteddisk.com>
8469L: linux-usb@vger.kernel.org
8470S: Maintained
8471F: drivers/staging/usbip/
8472
Olav Kongas959eea22005-11-03 17:38:14 +02008473USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008474M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008475L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008477F: drivers/usb/host/isp116x*
8478F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008479
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008481M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008482L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008484F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485
8486USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008487M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008488L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008489L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490S: Maintained
8491W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008492F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008493
Clemens Ladischaf399172011-01-10 16:32:54 +01008494USB MIDI DRIVER
8495M: Clemens Ladisch <clemens@ladisch.de>
8496L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8497T: git git://git.alsa-project.org/alsa-kernel.git
8498S: Maintained
8499F: sound/usb/midi.*
8500
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008502M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008503L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008505F: Documentation/usb/ohci.txt
8506F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507
Matthias Urlichsba460e42005-07-14 00:33:47 -07008508USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008509M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008510L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008512F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008513
Linus Torvalds1da177e2005-04-16 15:20:36 -07008514USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008515M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008516L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008517L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008518T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519W: http://pegasus2.sourceforge.net/
8520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008521F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008522
Felipe Balbid3ad5582012-05-21 16:24:49 +03008523USB PHY LAYER
8524M: Felipe Balbi <balbi@ti.com>
8525L: linux-usb@vger.kernel.org
8526T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8527S: Maintained
8528F: drivers/usb/phy/
8529F: drivers/usb/otg/
8530
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008531USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008532M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008533L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008534S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008535F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008536
8537USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008538M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008539L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008540L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008541T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542W: http://pegasus2.sourceforge.net/
8543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008544F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545
Alan Cox4e688522008-04-30 00:52:11 -07008546USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008547M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008548L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008550F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008551
8552USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008553M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008554L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008555S: Maintained
8556W: http://geocities.com/i0xox0i
8557W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008558F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008559
Linus Torvalds1da177e2005-04-16 15:20:36 -07008560USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008561M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008564F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565
8566USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008567M: Peter Berger <pberger@brimson.com>
8568M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008569L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008571F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008572
8573USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008574M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008575L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008577F: Documentation/usb/usb-serial.txt
8578F: drivers/usb/serial/generic.c
8579F: drivers/usb/serial/usb-serial.c
8580F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008581
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008583M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008584L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008586F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587
8588USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008589M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008590L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008592F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593
8594USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008595M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008596L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597W: http://www.connecttech.com
8598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008599F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008601USB SMSC75XX ETHERNET DRIVER
8602M: Steve Glendinning <steve.glendinning@shawell.net>
8603L: netdev@vger.kernel.org
8604S: Maintained
8605F: drivers/net/usb/smsc75xx.*
8606
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008607USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008608M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008609L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008611F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008612
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008613USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008614M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008615L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008616L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008617T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618W: http://www.linux-projects.org
8619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008620F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008621F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622
8623USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008624M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008625L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008627T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008629F: Documentation/usb/
8630F: drivers/net/usb/
8631F: drivers/usb/
8632F: include/linux/usb.h
8633F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008634
8635USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008636M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008637L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008639F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008640
David Brownell69ae9e32006-11-14 02:03:31 -08008641USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008642M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008643L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008644W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008646F: drivers/net/usb/usbnet.c
8647F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008649USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008650M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008651L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008652L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008653T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008654W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008655S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008656F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008657F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008658
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008659USB VISION DRIVER
8660M: Hans Verkuil <hverkuil@xs4all.nl>
8661L: linux-media@vger.kernel.org
8662T: git git://linuxtv.org/media_tree.git
8663W: http://linuxtv.org
8664S: Odd Fixes
8665F: drivers/media/usb/usbvision/
8666
Laurent Pinchart8282da42012-10-04 02:32:42 +02008667USB WEBCAM GADGET
8668M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8669L: linux-usb@vger.kernel.org
8670S: Maintained
8671F: drivers/usb/gadget/*uvc*.c
8672F: drivers/usb/gadget/webcam.c
8673
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008674USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008675M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008676L: linux-wireless@vger.kernel.org
8677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008678F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008679
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008680USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008681M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008682L: linux-usb@vger.kernel.org
8683S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008684F: drivers/usb/host/xhci*
8685F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008686
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008688L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008690S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008691F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008692
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008693USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008694M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008695L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008696L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008697T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008698W: http://royale.zerezo.com/zr364xx/
8699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008700F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008701F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008702
Randy Dunlape7839f22008-10-12 16:11:45 -07008703USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008704M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008705M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706L: user-mode-linux-devel@lists.sourceforge.net
8707L: user-mode-linux-user@lists.sourceforge.net
8708W: http://user-mode-linux.sourceforge.net
8709S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008710F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008711F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008712F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008713F: fs/hostfs/
8714F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008715
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008716USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008717M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008718M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008720F: Documentation/DocBook/uio-howto.tmpl
8721F: drivers/uio/
8722F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008723
Karel Zak256cccb2012-06-01 10:13:09 +02008724UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008725M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008726L: util-linux@vger.kernel.org
8727W: http://en.wikipedia.org/wiki/Util-linux
8728T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008729S: Maintained
8730
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008731UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008732M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008733L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008734W: http://dev.gentoo.org/~spock/projects/uvesafb/
8735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008736F: Documentation/fb/uvesafb.txt
8737F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008738
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008739VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008740M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008742F: Documentation/filesystems/vfat.txt
8743F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008744
Alex Williamsoncba33452012-07-31 08:16:22 -06008745VFIO DRIVER
8746M: Alex Williamson <alex.williamson@redhat.com>
8747L: kvm@vger.kernel.org
8748S: Maintained
8749F: Documentation/vfio.txt
8750F: drivers/vfio/
8751F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008752F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008753
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008754VIDEOBUF2 FRAMEWORK
8755M: Pawel Osciak <pawel@osciak.com>
8756M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008757M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008758L: linux-media@vger.kernel.org
8759S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008760F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008761F: include/media/videobuf2-*
8762
Amit Shah9a824462010-03-23 18:23:09 +05308763VIRTIO CONSOLE DRIVER
8764M: Amit Shah <amit.shah@redhat.com>
8765L: virtualization@lists.linux-foundation.org
8766S: Maintained
8767F: drivers/char/virtio_console.c
8768F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008769F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308770
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308771VIRTIO CORE, NET AND BLOCK DRIVERS
8772M: Rusty Russell <rusty@rustcorp.com.au>
8773M: "Michael S. Tsirkin" <mst@redhat.com>
8774L: virtualization@lists.linux-foundation.org
8775S: Maintained
8776F: drivers/virtio/
8777F: drivers/net/virtio_net.c
8778F: drivers/block/virtio_blk.c
8779F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308780F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308781
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008782VIRTIO HOST (VHOST)
8783M: "Michael S. Tsirkin" <mst@redhat.com>
8784L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008785L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008786L: netdev@vger.kernel.org
8787S: Maintained
8788F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008789F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008790
Linus Torvalds1da177e2005-04-16 15:20:36 -07008791VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008792M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008793S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008794F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008795
Harald Weltef0bf7f62009-06-17 20:22:39 +02008796VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008797M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008798M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008799S: Maintained
8800F: drivers/mmc/host/via-sdmmc.c
8801
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008802VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008803M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008804L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008805S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008806F: include/linux/via-core.h
8807F: include/linux/via-gpio.h
8808F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008809F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008810
Francois Romieu01f20732007-01-26 00:57:17 -08008811VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008812M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008813L: netdev@vger.kernel.org
8814S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008815F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008816
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008817VIVI VIRTUAL VIDEO DRIVER
8818M: Hans Verkuil <hverkuil@xs4all.nl>
8819L: linux-media@vger.kernel.org
8820T: git git://linuxtv.org/media_tree.git
8821W: http://linuxtv.org
8822S: Maintained
8823F: drivers/media/platform/vivi*
8824
Patrick McHardybe7f8272007-10-23 20:26:36 -07008825VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008826M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008827L: netdev@vger.kernel.org
8828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008829F: drivers/net/macvlan.c
8830F: include/linux/if_*vlan.h
8831F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008832
Florian Fainelli55e331c2009-06-16 15:33:53 -07008833VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008834M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008835L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008836S: Maintained
8837F: drivers/vlynq/vlynq.c
8838F: include/linux/vlynq.h
8839
Martyn Welch390beae2012-05-03 17:52:36 +01008840VME SUBSYSTEM
8841M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008842M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008843M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8844L: devel@driverdev.osuosl.org
8845S: Maintained
8846T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8847F: Documentation/vme_api.txt
8848F: drivers/staging/vme/
8849F: drivers/vme/
8850F: include/linux/vme*
8851
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008852VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008853M: Shreyas Bhatewara <sbhatewara@vmware.com>
8854M: "VMware, Inc." <pv-drivers@vmware.com>
8855L: netdev@vger.kernel.org
8856S: Maintained
8857F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008858
Alok Kataria851b1642009-10-13 14:51:05 -07008859VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008860M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008861M: VMware PV-Drivers <pv-drivers@vmware.com>
8862L: linux-scsi@vger.kernel.org
8863S: Maintained
8864F: drivers/scsi/vmw_pvscsi.c
8865F: drivers/scsi/vmw_pvscsi.h
8866
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008867VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08008868M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008869M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008870W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008871W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008872T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008874F: drivers/regulator/
8875F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008876
Juerg Haefligerab413192006-09-24 20:54:04 +02008877VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008878M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008879L: lm-sensors@lm-sensors.org
8880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008881F: Documentation/hwmon/vt1211
8882F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008883
Roger Lucas1de9e372005-11-26 20:20:05 +01008884VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008885M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008886L: lm-sensors@lm-sensors.org
8887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008888F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008889
Tony Olech88095e72011-05-14 16:48:13 -04008890VUB300 USB to SDIO/SD/MMC bridge chip
8891M: Tony Olech <tony.olech@elandigitalsystems.com>
8892L: linux-mmc@vger.kernel.org
8893L: linux-usb@vger.kernel.org
8894S: Supported
8895F: drivers/mmc/host/vub300.c
8896
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008898M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008900F: Documentation/w1/
8901F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008902
Charles Spirakis13927072006-07-05 18:05:15 +02008903W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008904M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008905L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008907F: Documentation/hwmon/w83791d
8908F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008909
Rudolf Marek61db0112006-12-12 18:18:30 +01008910W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008911M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008912L: lm-sensors@lm-sensors.org
8913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008914F: Documentation/hwmon/w83793
8915F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008916
Jean Delvaree3760b42010-10-28 20:31:49 +02008917W83795 HARDWARE MONITORING DRIVER
8918M: Jean Delvare <khali@linux-fr.org>
8919L: lm-sensors@lm-sensors.org
8920S: Maintained
8921F: drivers/hwmon/w83795.c
8922
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008924M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008926F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008927
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008928WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008929M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008930L: linux-watchdog@vger.kernel.org
8931W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008932T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008934F: Documentation/watchdog/
8935F: drivers/watchdog/
8936F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008937F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008938
Linus Torvalds1da177e2005-04-16 15:20:36 -07008939WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008940M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008941L: linux-scsi@vger.kernel.org
8942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008943F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008944
David Herrmannb22e00f2011-09-06 13:50:40 +02008945WIIMOTE HID DRIVER
8946M: David Herrmann <dh.herrmann@googlemail.com>
8947L: linux-input@vger.kernel.org
8948S: Maintained
8949F: drivers/hid/hid-wiimote*
8950
David Härdemane258b802009-09-21 17:04:53 -07008951WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008952M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008953S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008954F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008955
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008956WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008957M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008958M: linux-wimax@intel.com
8959L: wimax@linuxwimax.org
8960S: Supported
8961W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008962F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008963F: include/linux/wimax/debug.h
8964F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008965F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008966F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008967
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008968WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008969M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008971F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008972
Linus Torvalds1da177e2005-04-16 15:20:36 -07008973WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008974M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008975L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008976W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008978F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008979
Mark Brownfebf1df2008-04-02 00:51:09 -04008980WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008981M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8982M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008983L: linux-input@vger.kernel.org
8984T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8985W: http://opensource.wolfsonmicro.com/node/7
8986S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008987F: drivers/input/touchscreen/*wm97*
8988F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008989
Mark Brown055bcbc2010-08-13 14:18:12 +01008990WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008991M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008992L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008993T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008994T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008995W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008996S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008997F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008998F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008999F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009000F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01009001F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01009002F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009003F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05009004F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09009005F: drivers/input/misc/wm831x-on.c
9006F: drivers/input/touchscreen/wm831x-ts.c
9007F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009008F: drivers/mfd/arizona*
9009F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01009010F: drivers/power/wm83*.c
9011F: drivers/rtc/rtc-wm83*.c
9012F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01009013F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01009014F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01009015F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01009016F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01009017F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08009018F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09009019F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01009020F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01009021F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01009022F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01009023
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009024WORKQUEUE
9025M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009026T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9027S: Maintained
9028F: include/linux/workqueue.h
9029F: kernel/workqueue.c
9030F: Documentation/workqueue.txt
9031
Linus Torvalds1da177e2005-04-16 15:20:36 -07009032X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009033M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009034L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009035S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009036F: Documentation/networking/x25*
9037F: include/net/x25*
9038F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009039
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009040X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009041M: Thomas Gleixner <tglx@linutronix.de>
9042M: Ingo Molnar <mingo@redhat.com>
9043M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009044M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009045T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009047F: Documentation/x86/
9048F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009049
Matthew Garrettd09448532010-02-11 10:40:13 -05009050X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009051M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05009052L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009053T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05009054S: Maintained
9055F: drivers/platform/x86
9056
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009057X86 MCE INFRASTRUCTURE
9058M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009059M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009060L: linux-edac@vger.kernel.org
9061S: Maintained
9062F: arch/x86/kernel/cpu/mcheck/*
9063
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009064XC2028/3028 TUNER DRIVER
9065M: Mauro Carvalho Chehab <mchehab@redhat.com>
9066L: linux-media@vger.kernel.org
9067W: http://linuxtv.org
9068T: git git://linuxtv.org/media_tree.git
9069S: Maintained
9070F: drivers/media/tuners/tuner-xc2028.*
9071
Ian Campbellc4468082011-04-27 15:26:46 -07009072XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009073M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009074M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009075L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9076L: virtualization@lists.linux-foundation.org
9077S: Supported
9078F: arch/x86/xen/
9079F: drivers/*/xen-*front.c
9080F: drivers/xen/
9081F: arch/x86/include/asm/xen/
9082F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009083F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009084
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009085XEN HYPERVISOR ARM
9086M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9087L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9088S: Supported
9089F: arch/arm/xen/
9090F: arch/arm/include/asm/xen/
9091
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009092XEN NETWORK BACKEND DRIVER
9093M: Ian Campbell <ian.campbell@citrix.com>
9094L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9095L: netdev@vger.kernel.org
9096S: Supported
9097F: drivers/net/xen-netback/*
9098
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009099XEN PCI SUBSYSTEM
9100M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009101L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009102S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009103F: arch/x86/pci/*xen*
9104F: drivers/pci/*xen*
9105
9106XEN SWIOTLB SUBSYSTEM
9107M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009108L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009109S: Supported
9110F: arch/x86/xen/*swiotlb*
9111F: drivers/xen/*swiotlb*
9112
Linus Torvalds1da177e2005-04-16 15:20:36 -07009113XFS FILESYSTEM
9114P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009115M: Ben Myers <bpm@sgi.com>
9116M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009117M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009118L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009119W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009120T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009122F: Documentation/filesystems/xfs.txt
9123F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009124
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009125XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009126M: Anirudha Sarangi <anirudh@xilinx.com>
9127M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009128S: Maintained
9129F: drivers/net/ethernet/xilinx/xilinx_axienet*
9130
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009131XILINX SYSTEMACE DRIVER
Grant Likely19624232013-04-08 11:51:42 +01009132S: Unmaintained
Joe Perches679655d2009-04-07 20:44:32 -07009133F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009134
Peter Korsgaard238b8722006-12-06 20:35:17 -08009135XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009136M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009137L: linux-serial@vger.kernel.org
9138S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009139F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009140
Linus Torvalds1da177e2005-04-16 15:20:36 -07009141YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009142M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143L: linux-hams@vger.kernel.org
9144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009145F: drivers/net/hamradio/yam*
9146F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009147
Henkaf64a5e2005-10-12 15:02:56 +02009148YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009149M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009150L: usbb2k-api-dev@nongnu.org
9151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009152F: Documentation/input/yealink.txt
9153F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009154
Linus Torvalds1da177e2005-04-16 15:20:36 -07009155Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009156M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009157W: http://yaina.de/jreuter/
9158W: http://www.qsl.net/dl1bke/
9159L: linux-hams@vger.kernel.org
9160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009161F: Documentation/networking/z8530drv.txt
9162F: drivers/net/hamradio/*scc.c
9163F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009164
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009165ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009166M: Daniel Drake <dsd@gentoo.org>
9167M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009168W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009169L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009170L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009172F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009173
Linus Torvalds1da177e2005-04-16 15:20:36 -07009174ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009176L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009177W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009178T: Mercurial http://linuxtv.org/hg/v4l-dvb
9179S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009180F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009181
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009182ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009183M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009184S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009185F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009186
Linus Torvalds1da177e2005-04-16 15:20:36 -07009187THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009188M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009189L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009190Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009191T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009192S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009193F: *
9194F: */