blob: fb036a062a5d3e3c7eefae83f3cb87d718483fcf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700187AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700188M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700189L: linux-scsi@vger.kernel.org
190W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700192F: Documentation/scsi/aacraid.txt
193F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700195ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100196M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200197L: lm-sensors@lm-sensors.org
198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700199F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200200
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700201ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700202M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700203L: lm-sensors@lm-sensors.org
204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700205F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700208M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209L: linux-acenic@sunsite.dk
210S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700211F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Peter Feuerere86435e2009-06-21 18:53:03 +0200213ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700214M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500215L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700216W: http://piie.net/?section=acerhdf
217S: Maintained
218F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200219
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000220ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100221M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500222L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700224F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700227M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500228L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400229W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800230Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400231T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700233F: drivers/acpi/
234F: drivers/pnp/pnpacpi/
235F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700236F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500237
Len Brown8b59a452007-01-08 19:03:28 -0500238ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700239M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500240L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300241W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700243F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Len Brown8b59a452007-01-08 19:03:28 -0500245ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700246M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500247L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300248W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700250F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700251
Len Brown359acec2007-02-10 01:59:24 -0500252ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700253M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500254L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300255W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700257F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500258
Carlos Corbachobff431e2008-02-05 02:17:04 +0000259ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500260L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100261S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700262F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000263
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100264AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700265M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200266W: http://wiki.parisc-linux.org/AD1889
267L: linux-parisc@vger.kernel.org
268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700269F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100270
Michael Hennerich527a1a82010-10-28 11:31:28 +0000271AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
272M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100273L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700274W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000275S: Supported
276F: drivers/misc/ad525x_dpot.c
277
278AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
279M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100280L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700281W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282S: Supported
283F: drivers/regulator/ad5398.c
284
285AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
286M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100287L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700288W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000289S: Supported
290F: drivers/input/misc/ad714x.c
291
292AD7877 TOUCHSCREEN DRIVER
293M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100294L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700295W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000296S: Supported
297F: drivers/input/touchscreen/ad7877.c
298
299AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
300M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100301L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700302W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000303S: Supported
304F: drivers/input/touchscreen/ad7879.c
305
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700306ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
307M: Jiri Kosina <jkosina@suse.cz>
308S: Maintained
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700311M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200312L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700314F: Documentation/hwmon/adm1025
315F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Corentin Labbecae2caa2007-02-14 21:15:04 +0100317ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700318M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100319L: lm-sensors@lm-sensors.org
320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700321F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100322
Michael Wucc0b88c2007-08-31 01:15:25 -0400323ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400324L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200325W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400326S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700327F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400328
Michael Hennerich527a1a82010-10-28 11:31:28 +0000329ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
330M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100331L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700332W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000333S: Supported
334F: drivers/mfd/adp5520.c
335F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700336F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800337F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000338F: drivers/input/keyboard/adp5520-keys.c
339
340ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
341M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100342L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800346F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347
348ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
349M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100350L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700351W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000352S: Supported
353F: drivers/video/backlight/adp8860_bl.c
354
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100355ADS1015 HARDWARE MONITOR DRIVER
356M: Dirk Eibach <eibach@gdsys.de>
357L: lm-sensors@lm-sensors.org
358S: Maintained
359F: Documentation/hwmon/ads1015
360F: drivers/hwmon/ads1015.c
361F: include/linux/i2c/ads1015.h
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700364M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700366F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Jean Delvareb058b852009-12-09 20:36:08 +0100368ADT7475 HARDWARE MONITOR DRIVER
369M: Jean Delvare <khali@linux-fr.org>
370L: lm-sensors@lm-sensors.org
371S: Maintained
372F: Documentation/hwmon/adt7475
373F: drivers/hwmon/adt7475.c
374
Michael Hennerich527a1a82010-10-28 11:31:28 +0000375ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
376M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100377L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700378W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000379S: Supported
380F: drivers/input/misc/adxl34x.c
381
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400382ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700383M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400384L: linux-scsi@vger.kernel.org
385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700386F: Documentation/scsi/advansys.txt
387F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700390M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700392F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200395L: linux-fsdevel@vger.kernel.org
396S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/filesystems/affs.txt
398F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700400AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700402L: linux-afs@lists.infradead.org
403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700404F: fs/afs/
405F: include/net/af_rxrpc.h
406F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700409M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700410T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700412F: drivers/char/agp/
413F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700416M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417L: linux-scsi@vger.kernel.org
418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700419F: drivers/scsi/aha152x*
420F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Hannes Reinecke64624d42007-10-19 10:32:29 +0200422AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700423M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200424L: linux-scsi@vger.kernel.org
425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700426F: drivers/scsi/aic7xxx/
427F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200428
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700429AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700430M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700431L: linux-aio@kvack.org
432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700433F: fs/aio.c
434F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700437M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700438L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439W: http://www.linux-usb.org/SpeedTouch/
440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700441F: drivers/usb/atm/speedtch.c
442F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Pierre Ossman272f1332007-05-14 21:25:26 +0200444ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700445M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700447F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200448
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000449ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700450M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100451L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700453F: Documentation/i2c/busses/i2c-ali1563
454F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700457M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700458M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500459M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700460S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700461L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700462F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Tobias Klauseradf92512011-02-09 10:58:29 +0100464ALTERA UART/JTAG UART SERIAL DRIVERS
465M: Tobias Klauser <tklauser@distanz.ch>
466L: linux-serial@vger.kernel.org
467L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
468S: Maintained
469F: drivers/tty/serial/altera_uart.c
470F: drivers/tty/serial/altera_jtaguart.c
471F: include/linux/altera_uart.h
472F: include/linux/altera_jtaguart.h
473
Andreas Herrmann512d1022011-05-25 20:43:31 +0200474AMD FAM15H PROCESSOR POWER MONITORING DRIVER
475M: Andreas Herrmann <andreas.herrmann3@amd.com>
476L: lm-sensors@lm-sensors.org
477S: Maintained
478F: Documentation/hwmon/fam15h_power
479F: drivers/hwmon/fam15h_power.c
480
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700481AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700482M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700483L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700486
Jordan Crousef90b8112006-01-06 00:12:14 -0800487AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800488P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700489L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800490W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700492F: drivers/char/hw_random/geode-rng.c
493F: drivers/crypto/geode*
494F: drivers/video/geode/
495F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800496
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200497AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700498M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200499L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100500T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200501S: Supported
Joe Perchesb2c16392011-12-08 20:21:40 -0800502F: drivers/iommu/amd_iommu*.[ch]
503F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200504
Peter Orubae7f5b302008-07-28 18:44:11 +0200505AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700506M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700507L: amd64-microcode@amd64.org
508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700509F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200510
Stelian Pop284f42b2006-12-12 18:18:31 +0100511AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100513S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200514F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100515
Tom Tuckerf94b5332006-09-22 15:22:48 -0700516AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700517M: Tom Tucker <tom@opengridcomputing.com>
518M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700519L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700521F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700522
Michael Hennerich527a1a82010-10-28 11:31:28 +0000523ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200524M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100525L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000526L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700527W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000528S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100529F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200530F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000531F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000532F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100533F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000534
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400535ANALOG DEVICES INC ASOC DRIVERS
536L: uclinux-dist-devel@blackfin.uclinux.org
537L: alsa-devel@alsa-project.org (moderated for non-subscribers)
538W: http://blackfin.uclinux.org/
539S: Supported
540F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400541
Johannes Berg42269062006-07-25 16:15:50 +0200542AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000544L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700545L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700547F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200550M: Jiri Kosina <jkosina@suse.cz>
551S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700552F: arch/x86/kernel/apm_32.c
553F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200554F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700556APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700557M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700558L: linux-input@vger.kernel.org
559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700560F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700561
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700562APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200563M: Henrik Rydberg <rydberg@euromail.se>
564L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700566F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700569M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700571F: drivers/net/appletalk/
572F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Viresh Kumara4801672011-02-22 15:46:07 +0530574ARASAN COMPACT FLASH PATA CONTROLLER
Viresh Kumar10d89352012-06-20 12:53:02 -0700575M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530576L: linux-ide@vger.kernel.org
577S: Maintained
578F: include/linux/pata_arasan_cf_data.h
579F: drivers/ata/pata_arasan_cf.c
580
Jaya Kumar1154ea72005-06-21 17:17:04 -0700581ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700582M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700584F: drivers/video/arcfb.c
585F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700590F: arch/arm/lib/floppydma.S
591F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Will Deacon6f965212011-07-01 14:38:53 +0100593ARM PMU PROFILING AND DEBUGGING
594M: Will Deacon <will.deacon@arm.com>
595S: Maintained
596F: arch/arm/kernel/perf_event*
597F: arch/arm/oprofile/common.c
598F: arch/arm/kernel/pmu.c
599F: arch/arm/include/asm/pmu.h
600F: arch/arm/kernel/hw_breakpoint.c
601F: arch/arm/include/asm/hw_breakpoint.h
602
Russell Kingd4275352009-04-16 14:05:27 +0100603ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700604M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700605L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100606W: http://www.arm.linux.org.uk/
607S: Maintained
608F: arch/arm/
609
Russell Kingcefbf4e2009-11-22 17:40:28 +0000610ARM PRIMECELL AACI PL041 DRIVER
611M: Russell King <linux@arm.linux.org.uk>
612S: Maintained
613F: sound/arm/aaci.*
614
615ARM PRIMECELL CLCD PL110 DRIVER
616M: Russell King <linux@arm.linux.org.uk>
617S: Maintained
618F: drivers/video/amba-clcd.*
619
620ARM PRIMECELL KMI PL050 DRIVER
621M: Russell King <linux@arm.linux.org.uk>
622S: Maintained
623F: drivers/input/serio/ambakmi.*
624F: include/linux/amba/kmi.h
625
Russell King2761f5c2007-05-24 06:56:08 +0200626ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200627S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700628F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200629
Russell Kingcefbf4e2009-11-22 17:40:28 +0000630ARM PRIMECELL BUS SUPPORT
631M: Russell King <linux@arm.linux.org.uk>
632S: Maintained
633F: drivers/amba/
634F: include/linux/amba/bus.h
635
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800636ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700637M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700638L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800639S: Maintained
640
Sergey Lapin9c784f92008-08-03 02:29:48 +0100641ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700642M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700643L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100644S: Maintained
645
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800646ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700647M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700648L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800649S: Maintained
650
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800651ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700652M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800653M: Nicolas Ferre <nicolas.ferre@atmel.com>
654M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700655L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200656W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800657W: http://www.linux4sam.org
658S: Supported
659F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100660
Leo Chen57a473f2009-08-12 22:08:48 +0100661ARM/BCMRING ARM ARCHITECTURE
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000662M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100663M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700664L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800665S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100666F: arch/arm/mach-bcmring
667
668ARM/BCMRING MTD NAND DRIVER
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000669M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100670M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100671L: linux-mtd@lists.infradead.org
672S: Maintained
673F: drivers/mtd/nand/bcm_umi_nand.c
674F: drivers/mtd/nand/bcm_umi_bch.c
Leo Chen57a473f2009-08-12 22:08:48 +0100675F: drivers/mtd/nand/nand_bcm_umi.h
676
Rob Herring986cf2e2011-06-22 11:28:53 -0500677ARM/CALXEDA HIGHBANK ARCHITECTURE
678M: Rob Herring <rob.herring@calxeda.com>
679L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
680S: Maintained
681F: arch/arm/mach-highbank/
682
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300683ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
684M: Anton Vorontsov <avorontsov@mvista.com>
685S: Maintained
686F: arch/arm/mach-cns3xxx/
687T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
688
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800689ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100690M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000691M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800693S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100694F: arch/arm/mach-ep93xx/
695F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800696
697ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700698M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700S: Maintained
701
Russell Kingd4275352009-04-16 14:05:27 +0100702ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700703M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700704L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700705S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100706F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700707F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100708
Mike Rapoportd48134e2008-08-20 09:03:26 +0100709ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700710M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700711L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100712S: Maintained
713
Hubert Feurstein94150092009-10-07 08:36:07 +0100714ARM/CONTEC MICRO9 MACHINE SUPPORT
715M: Hubert Feurstein <hubert.feurstein@contec.at>
716S: Maintained
717F: arch/arm/mach-ep93xx/micro9.c
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700720M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721S: Maintained
722
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200723ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100724M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100726T: git git://git.berlios.de/gemini-board
727S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300728F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200729
Barry Songa990cbd2011-07-12 21:44:10 +0800730ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
731M: Barry Song <baohua.song@csr.com>
732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
733S: Maintained
734F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800735F: drivers/dma/sirf-dma.c
736F: drivers/i2c/busses/i2c-sirf.c
737F: drivers/pinctrl/pinctrl-sirf.c
738F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800739
Russell Kingd4275352009-04-16 14:05:27 +0100740ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700741M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100743W: http://www.arm.linux.org.uk/
744S: Maintained
745F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700746F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100747
Russell Kinga9da4f72008-07-12 21:42:04 +0100748ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700749M: Daniel Ribeiro <drwyrm@gmail.com>
750M: Stefan Schmidt <stefan@openezx.org>
751M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200752L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100753W: http://www.openezx.org/
754S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200755T: topgit git://git.openezx.org/openezx.git
756F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100757
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200758ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100759M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700760L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100761S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700762T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300763F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200764
Russell Kingd4275352009-04-16 14:05:27 +0100765ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700766M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700767L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100768W: http://www.arm.linux.org.uk/
769S: Maintained
770F: arch/arm/include/asm/hardware/dec21285.h
771F: arch/arm/mach-footbridge/
772
Sascha Hauer86183a52008-07-24 23:50:35 +0200773ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700774M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200776S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700777T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100778F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100779F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200780
Shawn Guo8bcb9762011-10-07 22:24:18 +0800781ARM/FREESCALE IMX6
782M: Shawn Guo <shawn.guo@linaro.org>
783L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
784S: Maintained
785T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
786F: arch/arm/mach-imx/*imx6*
787
Shawn Guoa9866a092011-10-21 11:53:34 +0800788ARM/FREESCALE MXS ARM ARCHITECTURE
789M: Shawn Guo <shawn.guo@linaro.org>
790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
791S: Maintained
792T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
793F: arch/arm/mach-mxs/
794
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800795ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700796M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800798S: Maintained
799
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100800ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700801M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100803S: Maintained
804
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200805ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100807M: Paul Parsons <lost.distance@yahoo.com>
808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200809S: Maintained
810F: arch/arm/mach-pxa/hx4700.c
811F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100812F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200813
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100814ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700815M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200816W: www.jlime.com
817S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700818T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
819F: arch/arm/mach-sa1100/jornada720.c
820F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100821
Marek Vasut403d2972010-05-22 00:29:39 +0200822ARM/INCOME PXA270 SUPPORT
823M: Marek Vasut <marek.vasut@gmail.com>
824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
825S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700826F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200827
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800828ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700829M: Lennert Buytenhek <kernel@wantstofly.org>
830M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700831L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700832S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100833
834ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700835M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700836L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700837S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800838
839ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700840M: Lennert Buytenhek <kernel@wantstofly.org>
841M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700843S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800844
845ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Lennert Buytenhek <kernel@wantstofly.org>
847M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700849S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800850
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800851ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700852M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700853L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800854S: Maintained
855
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200856ARM/INTEL IXP4XX ARM ARCHITECTURE
857M: Imre Kaloz <kaloz@openwrt.org>
858M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200860S: Maintained
861F: arch/arm/mach-ixp4xx/
862
Joe Perches838553c2010-10-26 14:22:59 -0700863ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100864M: Jonathan Cameron <jic23@cam.ac.uk>
865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
866S: Maintained
867F: arch/arm/mach-pxa/stargate2.c
868F: drivers/pcmcia/pxa2xx_stargate2.c
869
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800870ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Lennert Buytenhek <kernel@wantstofly.org>
872M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700874S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800875
876ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700877M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800879S: Maintained
880
881ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700882M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884S: Maintained
885
Philipp Zabel3b8861712008-07-09 21:27:15 +0100886ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700887M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100888S: Maintained
889
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200890ARM/Marvell Armada 370 and Armada XP SOC support
891M: Jason Cooper <jason@lakedaemon.net>
892M: Andrew Lunn <andrew@lunn.ch>
893M: Gregory Clement <gregory.clement@free-electrons.com>
894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
895S: Maintained
896F: arch/arm/mach-mvebu/
897
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400898ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
899M: Jason Cooper <jason@lakedaemon.net>
900M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700901L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400902S: Maintained
903F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400904F: arch/arm/mach-kirkwood/
905F: arch/arm/mach-mv78xx0/
906F: arch/arm/mach-orion5x/
907F: arch/arm/plat-orion/
908
Alexander Clouterd69ac132011-04-14 15:22:02 -0700909ARM/Orion SoC/Technologic Systems TS-78xx platform support
910M: Alexander Clouter <alex@digriz.org.uk>
911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912W: http://www.digriz.org.uk/ts78xx/kernel
913S: Maintained
914F: arch/arm/mach-orion5x/ts78xx-*
915
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200916ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700917M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200919F: arch/arm/mach-pxa/mioa701.c
920S: Maintained
921
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100922ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700923M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100924S: Maintained
925
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100926ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700927M: Alessandro Rubini <rubini@unipv.it>
Linus Walleij87572882010-12-22 09:18:29 +0100928M: Linus Walleij <linus.walleij@stericsson.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700929M: STEricsson <STEricsson_nomadik_linux@list.st.com>
930L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
931S: Maintained
932F: arch/arm/mach-nomadik/
933F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100934F: drivers/i2c/busses/i2c-nomadik.c
935T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100936
Andy Green9d762952009-05-19 06:41:42 -0300937ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700938M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300939L: openmoko-kernel@lists.openmoko.org (subscribers-only)
940W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
941S: Supported
942
Daniel Walker0c19d212009-12-07 16:53:51 -0800943ARM/QUALCOMM MSM MACHINE SUPPORT
944M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800945M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800946M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800947L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800948F: arch/arm/mach-msm/
949F: drivers/video/msm/
950F: drivers/mmc/host/msm_sdcc.c
951F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800952F: drivers/tty/serial/msm_serial.h
953F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700954F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700955F: drivers/*/pm8???-*
956F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800957T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800958S: Maintained
959
Dirk Opfer8459c152005-11-06 14:27:52 +0000960ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700961M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
962M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000963S: Maintained
964
Marek Vasut5d783a22009-07-16 13:26:48 +0200965ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700966M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200967L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100968W: http://hackndev.com
969S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700970F: arch/arm/mach-pxa/include/mach/palmtx.h
971F: arch/arm/mach-pxa/palmtx.c
972F: arch/arm/mach-pxa/include/mach/palmt5.h
973F: arch/arm/mach-pxa/palmt5.c
974F: arch/arm/mach-pxa/include/mach/palmld.h
975F: arch/arm/mach-pxa/palmld.c
976F: arch/arm/mach-pxa/include/mach/palmte2.h
977F: arch/arm/mach-pxa/palmte2.c
978F: arch/arm/mach-pxa/include/mach/palmtc.h
979F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100980
Joe Perchesb57fe922009-12-14 18:00:52 -0800981ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700982M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200983L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200984W: http://hackndev.com
985S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800986F: arch/arm/mach-pxa/include/mach/palmtreo.h
987F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200988
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100989ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700990M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200991L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700992W: http://hackndev.com
993S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700994F: arch/arm/mach-pxa/include/mach/palmz72.h
995F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700998M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1000S: Maintained
1001
1002ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001003M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001004L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005W: http://www.arm.linux.org.uk/
1006S: Maintained
1007
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001008ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001009M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001010L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001011S: Maintained
1012
Russell Kingd4275352009-04-16 14:05:27 +01001013ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001014M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001016W: http://www.arm.linux.org.uk/
1017S: Maintained
1018F: arch/arm/common/time-acorn.c
1019F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1020F: arch/arm/include/asm/hardware/ioc.h
1021F: arch/arm/include/asm/hardware/iomd.h
1022F: arch/arm/include/asm/hardware/memc.h
1023F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001024F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001025F: drivers/net/ethernet/i825xx/ether1*
1026F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001027F: drivers/scsi/arm/
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001030M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031W: http://www.shark-linux.de/shark.html
1032S: Maintained
1033
Ben Dooksb21477f2009-06-13 10:46:34 +01001034ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001035M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001036M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001037L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001038L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001039W: http://www.fluff.org/ben/linux/
1040S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001041F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001042F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001043F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001044F: arch/arm/mach-s3c24*/
1045F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001046F: drivers/*/*s3c2410*
1047F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001048F: drivers/spi/spi-s3c*
1049F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001051ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001052M: Kukjin Kim <kgene.kim@samsung.com>
1053L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1055S: Maintained
1056F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001057F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001058
Kyungmin Park10ffa962011-03-04 17:36:26 -08001059ARM/SAMSUNG MOBILE MACHINE SUPPORT
1060M: Kyungmin Park <kyungmin.park@samsung.com>
1061L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1062S: Maintained
1063F: arch/arm/mach-s5pv210/mach-aquila.c
1064F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001065F: arch/arm/mach-exynos/mach-universal_c210.c
1066F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001067
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001068ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1069M: Kyungmin Park <kyungmin.park@samsung.com>
1070M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1071L: linux-arm-kernel@lists.infradead.org
1072L: linux-media@vger.kernel.org
1073S: Maintained
1074F: arch/arm/plat-s5p/dev-fimc*
1075F: arch/arm/plat-samsung/include/plat/*fimc*
1076F: drivers/media/video/s5p-fimc/
1077
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001078ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1079M: Kyungmin Park <kyungmin.park@samsung.com>
1080M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001081M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001082L: linux-arm-kernel@lists.infradead.org
1083L: linux-media@vger.kernel.org
1084S: Maintained
1085F: arch/arm/plat-s5p/dev-mfc.c
1086F: drivers/media/video/s5p-mfc/
1087
1088ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1089M: Kyungmin Park <kyungmin.park@samsung.com>
1090M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1091L: linux-arm-kernel@lists.infradead.org
1092L: linux-media@vger.kernel.org
1093S: Maintained
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001094F: drivers/media/video/s5p-tv/
1095
Paul Mundtd48d38e2010-02-08 12:50:24 +09001096ARM/SHMOBILE ARM ARCHITECTURE
1097M: Paul Mundt <lethal@linux-sh.org>
1098M: Magnus Damm <magnus.damm@gmail.com>
1099L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001100W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001101Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001102T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001103S: Supported
1104F: arch/arm/mach-shmobile/
1105F: drivers/sh/
1106
Dinh Nguyen66314222012-07-18 16:07:18 -06001107ARM/SOCFPGA ARCHITECTURE
1108M: Dinh Nguyen <dinguyen@altera.com>
1109S: Maintained
1110F: arch/arm/mach-socfpga/
1111
1112ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1113M: Dinh Nguyen <dinguyen@altera.com>
1114S: Maintained
1115F: drivers/clk/socfpga/
1116
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001117ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001118M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001119L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001120S: Maintained
1121
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001122ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001123M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001124L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125S: Maintained
1126
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001127ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001128M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001129L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001130S: Maintained
1131
wanzongshun98ad6e32009-02-13 06:04:32 +01001132ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001133M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001134L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001135W: http://www.mcuos.com
1136S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001137F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001138F: drivers/input/keyboard/w90p910_keypad.c
1139F: drivers/input/touchscreen/w90p910_ts.c
1140F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001141F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001142F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001143F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001144F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001145F: drivers/usb/host/ehci-w90x900.c
1146F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001147
Linus Walleij54274d72010-04-04 10:58:03 +01001148ARM/U300 MACHINE SUPPORT
1149M: Linus Walleij <linus.walleij@stericsson.com>
1150L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151S: Supported
1152F: arch/arm/mach-u300/
1153F: drivers/i2c/busses/i2c-stu300.c
1154F: drivers/rtc/rtc-coh901331.c
1155F: drivers/watchdog/coh901327_wdt.c
1156F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001157F: drivers/mfd/ab3100*
1158F: drivers/rtc/rtc-ab3100.c
1159F: drivers/rtc/rtc-coh901331.c
1160T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001161
Linus Walleij87572882010-12-22 09:18:29 +01001162ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001163M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleij87572882010-12-22 09:18:29 +01001164M: Linus Walleij <linus.walleij@stericsson.com>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166S: Maintained
1167F: arch/arm/mach-ux500/
Linus Walleij87572882010-12-22 09:18:29 +01001168F: drivers/dma/ste_dma40*
Linus Walleij87572882010-12-22 09:18:29 +01001169F: drivers/mfd/abx500*
1170F: drivers/mfd/ab8500*
1171F: drivers/mfd/stmpe*
1172F: drivers/rtc/rtc-ab8500.c
1173T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001174
Russell Kingd4275352009-04-16 14:05:27 +01001175ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001176M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001177L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001178W: http://www.arm.linux.org.uk/
1179S: Maintained
1180F: arch/arm/vfp/
1181
Marek Vasute66b6d82010-03-26 06:51:32 +01001182ARM/VOIPAC PXA270 SUPPORT
1183M: Marek Vasut <marek.vasut@gmail.com>
1184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185S: Maintained
1186F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001187F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001188
Tony Prisk04529fe2012-07-24 04:19:37 +12001189ARM/VT8500 ARM ARCHITECTURE
1190M: Tony Prisk <linux@prisktech.co.nz>
1191L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192S: Maintained
1193F: arch/arm/mach-vt8500/
1194F: drivers/video/vt8500lcdfb.*
1195F: drivers/video/wm8505fb*
1196F: drivers/video/wmt_ge_rops.*
1197F: drivers/tty/serial/vt8500_serial.c
1198F: drivers/rtc/rtc-vt8500-c
1199
Marek Vasute66b6d82010-03-26 06:51:32 +01001200ARM/ZIPIT Z2 SUPPORT
1201M: Marek Vasut <marek.vasut@gmail.com>
1202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203S: Maintained
1204F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001205F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001206
George Josephd58de032010-03-05 22:17:25 +01001207ASC7621 HARDWARE MONITOR DRIVER
1208M: George Joseph <george.joseph@fairview5.com>
1209L: lm-sensors@lm-sensors.org
1210S: Maintained
1211F: Documentation/hwmon/asc7621
1212F: drivers/hwmon/asc7621.c
1213
Corentin Charyb229ece2011-02-26 10:20:40 +01001214ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001215M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001217L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001218W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001220F: drivers/platform/x86/asus*.c
1221F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001223ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001224M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001225L: lm-sensors@lm-sensors.org
1226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001227F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001228
Andrew Morton953a6472008-11-06 12:53:28 -08001229ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001230M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001231W: http://sourceforge.net/projects/xscaleiop
1232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001233F: Documentation/crypto/async-tx-api.txt
1234F: crypto/async_tx/
1235F: drivers/dma/
1236F: include/linux/dmaengine.h
1237F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001238
Wolfram Sanga1867d32009-09-18 22:45:51 +02001239AT24 EEPROM DRIVER
1240M: Wolfram Sang <w.sang@pengutronix.de>
1241L: linux-i2c@vger.kernel.org
1242S: Maintained
1243F: drivers/misc/eeprom/at24.c
1244F: include/linux/i2c/at24.h
1245
Randy Dunlape7839f22008-10-12 16:11:45 -07001246ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001247M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248W: http://www.coraid.com/support/linux
1249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001250F: Documentation/aoe/
1251F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Joe Perches9a10a872010-12-01 09:37:55 -08001253ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001254M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001255L: linux-wireless@vger.kernel.org
1256S: Supported
1257F: drivers/net/wireless/ath/*
1258
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001259ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001260M: Jiri Slaby <jirislaby@gmail.com>
1261M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001262M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001263L: linux-wireless@vger.kernel.org
1264L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001265W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001266S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001267F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001268
Kalle Valo12e62d62011-09-13 10:21:25 +03001269ATHEROS ATH6KL WIRELESS DRIVER
1270M: Kalle Valo <kvalo@qca.qualcomm.com>
1271L: linux-wireless@vger.kernel.org
1272W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1273T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1274S: Supported
1275F: drivers/net/wireless/ath/ath6kl/
1276
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001277ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001278M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1279M: Jouni Malinen <jouni@qca.qualcomm.com>
1280M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1281M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001282L: linux-wireless@vger.kernel.org
1283L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001284W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001285S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001286F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001287
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001288CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1289M: Christian Lamparter <chunkeey@googlemail.com>
1290L: linux-wireless@vger.kernel.org
1291W: http://wireless.kernel.org/en/users/Drivers/carl9170
1292S: Maintained
1293F: drivers/net/wireless/ath/carl9170/
1294
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001295ATK0110 HWMON DRIVER
1296M: Luca Tettamanti <kronos.it@gmail.com>
1297L: lm-sensors@lm-sensors.org
1298S: Maintained
1299F: drivers/hwmon/asus_atk0110.c
1300
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001301ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001302M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001304F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001305
Chris Snook7ae115b2008-09-09 03:26:57 -04001306ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001307M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001308M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001309L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001310W: http://sourceforge.net/projects/atl1
1311W: http://atl1.sourceforge.net
1312S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001313F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001316M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001317L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001318L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319W: http://linux-atm.sourceforge.net
1320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001321F: drivers/atm/
1322F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Pierre Ossman272f1332007-05-14 21:25:26 +02001324ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001325M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001326L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001327W: http://www.atmel.com/products/AT91/
1328W: http://www.at91.com/
1329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001330F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001331
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001332ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001333M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001334S: Maintained
1335F: drivers/mmc/host/atmel-mci.c
1336F: drivers/mmc/host/atmel-mci-regs.h
1337
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001338ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001339M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001340S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001341F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001342
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001343ATMEL DMA DRIVER
1344M: Nicolas Ferre <nicolas.ferre@atmel.com>
1345L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346S: Supported
1347F: drivers/dma/at_hdmac.c
1348F: drivers/dma/at_hdmac_regs.h
1349F: arch/arm/mach-at91/include/mach/at_hdmac.h
1350
Josh Wu15515542012-03-23 17:56:29 +08001351ATMEL ISI DRIVER
1352M: Josh Wu <josh.wu@atmel.com>
1353L: linux-media@vger.kernel.org
1354S: Supported
1355F: drivers/media/video/atmel-isi.c
1356F: include/media/atmel-isi.h
1357
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001358ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001359M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001360L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001362F: drivers/video/atmel_lcdfb.c
1363F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001364
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001365ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001366M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001367S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001368F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001369
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001370ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001371M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001372S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001373F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001374
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001375ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1376M: Nicolas Ferre <nicolas.ferre@atmel.com>
1377L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1378S: Supported
1379F: drivers/misc/atmel_tclib.c
1380F: drivers/clocksource/tcb_clksrc.c
1381
Josh Wuff2675d2012-03-23 17:56:55 +08001382ATMEL TSADCC DRIVER
1383M: Josh Wu <josh.wu@atmel.com>
1384L: linux-input@vger.kernel.org
1385S: Supported
1386F: drivers/input/touchscreen/atmel_tsadcc.c
1387
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001388ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001389M: Nicolas Ferre <nicolas.ferre@atmel.com>
1390L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001391S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001392F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001395M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001396L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397W: http://www.thekelleys.org.uk/atmel
1398W: http://atmelwlandriver.sourceforge.net/
1399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001400F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Chris Wrighta92b7b82005-07-07 18:12:23 -07001402AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001403M: Al Viro <viro@zeniv.linux.org.uk>
1404M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001405L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001406W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001407T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001409F: include/linux/audit.h
1410F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001411
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001412AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001413M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001414W: http://miguelojeda.es/auxdisplay.htm
1415W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001417F: drivers/auxdisplay/
1418F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001419
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001420AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001421M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1422M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001423W: http://www.atmel.com/products/AVR32/
1424W: http://avr32linux.org/
1425W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001427F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001428
1429AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001430M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1431M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001433F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001436M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001438W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001440F: include/linux/ax25.h
1441F: include/net/ax25.h
1442F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001444B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001445M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001446L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001447L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001448W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001450F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001451
1452B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001453M: Larry Finger <Larry.Finger@lwfinger.net>
1454M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001455L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001456L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001457W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001459F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001460
Richard Purdie300abeb2007-02-07 22:21:07 +00001461BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001462M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001464F: drivers/video/backlight/
1465F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001466
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001467BATMAN ADVANCED
1468M: Marek Lindner <lindner_marek@yahoo.de>
1469M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001470M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001471L: b.a.t.m.a.n@lists.open-mesh.org
1472W: http://www.open-mesh.org/
1473S: Maintained
1474F: net/batman-adv/
1475
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001476BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001477M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001478L: linux-hams@vger.kernel.org
1479W: http://www.baycom.org/~tom/ham/ham.html
1480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001482
1483BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001484S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001485F: Documentation/filesystems/befs.txt
1486F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001487
1488BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001489M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001491F: Documentation/filesystems/bfs.txt
1492F: fs/bfs/
1493F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001494
Bryan Wu1394f032007-05-06 14:50:22 -07001495BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001496M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001497L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001498W: http://blackfin.uclinux.org
1499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001500F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001501
Bryan Wue190d6b2007-07-17 14:43:44 +08001502BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001503L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001504W: http://blackfin.uclinux.org
1505S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001506F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001507
Mike Frysinger566da5b2007-06-11 15:31:30 +08001508BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001509M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001510L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001511W: http://blackfin.uclinux.org
1512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001513F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001514
Mike Frysinger936ed492010-03-10 15:20:38 -08001515BLACKFIN SDH DRIVER
1516M: Cliff Cai <cliff.cai@analog.com>
1517L: uclinux-dist-devel@blackfin.uclinux.org
1518W: http://blackfin.uclinux.org
1519S: Supported
1520F: drivers/mmc/host/bfin_sdh.c
1521
Bryan Wu1394f032007-05-06 14:50:22 -07001522BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001523M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001524L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001525W: http://blackfin.uclinux.org
1526S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001527F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001528
Bryan Wu1e6d3202007-07-15 02:50:02 +08001529BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001530M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001531L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001532W: http://blackfin.uclinux.org
1533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001534F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001535
Bryan Wud24ecfc2007-05-01 23:26:32 +02001536BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001538L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001539W: http://blackfin.uclinux.org/
1540S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001541F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001542
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001543BLINKM RGB LED DRIVER
1544M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1545S: Maintained
1546F: drivers/leds/leds-blinkm.c
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001550T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001552F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Joern Engel2b54aae2008-02-06 01:38:02 -08001554BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001555M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001556L: linux-mtd@lists.infradead.org
1557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001558F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001559
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001560BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001561M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001562M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001563M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001564L: linux-bluetooth@vger.kernel.org
1565W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001566T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1567T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001569F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001572M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001573M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001574M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001575L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001576W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001577T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1578T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001580F: net/bluetooth/
1581F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001584M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001585M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001586L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001587W: http://sourceforge.net/projects/bonding/
1588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/net/bonding/
1590F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Gary Zambrano39105892006-06-22 17:26:20 -07001592BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001594L: netdev@vger.kernel.org
1595S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001596F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001597
Michael Chan948c51e2006-06-04 02:51:39 -07001598BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001599M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001600L: netdev@vger.kernel.org
1601S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001602F: drivers/net/ethernet/broadcom/bnx2.*
1603F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001604
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001605BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001606M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001607L: netdev@vger.kernel.org
1608S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001609F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001610
Michael Chan948c51e2006-06-04 02:51:39 -07001611BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001612M: Matt Carlson <mcarlson@broadcom.com>
1613M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001614L: netdev@vger.kernel.org
1615S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001616F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001617
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001618BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1619M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001620M: Roland Vossen <rvossen@broadcom.com>
1621M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001622M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1623M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001624L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001625L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001626S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001627F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001628
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001629BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1630M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1631L: linux-scsi@vger.kernel.org
1632S: Supported
1633F: drivers/scsi/bnx2fc/
1634
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001635BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1636M: Rafał Miłecki <zajec5@gmail.com>
1637L: linux-wireless@vger.kernel.org
1638S: Maintained
1639F: drivers/bcma/
1640F: include/linux/bcma/
1641
Jing Huang7725ccf2009-09-23 17:46:15 -07001642BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001643M: Jing Huang <huangj@brocade.com>
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001644M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001645L: linux-scsi@vger.kernel.org
1646S: Supported
1647F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001648
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001649BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1650M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001651L: netdev@vger.kernel.org
1652S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001653F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001654
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001655BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001657L: linux-scsi@vger.kernel.org
1658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001659F: block/bsg.c
1660F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001661
Clemens Ladischaf399172011-01-10 16:32:54 +01001662BT87X AUDIO DRIVER
1663M: Clemens Ladisch <clemens@ladisch.de>
1664L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1665T: git git://git.alsa-project.org/alsa-kernel.git
1666S: Maintained
1667F: Documentation/sound/alsa/Bt87x.txt
1668F: sound/pci/bt87x.c
1669
Michael Bueschff1d5c22008-07-25 01:46:10 -07001670BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001671M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001672W: http://bu3sch.de/btgpio.php
1673S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001674F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001675
Joe Percheseb1eb042009-01-21 10:49:16 -05001676BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001677M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001678L: linux-btrfs@vger.kernel.org
1679W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001680Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001681T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001683F: Documentation/filesystems/btrfs.txt
1684F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001687M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001688L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001689W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001690T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001692F: Documentation/video4linux/bttv/
1693F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Clemens Ladischaf399172011-01-10 16:32:54 +01001695C-MEDIA CMI8788 DRIVER
1696M: Clemens Ladisch <clemens@ladisch.de>
1697L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1698T: git git://git.alsa-project.org/alsa-kernel.git
1699S: Maintained
1700F: sound/pci/oxygen/
1701
Mark Salter21413552011-10-04 11:21:42 -04001702C6X ARCHITECTURE
1703M: Mark Salter <msalter@redhat.com>
1704M: Aurelien Jacquiot <a-jacquiot@ti.com>
1705L: linux-c6x-dev@linux-c6x.org
1706W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1707S: Maintained
1708F: arch/c6x/
1709
David Howellsa5432f52009-04-20 15:46:45 +01001710CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001711M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001712L: linux-cachefs@redhat.com
1713S: Supported
1714F: Documentation/filesystems/caching/cachefiles.txt
1715F: fs/cachefiles/
1716
Jonathan Corbet77d51402007-03-22 19:44:17 -03001717CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001718M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001719L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001720T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001722F: Documentation/video4linux/cafe_ccic
Joe Perches25b8d2b2012-01-10 15:08:49 -08001723F: drivers/media/video/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001724
Joe Perches201b6ba2010-09-07 20:33:24 +00001725CAIF NETWORK LAYER
1726M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1727L: netdev@vger.kernel.org
1728S: Supported
1729F: Documentation/networking/caif/
1730F: drivers/net/caif/
1731F: include/linux/caif/
1732F: include/net/caif/
1733F: net/caif/
1734
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001735CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001736M: Muli Ben-Yehuda <muli@il.ibm.com>
1737M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001738L: discuss@x86-64.org
1739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001740F: arch/x86/kernel/pci-calgary_64.c
1741F: arch/x86/kernel/tce_64.c
1742F: arch/x86/include/asm/calgary.h
1743F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001744
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001745CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001746M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001747L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001748W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001749T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001750S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001751F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001752F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001753F: include/linux/can/core.h
1754F: include/linux/can/bcm.h
1755F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001756F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001757
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001758CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001759M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001760M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001761L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001762W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001763T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001764S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001765F: drivers/net/can/
1766F: include/linux/can/dev.h
1767F: include/linux/can/error.h
1768F: include/linux/can/netlink.h
1769F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001770
James Morris95d16c72012-03-16 12:05:48 +11001771CAPABILITIES
1772M: Serge Hallyn <serge.hallyn@canonical.com>
1773L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001774S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001775F: include/linux/capability.h
1776F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001777F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001778F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001779
Arnd Bergmannb8154542008-05-16 11:10:59 +02001780CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001781M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001782L: linuxppc-dev@lists.ozlabs.org
1783L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001784W: http://www.ibm.com/developerworks/power/cell/
1785S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001786F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001787F: arch/powerpc/include/asm/spu*.h
1788F: arch/powerpc/oprofile/*cell*
1789F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001790
Sage Weil9030aaf2009-10-06 11:31:15 -07001791CEPH DISTRIBUTED FILE SYSTEM CLIENT
1792M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001793L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001794W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001795T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001796S: Supported
1797F: Documentation/filesystems/ceph.txt
1798F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001799F: net/ceph
1800F: include/linux/ceph
Sage Weil9030aaf2009-10-06 11:31:15 -07001801
David Vrabel18332a82008-09-17 16:34:44 +01001802CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001803L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001804S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001805F: Documentation/usb/WUSB-Design-overview.txt
1806F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001807F: drivers/usb/host/hwa-hc.c
1808F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001809F: drivers/usb/wusbcore/
1810F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001811
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001812CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001813M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001814W: http://miguelojeda.es/auxdisplay.htm
1815W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001817F: drivers/auxdisplay/cfag12864b.c
1818F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001819
1820CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001822W: http://miguelojeda.es/auxdisplay.htm
1823W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001825F: drivers/auxdisplay/cfag12864bfb.c
1826F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001827
Johannes Berg704232c2007-04-23 12:20:05 -07001828CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001830L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001831W: http://wireless.kernel.org/
1832T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1833T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001835F: include/linux/nl80211.h
1836F: include/net/cfg80211.h
1837F: net/wireless/*
1838X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001839
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001840CHAR and MISC DRIVERS
1841M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001842M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001843T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001844S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001845F: drivers/char/*
1846F: drivers/misc/*
1847
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001848CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001849M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001851F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001852
Harry Weif8407f262011-02-25 14:44:15 -08001853CHINESE DOCUMENTATION
1854M: Harry Wei <harryxiyou@gmail.com>
1855L: xiyoulinuxkernelgroup@googlegroups.com
1856L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1857S: Maintained
1858F: Documentation/zh_CN/
1859
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001860CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1861M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1862L: linux-usb@vger.kernel.org
1863S: Maintained
1864F: drivers/usb/chipidea/
1865
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001866CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001867M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001868M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001869M: Neel Patel <neepatel@cisco.com>
1870M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001871S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001872F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001873
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001874CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001875M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001876L: netdev@vger.kernel.org
1877S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001878F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001879
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001880CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001881M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001882L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001884F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001885
Timur Tabid9e9d822008-04-24 08:45:26 +10001886CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001887M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001888L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001890F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001891
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001892CLEANCACHE API
1893M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1894L: linux-kernel@vger.kernel.org
1895S: Maintained
1896F: mm/cleancache.c
1897F: include/linux/cleancache.h
1898
Russell Kingd4275352009-04-16 14:05:27 +01001899CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001900M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001901S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001902F: include/linux/clk.h
1903
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001904CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001905M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001906M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1907M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001908L: linux-scsi@vger.kernel.org
1909S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001910F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001911
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001912CMPC ACPI DRIVER
1913M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1914M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001915L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001916S: Supported
1917F: drivers/platform/x86/classmate-laptop.c
1918
Nicolas Palix74425ee2010-06-06 17:15:01 +02001919COCCINELLE/Semantic Patches (SmPL)
1920M: Julia Lawall <julia@diku.dk>
1921M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palixaf78f212010-10-08 21:27:36 +02001922M: Nicolas Palix <npalix.work@gmail.com>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001923L: cocci@diku.dk (moderated for non-subscribers)
1924W: http://coccinelle.lip6.fr/
1925S: Supported
1926F: scripts/coccinelle/
1927F: scripts/coccicheck
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001930M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931M: coda@cs.cmu.edu
1932L: codalist@coda.cs.cmu.edu
1933W: http://www.coda.cs.cmu.edu/
1934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001935F: Documentation/filesystems/coda.txt
1936F: fs/coda/
1937F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Mike Turquette7704add2012-05-02 18:37:45 -07001939COMMON CLK FRAMEWORK
1940M: Mike Turquette <mturquette@ti.com>
1941M: Mike Turquette <mturquette@linaro.org>
1942L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1943T: git git://git.linaro.org/people/mturquette/linux.git
1944S: Maintained
1945F: drivers/clk/clk.c
1946F: drivers/clk/clk-*
1947F: include/linux/clk-pr*
1948
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001949COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001950M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001951L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001952L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001953W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001954Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001955T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001957F: Documentation/filesystems/cifs.txt
1958F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001961M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001962L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001964F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001967M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001968L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001970F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001973M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001974L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001976F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001978COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001980L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001982F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001983
Simon Arlott949be0f2007-03-06 02:47:46 -08001984CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001985M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001986L: accessrunner-general@lists.sourceforge.net
1987W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001989F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001990
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001991CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08001992M: Joel Becker <jlbec@evilplan.org>
1993T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001994S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001995F: fs/configfs/
1996F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001997
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001998CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001999M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002000L: netdev@vger.kernel.org
2001S: Maintained
2002F: drivers/connector/
2003
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002004CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002005M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002006M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002007L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002008L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002009T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002011F: include/linux/cgroup*
2012F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002013F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002014
Rudolf Marekbebe4672007-05-08 17:22:02 +02002015CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002016M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002017L: lm-sensors@lm-sensors.org
2018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: Documentation/hwmon/coretemp
2020F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002023M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024W: http://www.fi.muni.cz/~kas/cosa/
2025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002026F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Florian Fainelli4371ee32009-06-01 02:43:17 -07002028CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002029M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002030L: netdev@vger.kernel.org
2031S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002032F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002035M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002036L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002037L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002039F: drivers/cpufreq/
2040F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002043M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002045F: arch/x86/kernel/cpuid.c
2046F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002048CPU POWER MONITORING SUBSYSTEM
2049M: Dominik Brodowski <linux@dominikbrodowski.net>
2050M: Thomas Renninger <trenn@suse.de>
2051S: Maintained
2052F: tools/power/cpupower
2053
Paul Jacksoned90fb42005-09-27 21:45:37 -07002054CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002055M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002056W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002057W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002059F: Documentation/cgroups/cpusets.txt
2060F: include/linux/cpuset.h
2061F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002064W: http://sourceforge.net/projects/cramfs/
2065S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002066F: Documentation/filesystems/cramfs.txt
2067F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Mikael Starvik <starvik@axis.com>
2071M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002072L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073W: http://developer.axis.com
2074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002075F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002076F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002079M: Herbert Xu <herbert@gondor.apana.org.au>
2080M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002082T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002084F: Documentation/crypto/
2085F: arch/*/crypto/
2086F: crypto/
2087F: drivers/crypto/
2088F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Neil Horman5b07bd52009-02-05 16:03:04 +11002090CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002091M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002092L: linux-crypto@vger.kernel.org
2093S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002094F: crypto/ansi_cprng.c
2095F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002096
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002097CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002098M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002100F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002101
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002102CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002103M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002104L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002105L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002106T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002107W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002108W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002110F: Documentation/video4linux/cx18.txt
2111F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002112
Steve Wisee5ec3782008-05-20 14:06:33 -07002113CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002114M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002115L: netdev@vger.kernel.org
2116W: http://www.chelsio.com
2117S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002118F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002119
2120CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002121M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002122L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002123W: http://www.openfabrics.org
2124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002125F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002126
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002127CXGB4 ETHERNET DRIVER (CXGB4)
2128M: Dimitris Michailidis <dm@chelsio.com>
2129L: netdev@vger.kernel.org
2130W: http://www.chelsio.com
2131S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002132F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002133
2134CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2135M: Steve Wise <swise@chelsio.com>
2136L: linux-rdma@vger.kernel.org
2137W: http://www.openfabrics.org
2138S: Supported
2139F: drivers/infiniband/hw/cxgb4/
2140
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002141CXGB4VF ETHERNET DRIVER (CXGB4VF)
2142M: Casey Leedom <leedom@chelsio.com>
2143L: netdev@vger.kernel.org
2144W: http://www.chelsio.com
2145S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002146F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002147
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002148STMMAC ETHERNET DRIVER
2149M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2150L: netdev@vger.kernel.org
2151W: http://www.stlinux.com
2152S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002153F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002156M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002157L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158W: http://www.arm.linux.org.uk/
2159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002163M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002164W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002166F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002170S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002171F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002172F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002176S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002177F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002179CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002180M: Javier Martinez Canillas <javier@dowhile0.org>
2181L: linux-input@vger.kernel.org
2182S: Maintained
2183F: drivers/input/touchscreen/cyttsp*
2184F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188W: http://yaina.de/jreuter/
2189W: http://www.qsl.net/dl1bke/
2190L: linux-hams@vger.kernel.org
2191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: net/ax25/af_ax25.c
2193F: net/ax25/ax25_dev.c
2194F: net/ax25/ax25_ds_*
2195F: net/ax25/ax25_in.c
2196F: net/ax25/ax25_out.c
2197F: net/ax25/ax25_timer.c
2198F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002200DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002201L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002202S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002203F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002204F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002205
2206DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002207M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002208W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002209M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002214M: Oliver Neukum <oliver@neukum.name>
2215M: Ali Akcaagac <aliakc@web.de>
2216M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002218L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219L: http://lists.twibble.org/mailman/listinfo/dc395x/
2220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002221F: Documentation/scsi/dc395x.txt
2222F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002224DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002225M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002226L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002227W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002229F: include/linux/dccp.h
2230F: include/linux/tfrc.h
2231F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://linux-decnet.sourceforge.net
2235L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002236S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002237F: Documentation/networking/decnet.txt
2238F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002241M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002243F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002245DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002247L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002249F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002252M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253W: http://www.debian.org/~dz/i8k/
2254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002255F: drivers/char/i8k.c
2256F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Doug Warzecha90563ec2005-09-06 15:17:15 -07002258DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002259M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002261F: Documentation/dcdbas.txt
2262F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002263
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002264DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002265M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002266S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002267F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002268
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002269DESIGNWARE USB3 DRD IP DRIVER
2270M: Felipe Balbi <balbi@ti.com>
2271L: linux-usb@vger.kernel.org
2272L: linux-omap@vger.kernel.org
2273T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2274S: Maintained
2275F: drivers/usb/dwc3/
2276
Kyungmin Park89d07762012-01-10 15:09:09 -08002277DEVICE FREQUENCY (DEVFREQ)
2278M: MyungJoo Ham <myungjoo.ham@samsung.com>
2279M: Kyungmin Park <kyungmin.park@samsung.com>
2280L: linux-kernel@vger.kernel.org
2281S: Maintained
2282F: drivers/devfreq/
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002285M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287S: Maintained
2288
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002289DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002290M: Alasdair Kergon <agk@redhat.com>
2291M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002292L: dm-devel@redhat.com
2293W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002294Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002295T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002297F: Documentation/device-mapper/
2298F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002299F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002300F: include/linux/device-mapper.h
2301F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002302
Guenter Roeck335d7c52011-01-26 11:45:49 -08002303DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002304M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002305L: linux-i2c@vger.kernel.org
2306S: Maintained
2307F: drivers/i2c/busses/i2c-diolan-u2c.c
2308
Randy Dunlape7839f22008-10-12 16:11:45 -07002309DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002312F: Documentation/filesystems/dnotify.txt
2313F: fs/notify/dnotify/
2314F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2319W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2320W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2321S: Maintained
2322
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002323DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002326F: Documentation/filesystems/quota.txt
2327F: fs/quota/
2328F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Bernie Thompson702686a2012-03-01 13:52:13 -08002330DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2331M: Bernie Thompson <bernie@plugable.com>
2332L: linux-fbdev@vger.kernel.org
2333S: Maintained
2334W: http://plugable.com/category/projects/udlfb/
2335F: drivers/video/udlfb.c
2336F: include/video/udlfb.h
2337F: Documentation/fb/udlfb.txt
2338
Randy Dunlape7839f22008-10-12 16:11:45 -07002339DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002340M: Christine Caulfield <ccaulfie@redhat.com>
2341M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002342L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002343W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002344T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002346F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002347
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302348DMA BUFFER SHARING FRAMEWORK
2349M: Sumit Semwal <sumit.semwal@linaro.org>
2350S: Maintained
2351L: linux-media@vger.kernel.org
2352L: dri-devel@lists.freedesktop.org
2353L: linaro-mm-sig@lists.linaro.org
2354F: drivers/base/dma-buf*
2355F: include/linux/dma-buf*
2356F: Documentation/dma-buf-sharing.txt
2357T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2358
Dan Williamsb3e5f262007-08-07 10:26:35 -07002359DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002360M: Vinod Koul <vinod.koul@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002361M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002362S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002363F: drivers/dma/
2364F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302365T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2366T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002367
Juerg Haefligerb8250372007-06-09 10:11:16 -04002368DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002370L: lm-sensors@lm-sensors.org
2371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002372F: Documentation/hwmon/dme1737
2373F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002374
Martin Waitzba483d52005-06-17 13:20:59 -07002375DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07002377S: Maintained
Randy Dunlap5d3efe02010-11-18 12:27:37 -08002378F: scripts/kernel-doc
Martin Waitzba483d52005-06-17 13:20:59 -07002379
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002380DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002381M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002382L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002383S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002384F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002385
Joe Perches7d2c86b2009-04-07 20:59:01 -07002386DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002387M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002388L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002389T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002391F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002394M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395L: blinux-list@redhat.com
2396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002397F: drivers/char/dtlk.c
2398F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002400DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002401M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002402L: linux-scsi@vger.kernel.org
2403W: http://www.adaptec.com/
2404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002405F: drivers/scsi/dpt*
2406F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002407
Philipp Reisnerb411b362009-09-25 16:07:19 -07002408DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002409P: Philipp Reisner
2410P: Lars Ellenberg
2411M: drbd-dev@lists.linbit.com
2412L: drbd-user@lists.linbit.com
2413W: http://www.drbd.org
2414T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2415T: git git://git.drbd.org/drbd-8.3.git
2416S: Supported
2417F: drivers/block/drbd/
2418F: lib/lru_cache.c
2419F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002420
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002421DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002422M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002423T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002425F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002426F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002427F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002428F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002429F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002430F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002431F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002434M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002435L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002436T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002438F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002439F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Chris Wilson8daf7472010-09-28 14:07:26 +01002441INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002442M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002443L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002444L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002445T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002446S: Supported
2447F: drivers/gpu/drm/i915
2448F: include/drm/i915*
2449
Kyungmin Park398a6d42011-11-02 11:33:16 +09002450DRM DRIVERS FOR EXYNOS
2451M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002452M: Joonyoung Shim <jy0922.shim@samsung.com>
2453M: Seung-Woo Kim <sw0312.kim@samsung.com>
2454M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002455L: dri-devel@lists.freedesktop.org
2456S: Supported
2457F: drivers/gpu/drm/exynos
2458F: include/drm/exynos*
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002462L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002464F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Jason Baronac0ac382011-08-11 14:36:43 -04002466DYNAMIC DEBUG
2467M: Jason Baron <jbaron@redhat.com>
2468S: Maintained
2469F: lib/dynamic_debug.c
2470F: include/linux/dynamic_debug.h
2471
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002472DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002473M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002474S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002475F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002478M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002479L: linux-eata@i-connect.net
2480L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002482F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
2484EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486L: linux-scsi@vger.kernel.org
2487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
2490EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002491M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002492L: linux-eata@i-connect.net
2493L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002495F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002498M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002499L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500W: http://ebtables.sourceforge.net/
2501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002502F: include/linux/netfilter_bridge/ebt_*.h
2503F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Michael Halcrow237fead2006-10-04 02:16:22 -07002505ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002506M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002507M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002508L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002509W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002511F: Documentation/filesystems/ecryptfs.txt
2512F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002513
Alan Coxda9bb1d2006-01-18 17:44:13 -08002514EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002515M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002516L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002517W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002519F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002520F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002521F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002522
Borislav Petkovc476c232009-05-20 20:31:58 +02002523EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002524M: Doug Thompson <dougthompson@xmission.com>
2525M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002526L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002527W: bluesmoke.sourceforge.net
2528S: Supported
2529F: drivers/edac/amd64_edac*
2530
Dave Peterson0e438e32006-03-26 01:38:55 -08002531EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002532M: Mark Gross <mark.gross@intel.com>
2533M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002534L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002535W: bluesmoke.sourceforge.net
2536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002537F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002538
2539EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002540M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002541L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002542W: bluesmoke.sourceforge.net
2543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002544F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002545
Douglas Thompson6bc78402007-07-19 01:50:12 -07002546EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002547M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002548L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002549W: bluesmoke.sourceforge.net
2550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002551F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002552
2553EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002554M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002555L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002556W: bluesmoke.sourceforge.net
2557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002558F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002559
2560EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002561M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002562L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002563W: bluesmoke.sourceforge.net
2564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002566
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002567EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002568M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002569L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002570W: bluesmoke.sourceforge.net
2571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002572F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002573
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002574EDAC-I7300
2575M: Mauro Carvalho Chehab <mchehab@redhat.com>
2576L: linux-edac@vger.kernel.org
2577W: bluesmoke.sourceforge.net
2578S: Maintained
2579F: drivers/edac/i7300_edac.c
2580
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002581EDAC-I7CORE
2582M: Mauro Carvalho Chehab <mchehab@redhat.com>
2583L: linux-edac@vger.kernel.org
2584W: bluesmoke.sourceforge.net
2585S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002586F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002587
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002588EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002589M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302590M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002591L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002592W: bluesmoke.sourceforge.net
2593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002594F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002595
2596EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002597M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002598L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002599W: bluesmoke.sourceforge.net
2600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002601F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002602
Dave Peterson0e438e32006-03-26 01:38:55 -08002603EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002604M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002605L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002606W: bluesmoke.sourceforge.net
2607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002608F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002609
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002610EDAC-SBRIDGE
2611M: Mauro Carvalho Chehab <mchehab@redhat.com>
2612L: linux-edac@vger.kernel.org
2613W: bluesmoke.sourceforge.net
2614S: Maintained
2615F: drivers/edac/sb_edac.c
2616
Clemens Ladischaf399172011-01-10 16:32:54 +01002617EDIROL UA-101/UA-1000 DRIVER
2618M: Clemens Ladisch <clemens@ladisch.de>
2619L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2620T: git git://git.alsa-project.org/alsa-kernel.git
2621S: Maintained
2622F: sound/usb/misc/ua101.c
2623
Peter Jones85a00d92010-09-22 13:05:04 -07002624EFIFB FRAMEBUFFER DRIVER
2625L: linux-fbdev@vger.kernel.org
2626M: Peter Jones <pjones@redhat.com>
2627S: Maintained
2628F: drivers/video/efifb.c
2629
Josh Triplett0bee8d22006-07-30 03:03:58 -07002630EFS FILESYSTEM
2631W: http://aeschi.ch.eu.org/efs/
2632S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002633F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002634
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002635EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002636M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2637M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002638L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002639S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002640F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002641
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002642EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002643M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002644L: netdev@vger.kernel.org
2645S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002646F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002647
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002648EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002649M: Paul Gortmaker <paul.gortmaker@windriver.com>
2650M: Matt Mackall <mpm@selenic.com>
2651M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002652L: linux-embedded@vger.kernel.org
2653S: Maintained
2654
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002655EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002656M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002657L: linux-scsi@vger.kernel.org
2658W: http://sourceforge.net/projects/lpfcxxxx
2659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002660F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002661
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002662ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002663M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002664S: Maintained
2665F: drivers/misc/cb710/
2666F: drivers/mmc/host/cb710-mmc.*
2667F: include/linux/cb710.h
2668
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002669ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2670M: Maxim Levitsky <maximlevitsky@gmail.com>
2671S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002672F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002675M: Christopher Hoover <ch@murgatroid.com>
2676M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002678F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002680EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002681M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002682S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002683T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002684F: drivers/video/s1d13xxxfb.c
2685F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002688M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002689L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002691F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
2693ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002694M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002695L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002696L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002697W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002699F: include/linux/netfilter_bridge/
2700F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
2702ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002703M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002705F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
2707EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002708M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002709L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002711F: Documentation/filesystems/ext2.txt
2712F: fs/ext2/
2713F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002716M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002718M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002719L: linux-ext4@vger.kernel.org
2720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: Documentation/filesystems/ext3.txt
2722F: fs/ext3/
2723F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002724
2725EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002726M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002727M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002728L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002729W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002730Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002732F: Documentation/filesystems/ext4.txt
2733F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
Mimi Zoharc5532b02011-08-17 18:52:24 -04002735Extended Verification Module (EVM)
2736M: Mimi Zohar <zohar@us.ibm.com>
2737S: Supported
2738F: security/integrity/evm/
2739
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002740EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2741M: MyungJoo Ham <myungjoo.ham@samsung.com>
2742M: Chanwoo Choi <cw00.choi@samsung.com>
2743L: linux-kernel@vger.kernel.org
2744S: Maintained
2745F: drivers/extcon/
2746F: Documentation/extcon/
2747
Jingoo Han0a799512012-02-06 11:30:39 +09002748EXYNOS DP DRIVER
2749M: Jingoo Han <jg1.han@samsung.com>
2750L: linux-fbdev@vger.kernel.org
2751S: Maintained
2752F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002753F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002754
Donghwa Lee33ad3912012-03-06 11:44:58 +09002755EXYNOS MIPI DISPLAY DRIVERS
2756M: Inki Dae <inki.dae@samsung.com>
2757M: Donghwa Lee <dh09.lee@samsung.com>
2758M: Kyungmin Park <kyungmin.park@samsung.com>
2759L: linux-fbdev@vger.kernel.org
2760S: Maintained
2761F: drivers/video/exynos/exynos_mipi*
2762F: include/video/exynos_mipi*
2763
Jean Delvaree53004e2006-01-09 23:26:14 +01002764F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002765M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002766L: lm-sensors@lm-sensors.org
2767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002768F: Documentation/hwmon/f71805f
2769F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002770
Michael Büscheea977e2012-04-02 12:14:32 -03002771FC0011 TUNER DRIVER
2772M: Michael Buesch <m@bues.ch>
2773L: linux-media@vger.kernel.org
2774S: Maintained
2775F: drivers/media/common/tuners/fc0011.h
2776F: drivers/media/common/tuners/fc0011.c
2777
Eric Paris88b2dbd2010-08-18 12:25:50 -04002778FANOTIFY
2779M: Eric Paris <eparis@redhat.com>
2780S: Maintained
2781F: fs/notify/fanotify/
2782F: include/linux/fanotify.h
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002785M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786W: http://www.farsite.co.uk/
2787S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Akinobu Mitac5408b82007-04-23 14:41:20 -07002790FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002792S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002793F: Documentation/fault-injection/
2794F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002795
Robert Lovecae727d2010-02-16 12:16:00 -08002796FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2797M: Robert Love <robert.w.love@intel.com>
2798L: devel@open-fcoe.org
2799W: www.Open-FCoE.org
2800S: Supported
2801F: drivers/scsi/libfc/
2802F: drivers/scsi/fcoe/
2803F: include/scsi/fc/
2804F: include/scsi/libfc.h
2805F: include/scsi/libfcoe.h
2806
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002807FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002808M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002809L: linux-fsdevel@vger.kernel.org
2810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: include/linux/fcntl.h
2812F: include/linux/fs.h
2813F: fs/fcntl.c
2814F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002815
2816FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002817M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002818L: linux-fsdevel@vger.kernel.org
2819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002821
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002822FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002823M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002824L: lm-sensors@lm-sensors.org
2825S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002826F: drivers/hwmon/f75375s.c
2827F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002828
Clemens Ladischa331b0c2011-05-25 09:48:48 +02002829FIREWIRE AUDIO DRIVERS
2830M: Clemens Ladisch <clemens@ladisch.de>
2831L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2832T: git git://git.alsa-project.org/alsa-kernel.git
2833S: Maintained
2834F: sound/firewire/
2835
Chris Boota511ce32012-04-14 17:50:35 -07002836FIREWIRE SBP-2 TARGET
2837M: Chris Boot <bootc@bootc.net>
2838L: linux-scsi@vger.kernel.org
2839L: target-devel@vger.kernel.org
2840L: linux1394-devel@lists.sourceforge.net
2841T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
2842S: Maintained
2843F: drivers/target/sbp/
2844
Joe Perches7d2c86b2009-04-07 20:59:01 -07002845FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002847L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002848W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01002849T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002851F: drivers/firewire/
2852F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002853F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002854
2855FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002856S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002857F: Documentation/firmware_class/
2858F: drivers/base/firmware*.c
2859F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002860
Jiri Kosina8206f662012-05-18 13:52:29 +02002861FLOPPY DRIVER
2862M: Jiri Kosina <jkosina@suse.cz>
2863T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
2864S: Odd fixes
2865F: drivers/block/floppy.c
2866
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002867FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002869W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002871F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002872
2873FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002874L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00002875S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002876F: drivers/net/wan/dlci.c
2877F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00002880M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002881L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09002883Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00002884T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09002885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002886F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09002887F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09002888F: drivers/video/
2889F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07002890F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Zhang Wei173acc72008-03-01 07:42:48 -07002892FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Li Yang <leoli@freescale.com>
2894M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002895L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002897F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002898
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002899FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002900M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002901L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002902L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002904F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002905
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002906FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002907M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002908L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002909L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: arch/arm/plat-mxc/include/mach/imxfb.h
2912F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002913
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002914FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002915M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2916M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002917L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002918L: netdev@vger.kernel.org
2919S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07002920F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07002921F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002922
Timur Tabid9e9d822008-04-24 08:45:26 +10002923FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002924M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002925L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002926S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002927F: arch/powerpc/sysdev/qe_lib/
2928F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002929
Joe Perchesb55ef9292009-10-26 16:49:46 -07002930FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002931M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002932L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002933L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002934S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002935F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002936
Li Yangbeaf53b2007-05-25 13:54:02 +08002937FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002938M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002939L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002940L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002941S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07002942F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002943
Timur Tabid9e9d822008-04-24 08:45:26 +10002944FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002945M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002946L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002947S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002948F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002949
2950FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002951M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002952L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002953L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002954S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002955F: sound/soc/fsl/fsl*
2956F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002959M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002962F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
Pavel Machek71038f52009-01-15 13:51:02 -08002964FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Pavel Machek <pavel@ucw.cz>
2966M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02002967L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08002968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002969F: Documentation/power/freezing-of-tasks.txt
2970F: include/linux/freezer.h
2971F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002972
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04002973FRONTSWAP API
2974M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2975L: linux-kernel@vger.kernel.org
2976S: Maintained
2977F: mm/frontswap.c
2978F: include/linux/frontswap.h
2979
David Howellsa5432f52009-04-20 15:46:45 +01002980FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002981M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002982L: linux-cachefs@redhat.com
2983S: Supported
2984F: Documentation/filesystems/caching/
2985F: fs/fscache/
2986F: include/linux/fscache*.h
2987
David Howells5ab7ffe2007-04-10 15:10:45 +01002988FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002989M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002991F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Jonathan Woithe20b93732008-06-11 10:14:56 +09302993FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10302994M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05002995L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002997F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302998
Heungjun Kim4da621b2011-11-11 08:05:33 -03002999FUJITSU M-5MO LS CAMERA ISP DRIVER
3000M: Kyungmin Park <kyungmin.park@samsung.com>
3001M: Heungjun Kim <riverful.kim@samsung.com>
3002L: linux-media@vger.kernel.org
3003S: Maintained
3004F: drivers/media/video/m5mols/
3005F: include/media/m5mols.h
3006
Robert Gerlach2d24c492012-01-18 14:26:22 +01003007FUJITSU TABLET EXTRAS
3008M: Robert Gerlach <khnz@gmx.de>
3009L: platform-driver-x86@vger.kernel.org
3010S: Maintained
3011F: drivers/platform/x86/fujitsu-tablet.c
3012
Miklos Szeredi04578f12005-09-09 13:10:22 -07003013FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003014M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003015L: fuse-devel@lists.sourceforge.net
3016W: http://fuse.sourceforge.net/
3017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003018F: fs/fuse/
3019F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003022M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003024S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003025F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
3027GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003028M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029L: linux-scsi@vger.kernel.org
3030W: http://www.icp-vortex.com/
3031S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003032F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003034GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003035M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003037F: drivers/i2c/busses/i2c-gpio.c
3038F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003039
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003040GENERIC GPIO I2C MULTIPLEXER DRIVER
3041M: Peter Korsgaard <peter.korsgaard@barco.com>
3042L: linux-i2c@vger.kernel.org
3043S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003044F: drivers/i2c/muxes/i2c-mux-gpio.c
3045F: include/linux/i2c-mux-gpio.h
3046F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003047
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003048GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003049M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003052F: drivers/net/wan/c101.c
3053F: drivers/net/wan/hd6457*
3054F: drivers/net/wan/hdlc*
3055F: drivers/net/wan/n2.c
3056F: drivers/net/wan/pc300too.c
3057F: drivers/net/wan/pci200syn.c
3058F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003060GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003061M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003062L: linux-arch@vger.kernel.org
3063T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3064S: Maintained
3065F: include/asm-generic
3066
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003067GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003068M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003069L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003070S: Supported
3071F: drivers/uio/uio_pci_generic.c
3072
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003073GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003074M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003075L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003076W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003077T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3078T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003080F: Documentation/filesystems/gfs2*.txt
3081F: fs/gfs2/
3082F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003083
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003084GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003085M: Hansjoerg Lipp <hjlipp@web.de>
3086M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003087L: gigaset307x-common@lists.sourceforge.net
3088W: http://gigaset307x.sourceforge.net/
3089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003090F: Documentation/isdn/README.gigaset
3091F: drivers/isdn/gigaset/
3092F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003093
Grant Likelya0dc00b2011-02-12 01:48:14 -07003094GPIO SUBSYSTEM
3095M: Grant Likely <grant.likely@secretlab.ca>
Grant Likely3e009392011-12-12 13:01:02 -07003096M: Linus Walleij <linus.walleij@stericsson.com>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003097S: Maintained
3098T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003099F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003100F: drivers/gpio/
3101F: include/linux/gpio*
3102
Harry Wei71a6d0a2011-05-11 15:13:33 -07003103GRE DEMULTIPLEXER DRIVER
3104M: Dmitry Kozlov <xeb@mail.ru>
3105L: netdev@vger.kernel.org
3106S: Maintained
3107F: net/ipv4/gre.c
3108F: include/net/gre.h
3109
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003110GRETH 10/100/1G Ethernet MAC device driver
3111M: Kristoffer Glembo <kristoffer@gaisler.com>
3112L: netdev@vger.kernel.org
3113S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003114F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003115
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003116GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003117M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003118L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003119T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003122
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003123GSPCA GL860 SUBDRIVER
3124M: Olivier Lorin <o.lorin@laposte.net>
3125L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003126T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003127S: Maintained
3128F: drivers/media/video/gspca/gl860/
3129
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003130GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003131M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003132L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003133T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003135F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003136
3137GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003138M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003139L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003140T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003143
Brian Johnson261982f2009-07-19 15:58:56 -03003144GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003145M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003146L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003147T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003148S: Maintained
3149F: drivers/media/video/gspca/sn9c20x.c
3150
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003151GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003152M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003153L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003154T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003156F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003157
3158GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003159M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003160L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003161T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003163F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003164
Harry Wei71a6d0a2011-05-11 15:13:33 -07003165HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3166M: Frank Seidel <frank@f-seidel.de>
3167L: platform-driver-x86@vger.kernel.org
3168W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3169S: Maintained
3170F: drivers/platform/x86/hdaps.c
3171
3172HWPOISON MEMORY FAILURE HANDLING
3173M: Andi Kleen <andi@firstfloor.org>
3174L: linux-mm@kvack.org
3175T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3176S: Maintained
3177F: mm/memory-failure.c
3178F: mm/hwpoison-inject.c
3179
3180HYPERVISOR VIRTUAL CONSOLE DRIVER
3181L: linuxppc-dev@lists.ozlabs.org
3182S: Odd Fixes
3183F: drivers/tty/hvc/
3184
Jean Delvare5b543962005-08-15 19:51:02 +02003185HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003186M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003187M: Guenter Roeck <linux@roeck-us.net>
Jean Delvare5b543962005-08-15 19:51:02 +02003188L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08003189W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003190T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003191T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003192S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003193F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003194F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003195F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02003196
Michael Buesch844dd052006-06-26 00:24:59 -07003197HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003198M: Matt Mackall <mpm@selenic.com>
3199M: Herbert Xu <herbert@gondor.apana.org.au>
3200S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003201F: Documentation/hw_random.txt
3202F: drivers/char/hw_random/
3203F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07003204
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003205HARDWARE SPINLOCK CORE
3206M: Ohad Ben-Cohen <ohad@wizery.com>
3207S: Maintained
3208F: Documentation/hwspinlock.txt
3209F: drivers/hwspinlock/hwspinlock_*
3210F: include/linux/hwspinlock.h
3211
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003213L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003215F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003217HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003218M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003219L: iss_storagedev@hp.com
3220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003221F: Documentation/blockdev/cpqarray.txt
3222F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003223
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003224HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003225M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003226L: iss_storagedev@hp.com
3227S: Supported
3228F: Documentation/scsi/hpsa.txt
3229F: drivers/scsi/hpsa*.[ch]
3230F: include/linux/cciss*.h
3231
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003232HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003234L: iss_storagedev@hp.com
3235S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003236F: Documentation/blockdev/cciss.txt
3237F: drivers/block/cciss*
3238F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003239
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003241L: linux-fsdevel@vger.kernel.org
3242S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003243F: Documentation/filesystems/hfs.txt
3244F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
3246HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003247M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248L: linux-nvidia@lists.surfsouth.com
3249W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003253HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003254M: Pavel Machek <pavel@ucw.cz>
3255M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003256L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003258F: arch/x86/power/
3259F: drivers/base/power/
3260F: kernel/power/
3261F: include/linux/suspend.h
3262F: include/linux/freezer.h
3263F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003264F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003265
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003266HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003267M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003268L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003269T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: drivers/hid/
3272F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003273
Ingo Molnar38bed542007-02-22 09:09:34 +01003274HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003276T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003278F: Documentation/timers/
3279F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003280F: kernel/time/clockevents.c
3281F: kernel/time/tick*.*
3282F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003283F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003284F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003285
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003288S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003289F: drivers/net/hamradio/dmascc.c
3290F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003292HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003293M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003294W: http://www.highpoint-tech.com
3295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003296F: Documentation/scsi/hptiop.txt
3297F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003300M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301L: linux-hippi@sunsite.dk
3302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003303F: include/linux/hippidevice.h
3304F: include/linux/if_hippi.h
3305F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003306F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Jouni Malinenff1d2762005-05-12 22:54:16 -04003308HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003309M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003310L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003311L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003312W: http://hostap.epitest.fi/
3313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003315
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003316HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003317L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003318S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003319F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003320
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003321HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003323S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003324F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003325
Joe Perches7d2c86b2009-04-07 20:59:01 -07003326HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003327M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003329F: Documentation/timers/hpet.txt
3330F: drivers/char/hpet.c
3331F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003332
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003333HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003334M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003336F: arch/x86/kernel/hpet.c
3337F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003338
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003340M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003343F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Joe Perches7d2c86b2009-04-07 20:59:01 -07003345HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003347W: http://www.pharscape.org
3348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003349F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003350
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003351HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003352M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003353L: linux-input@vger.kernel.org
3354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003355F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003358M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003360F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003362Hyper-V CORE AND DRIVERS
3363M: K. Y. Srinivasan <kys@microsoft.com>
3364M: Haiyang Zhang <haiyangz@microsoft.com>
3365L: devel@linuxdriverproject.org
3366S: Maintained
3367F: drivers/hv/
3368F: drivers/hid/hid-hyperv.c
3369F: drivers/net/hyperv/
3370F: drivers/staging/hv/
3371
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003372I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003373M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003374L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003376F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003377
Jean Delvare5b543962005-08-15 19:51:02 +02003378I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003379M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3380M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003381M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003382L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003383W: http://i2c.wiki.kernel.org/
3384T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01003385T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003387F: Documentation/i2c/
3388F: drivers/i2c/
3389F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003390F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Till Harbaume8c76ee2007-05-01 23:26:35 +02003392I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003393M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003394L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003395W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003397F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003400M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003402F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
3404i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003406T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407S: Maintained
3408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003410M: Tony Luck <tony.luck@intel.com>
3411M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003413T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003415F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003418M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003420F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Santiago Leon9d348af2010-09-03 18:29:53 +00003422IBM Power Virtual Ethernet Device Driver
3423M: Santiago Leon <santil@linux.vnet.ibm.com>
3424L: netdev@vger.kernel.org
3425S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003426F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428IBM ServeRAID RAID DRIVER
3429P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003433F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003435ICH LPC AND GPIO DRIVER
3436M: Peter Tyser <ptyser@xes-inc.com>
3437S: Maintained
3438F: drivers/mfd/lpc_ich.c
3439F: drivers/gpio/gpio-ich.c
3440
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003441IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003444Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003445T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003447F: Documentation/ide/
3448F: drivers/ide/
3449F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Ike Panhc6cb8c132011-08-25 22:28:45 +08003451IDEAPAD LAPTOP EXTRAS DRIVER
3452M: Ike Panhc <ike.pan@canonical.com>
3453L: platform-driver-x86@vger.kernel.org
3454W: http://launchpad.net/ideapad-laptop
3455S: Maintained
3456F: drivers/platform/x86/ideapad-laptop.c
3457
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003458IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003459M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003460L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003462F: Documentation/cdrom/ide-cd
3463F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
Andy Henroid27471fd2008-10-09 11:45:22 -07003465IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003466M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003467L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003469F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003470
Sergey Lapin02cf2282009-06-08 12:18:50 +00003471IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003472M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003474L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003475W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003476T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003477S: Maintained
3478F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003479F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003480F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003481
Ameya Palande9545f862012-01-10 09:00:58 -08003482IIO SUBSYSTEM AND DRIVERS
3483M: Jonathan Cameron <jic23@cam.ac.uk>
3484L: linux-iio@vger.kernel.org
3485S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003486F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003487F: drivers/staging/iio/
3488
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003489IKANOS/ADI EAGLE ADSL USB DRIVER
3490M: Matthieu Castet <castet.matthieu@free.fr>
3491M: Stanislaw Gruszka <stf_xl@wp.pl>
3492S: Maintained
3493F: drivers/usb/atm/ueagle-atm.c
3494
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003495INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003496M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003498F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003501L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003502S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003503F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
3505INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003506M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003507M: Sean Hefty <sean.hefty@intel.com>
3508M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003509L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003510W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003511Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003512T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003514F: Documentation/infiniband/
3515F: drivers/infiniband/
3516F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517
Robert Lovec9f04f52005-07-15 12:21:07 -04003518INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003519M: John McCutchan <john@johnmccutchan.com>
3520M: Robert Love <rlove@rlove.org>
3521M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003523F: Documentation/filesystems/inotify.txt
3524F: fs/notify/inotify/
3525F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003526
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003527INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003528M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3529M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003530L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003531Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003532T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003534F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003535F: include/linux/input.h
3536F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003537
Henrik Rydberg3267a872010-06-24 19:10:40 -07003538INPUT MULTITOUCH (MT) PROTOCOL
3539M: Henrik Rydberg <rydberg@euromail.se>
3540L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003541T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003542S: Maintained
3543F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003544F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003545K: \b(ABS|SYN)_MT_
3546
Dave Jiang4ac13e12011-07-29 17:16:55 -07003547INTEL C600 SERIES SAS CONTROLLER DRIVER
3548M: Intel SCU Linux support <intel-linux-scu@intel.com>
3549M: Dan Williams <dan.j.williams@intel.com>
3550M: Dave Jiang <dave.jiang@intel.com>
3551M: Ed Nadolski <edmund.nadolski@intel.com>
3552L: linux-scsi@vger.kernel.org
3553T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/isci.git
3554S: Maintained
3555F: drivers/scsi/isci/
3556F: firmware/isci/
3557
Len Brown26717172010-03-08 14:07:30 -05003558INTEL IDLE DRIVER
3559M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003560L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003561T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003562S: Supported
3563F: drivers/idle/intel_idle.c
3564
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003565INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003566M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003567L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003569F: Documentation/fb/intelfb.txt
3570F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003571
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003573M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003574L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003576F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303578INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003579M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003580L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303581W: http://www.lesswatts.org/projects/acpi/
3582S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003583F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003586M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003588F: arch/x86/kernel/microcode_core.c
3589F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003591INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08003592M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003594F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003595
David Woodhouse6c8909b2008-10-18 16:12:17 +01003596INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003597M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003598L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003599T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003600S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003601F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003602F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003603
Dan Williamsb3e5f262007-08-07 10:26:35 -07003604INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003605M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07003606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003607F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003608
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003609INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003610M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003612F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3613F: arch/arm/mach-ixp4xx/include/mach/npe.h
3614F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3615F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003616F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003617F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003618
Michael Buesch844dd052006-06-26 00:24:59 -07003619INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003620M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003622F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003623
Jeff Kirsher0d164402010-10-05 01:15:17 +00003624INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3626M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3627M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003628M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3629M: Don Skidmore <donald.c.skidmore@intel.com>
3630M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003631M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003632M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003633M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003634L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003635W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003636T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3637T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003639F: Documentation/networking/e100.txt
3640F: Documentation/networking/e1000.txt
3641F: Documentation/networking/e1000e.txt
3642F: Documentation/networking/igb.txt
3643F: Documentation/networking/igbvf.txt
3644F: Documentation/networking/ixgb.txt
3645F: Documentation/networking/ixgbe.txt
3646F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003647F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
Len Brown6dccf9c2011-07-12 22:29:32 -04003649INTEL MRST PMU DRIVER
3650M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003651L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003652S: Supported
3653F: arch/x86/platform/mrst/pmu.*
3654
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003655INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3656M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003657L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003659F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003660F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003661F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003662
Shane Wang4bd96a72010-03-10 14:36:10 +08003663INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3664M: Joseph Cihula <joseph.cihula@intel.com>
3665M: Shane Wang <shane.wang@intel.com>
3666L: tboot-devel@lists.sourceforge.net
3667W: http://tboot.sourceforge.net
3668T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3669S: Supported
3670F: Documentation/intel_txt.txt
3671F: include/linux/tboot.h
3672F: arch/x86/kernel/tboot.c
3673
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003674INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003675M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003676M: linux-wimax@intel.com
3677L: wimax@linuxwimax.org
3678S: Supported
3679W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003680F: Documentation/wimax/README.i2400m
3681F: drivers/net/wimax/i2400m/
3682F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003683
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003684INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3685M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003686L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003687S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003688F: drivers/net/wireless/iwlegacy/
3689
Zhu Yib481de92007-09-25 17:54:57 -07003690INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003691M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003692M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003693M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003694L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003695W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003696T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003697S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003698F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003699
Tomas Winklerde8fe022012-05-09 16:39:02 +03003700INTEL MANAGEMENT ENGINE (mei)
3701M: Tomas Winkler <tomas.winkler@intel.com>
3702L: linux-kernel@vger.kernel.org
3703S: Supported
3704F: include/linux/mei.h
3705F: drivers/misc/mei/*
3706F: Documentation/mei/*
3707
Ralf Baechlecb109a02007-08-30 23:56:30 -07003708IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003709M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710L: linux-mips@linux-mips.org
3711S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003712F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Ralf Baechlecb109a02007-08-30 23:56:30 -07003714IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003715M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003716L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003717S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003718F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003719
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003720IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003721M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003723F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
Francois Romieu1202d6f2007-09-17 17:13:55 -07003725IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003726M: Francois Romieu <romieu@fr.zoreil.com>
3727M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003728L: netdev@vger.kernel.org
3729S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003730F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003731
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003732IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003733M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003734L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003736F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003737
Corey Minyard4409ebe2006-04-20 02:43:12 -07003738IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003740L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003741W: http://openipmi.sourceforge.net/
3742S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003743F: Documentation/IPMI.txt
3744F: drivers/char/ipmi/
3745F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003746
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003747IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003748M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003749L: linux-scsi@vger.kernel.org
3750W: http://www.adaptec.com/
3751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003752F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003753
3754IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003755M: Wensong Zhang <wensong@linux-vs.org>
3756M: Simon Horman <horms@verge.net.au>
3757M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003758L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003759L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003761F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07003762F: include/net/ip_vs.h
3763F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003764F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Randy Dunlape7839f22008-10-12 16:11:45 -07003766IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003767M: Jiri Kosina <jkosina@suse.cz>
3768M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01003769S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08003770F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003771
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003772IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003773M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003774L: netdev@vger.kernel.org
3775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003776F: include/linux/ipx.h
3777F: include/net/ipx.h
3778F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003779
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003781M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003782L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01003783L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003785S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003786T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003787F: Documentation/networking/irda.txt
3788F: drivers/net/irda/
3789F: include/net/irda/
3790F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02003792IRQ SUBSYSTEM
3793M: Thomas Gleixner <tglx@linutronix.de>
3794S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003795T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02003796F: kernel/irq/
3797
Grant Likely7ab3a832012-02-14 14:06:47 -07003798IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
3799M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3800M: Grant Likely <grant.likely@secretlab.ca>
3801T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
3802S: Maintained
3803F: Documentation/IRQ-domain.txt
3804F: include/linux/irqdomain.h
3805F: kernel/irq/irqdomain.c
3806
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003807ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003808M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003810F: Documentation/isapnp.txt
3811F: drivers/pnp/isapnp/
3812F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003813
Harry Wei71a6d0a2011-05-11 15:13:33 -07003814iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
3815M: Peter Jones <pjones@redhat.com>
3816M: Konrad Rzeszutek Wilk <konrad@kernel.org>
3817S: Maintained
3818F: drivers/firmware/iscsi_ibft*
3819
Mike Christie14816b1e2007-11-28 16:22:06 -08003820ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003821M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08003822L: open-iscsi@googlegroups.com
3823W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003824T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003826F: drivers/scsi/*iscsi*
3827F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003831L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003832L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003834T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003836F: Documentation/isdn/
3837F: drivers/isdn/
3838F: include/linux/isdn.h
3839F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
3841ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003842M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003843L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844W: http://www.melware.de
3845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003846F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Jean Delvared6248702010-03-05 22:17:20 +01003848IT87 HARDWARE MONITORING DRIVER
3849M: Jean Delvare <khali@linux-fr.org>
3850L: lm-sensors@lm-sensors.org
3851S: Maintained
3852F: Documentation/hwmon/it87
3853F: drivers/hwmon/it87.c
3854
Hans Verkuil91821ff2007-12-02 09:35:33 -03003855IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003856M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003857L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003858L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003859T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003860W: http://www.ivtvdriver.org
3861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003862F: Documentation/video4linux/*.ivtv
3863F: drivers/media/video/ivtv/
3864F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003865
Guenter Roeck4453d732010-08-09 17:21:08 -07003866JC42.4 TEMPERATURE SENSOR DRIVER
3867M: Guenter Roeck <linux@roeck-us.net>
3868L: lm-sensors@lm-sensors.org
3869S: Maintained
3870F: drivers/hwmon/jc42.c
3871F: Documentation/hwmon/jc42
3872
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003873JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06003874M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003875L: jfs-discussion@lists.sourceforge.net
3876W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003877T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003879F: Documentation/filesystems/jfs.txt
3880F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003881
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003882JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003884L: netdev@vger.kernel.org
3885S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07003886F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003887
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003889M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003890L: linux-mtd@lists.infradead.org
3891W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003893F: fs/jffs2/
3894F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Josh Triplettde456d32006-07-30 03:04:00 -07003896JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003897M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003898M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003899L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003900S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04003901F: fs/jbd/
3902F: include/linux/ext3_jbd.h
3903F: include/linux/jbd.h
3904
3905JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
3906M: "Theodore Ts'o" <tytso@mit.edu>
3907L: linux-ext4@vger.kernel.org
3908S: Maintained
3909F: fs/jbd2/
3910F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003911
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003912JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02003913M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003914L: linux-serial@vger.kernel.org
3915S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003916F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003917
Clemens Ladischaf399172011-01-10 16:32:54 +01003918K10TEMP HARDWARE MONITORING DRIVER
3919M: Clemens Ladisch <clemens@ladisch.de>
3920L: lm-sensors@lm-sensors.org
3921S: Maintained
3922F: Documentation/hwmon/k10temp
3923F: drivers/hwmon/k10temp.c
3924
Rudolf Marek4660cb32006-10-08 22:01:26 +02003925K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003926M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003927L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003929F: Documentation/hwmon/k8temp
3930F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
3932KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02003933M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003934L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02003935S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003936F: Documentation/kbuild/kconfig-language.txt
3937F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Vivek Goyalea6c2082006-05-20 14:59:55 -07003939KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003940M: Vivek Goyal <vgoyal@redhat.com>
3941M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003942L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003943W: http://lse.sourceforge.net/kdump/
3944S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003945F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003948M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08003949L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003951F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
Michal Marek70fb7ba2010-01-29 14:22:43 +01003953KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08003954M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07003955T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
3956T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003957L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003959F: Documentation/kbuild/
3960F: Makefile
3961F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01003962F: scripts/basic/
3963F: scripts/mk*
3964F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
3966KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003967L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07003968W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07003969S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003971KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003972M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08003973L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003975S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003976F: fs/nfsd/
3977F: include/linux/nfsd/
3978F: fs/lockd/
3979F: fs/nfs_common/
3980F: net/sunrpc/
3981F: include/linux/lockd/
3982F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
Avi Kivity426d62e2006-12-13 00:34:03 -08003984KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003985M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003986M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003987L: kvm@vger.kernel.org
3988W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003990F: Documentation/*/kvm.txt
3991F: arch/*/kvm/
3992F: arch/*/include/asm/kvm*
3993F: include/linux/kvm*
3994F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003995
Joerg Roedelad8003d2008-09-10 20:01:07 +02003996KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003997M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003998L: kvm@vger.kernel.org
3999W: http://kvm.qumranet.com
4000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004001F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004002F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004003
Hollis Blanchard513014b2008-04-16 23:28:08 -05004004KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004005M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004006L: kvm-ppc@vger.kernel.org
4007W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004009F: arch/powerpc/include/asm/kvm*
4010F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004011
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004012KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004014L: kvm-ia64@vger.kernel.org
4015W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004017F: Documentation/ia64/kvm.txt
4018F: arch/ia64/include/asm/kvm*
4019F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004020
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004021KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004023M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004024M: linux390@de.ibm.com
4025L: linux-s390@vger.kernel.org
4026W: http://www.ibm.com/developerworks/linux/linux390/
4027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004028F: Documentation/s390/kvm.txt
4029F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004030F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004031F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004032
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004033KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004034M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004035W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004036L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004038F: include/linux/kexec.h
4039F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004040
David Howellse9714612010-03-29 23:42:09 +01004041KEYS/KEYRINGS:
4042M: David Howells <dhowells@redhat.com>
4043L: keyrings@linux-nfs.org
4044S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004045F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004046F: include/linux/key.h
4047F: include/linux/key-type.h
4048F: include/keys/
4049F: security/keys/
4050
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004051KEYS-TRUSTED
4052M: David Safford <safford@watson.ibm.com>
4053M: Mimi Zohar <zohar@us.ibm.com>
4054L: linux-security-module@vger.kernel.org
4055L: keyrings@linux-nfs.org
4056S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004057F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004058F: include/keys/trusted-type.h
4059F: security/keys/trusted.c
4060F: security/keys/trusted.h
4061
4062KEYS-ENCRYPTED
4063M: Mimi Zohar <zohar@us.ibm.com>
4064M: David Safford <safford@watson.ibm.com>
4065L: linux-security-module@vger.kernel.org
4066L: keyrings@linux-nfs.org
4067S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004068F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004069F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004070F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004071
Jason Wessel5b778da2010-05-20 21:04:28 -05004072KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004073M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004074W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004075L: kgdb-bugreport@lists.sourceforge.net
4076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004077F: Documentation/DocBook/kgdb.tmpl
4078F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004079F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004080F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004081F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004082F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004083
Pekka Enberg456db8c2008-04-28 22:47:29 +03004084KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004085M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004086M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004087S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004088F: Documentation/kmemcheck.txt
4089F: arch/x86/include/asm/kmemcheck.h
4090F: arch/x86/mm/kmemcheck/
4091F: include/linux/kmemcheck.h
4092F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004093
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004094KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004095M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004096S: Maintained
4097F: Documentation/kmemleak.txt
4098F: include/linux/kmemleak.h
4099F: mm/kmemleak.c
4100F: mm/kmemleak-test.c
4101
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004102KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004103M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4104M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4105M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004106M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004108F: Documentation/kprobes.txt
4109F: include/linux/kprobes.h
4110F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004111
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004112KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004114W: http://miguelojeda.es/auxdisplay.htm
4115W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/auxdisplay/ks0108
4118F: drivers/auxdisplay/ks0108.c
4119F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004120
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004123S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004124F: Documentation/networking/lapb-module.txt
4125F: include/*/lapb.h
4126F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
4128LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130L: linux-scsi@vger.kernel.org
4131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004132F: Documentation/scsi/53c700.txt
4133F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Richard Purdie263de9b2006-05-15 09:44:16 -07004135LED SUBSYSTEM
Bryan Wu17ff3c12012-05-10 13:01:47 -07004136M: Bryan Wu <bryan.wu@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004138L: linux-leds@vger.kernel.org
4139T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004141F: drivers/leds/
4142F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004143
Jean Delvareb0461a42011-06-15 15:08:46 -07004144LEGACY EEPROM DRIVER
4145M: Jean Delvare <khali@linux-fr.org>
4146S: Maintained
4147F: Documentation/misc-devices/eeprom
4148F: drivers/misc/eeprom/eeprom.c
4149
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004151M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152L: legousb-devel@lists.sourceforge.net
4153W: http://legousb.sourceforge.net/
4154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004155F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
Rusty Russell568a17f2007-10-25 14:12:24 +10004157LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004158M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004159L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004160W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004161S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004162F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004163F: arch/x86/lguest/
4164F: drivers/lguest/
4165F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004166F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004167
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004169M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170W: http://www.ibm.com/linux/ltc/projects/ppc
4171S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004172F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004174LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004175M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4176M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004178L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004179Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004180T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004182F: Documentation/powerpc/
4183F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
4185LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004188L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004190F: arch/powerpc/platforms/powermac/
4191F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
Grant Likely77a76362008-07-12 12:11:43 -06004193LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004194M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004195L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004196T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004198F: arch/powerpc/platforms/512x/
4199F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
4201LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004202M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004203M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004205L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004206T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004208F: arch/powerpc/platforms/40x/
4209F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Grant Likely260c02a2007-10-02 12:15:34 +10004211LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004212M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004213W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004214L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004215T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004217F: arch/powerpc/*/*virtex*
4218F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
Tom Rinie93adf12005-07-26 12:49:53 -07004220LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004221M: Vitaly Bordug <vitb@kernel.crashing.org>
4222M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004223W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004224L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004225S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004226F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004227
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004229M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004230W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004231L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004232S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004233F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004234F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
Olof Johanssonab06ff32006-09-06 14:44:54 -05004236LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004237M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004238L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004239S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004240F: arch/powerpc/platforms/pasemi/
4241F: drivers/*/*pasemi*
4242F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004245M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004246L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247S: Supported
4248
Harry Weia23ce6d2011-02-11 16:52:20 +01004249LIS3LV02D ACCELEROMETER DRIVER
4250M: Eric Piel <eric.piel@tremplin-utc.net>
4251S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004252F: Documentation/misc-devices/lis3lv02d
4253F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004254F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004255
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004256LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004257M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004259F: include/linux/llc.h
4260F: include/net/llc*
4261F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004262
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004263LM73 HARDWARE MONITOR DRIVER
4264M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4265L: lm-sensors@lm-sensors.org
4266S: Maintained
4267F: drivers/hwmon/lm73.c
4268
Jean Delvare156e2d12011-07-25 21:46:11 +02004269LM78 HARDWARE MONITOR DRIVER
4270M: Jean Delvare <khali@linux-fr.org>
4271L: lm-sensors@lm-sensors.org
4272S: Maintained
4273F: Documentation/hwmon/lm78
4274F: drivers/hwmon/lm78.c
4275
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004278L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004280F: Documentation/hwmon/lm83
4281F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
4283LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004284M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004285L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004287F: Documentation/hwmon/lm90
4288F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004290LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004291M: Peter Zijlstra <peterz@infradead.org>
4292M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004293T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004295F: Documentation/lockdep*.txt
4296F: Documentation/lockstat.txt
4297F: include/linux/lockdep.h
4298F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004299
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004300LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004301M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004302L: linux-ntfs-dev@lists.sourceforge.net
4303W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004305F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004306F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Joern Engelef6ada32009-11-20 22:17:12 +01004308LogFS
4309M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304310M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004311L: logfs@logfs.org
4312W: logfs.org
4313S: Maintained
4314F: fs/logfs/
4315
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004316LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004317M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004318M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004319L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004320L: linux-scsi@vger.kernel.org
4321W: http://www.lsilogic.com/support
4322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004323F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004324
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004326M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327L: linux-scsi@vger.kernel.org
4328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004329F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Guenter Roecke5f5c992010-06-25 11:59:54 -07004331LTC4261 HARDWARE MONITOR DRIVER
4332M: Guenter Roeck <linux@roeck-us.net>
4333L: lm-sensors@lm-sensors.org
4334S: Maintained
4335F: Documentation/hwmon/ltc4261
4336F: drivers/hwmon/ltc4261.c
4337
Mike Frysinger81365c32008-10-29 14:01:12 -07004338LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004339M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004340M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004341M: Cyril Hrubis <chrubis@suse.cz>
4342M: Caspar Zhang <caspar@casparzhang.com>
4343M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004344L: ltp-list@lists.sourceforge.net (subscribers-only)
4345W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004346T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004347T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004348S: Maintained
4349
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004350M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004351M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004352L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004353L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4354W: http://www.linux-m32r.org/
4355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004356F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004357
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004359M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360L: linux-m68k@lists.linux-m68k.org
4361W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004362T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004364F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004365F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
4367M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004370L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004372F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
4374M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004375M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376W: http://www.tazenda.demon.co.uk/phil/linux-hp
4377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004378F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Jiri Benc64a327a2007-05-05 11:47:08 -07004380MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004381M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004382L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004383W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004384T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4385T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004387F: Documentation/networking/mac80211-injection.txt
4388F: include/net/mac80211.h
4389F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004390
Stefano Brivio1036d862007-12-23 04:46:27 +01004391MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Stefano Brivio <stefano.brivio@polimi.it>
4393M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004394L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004395W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004396T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4397T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004400
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004401MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004402M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004403L: netdev@vger.kernel.org
4404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: drivers/net/macvlan.c
4406F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004407
Michael Kerriskfaf16682005-07-31 22:34:47 -07004408MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004409M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004410W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004411L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004412S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004413
stephen hemminger44c14c12012-04-02 12:59:47 +00004414MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4415M: Mirko Lindner <mlindner@marvell.com>
4416M: Stephen Hemminger <shemminger@vyatta.com>
4417L: netdev@vger.kernel.org
4418S: Maintained
4419F: drivers/net/ethernet/marvell/sk*
4420
Stefano Brivio74cda162007-11-19 20:27:46 +01004421MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004422M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004423L: libertas-dev@lists.infradead.org
4424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004425F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004426
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004427MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004428M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004429L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004430S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004431F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004432F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
Bing Zhaofcad5842011-07-13 13:11:58 -07004434MARVELL MWIFIEX WIRELESS DRIVER
4435M: Bing Zhao <bzhao@marvell.com>
4436L: linux-wireless@vger.kernel.org
4437S: Maintained
4438F: drivers/net/wireless/mwifiex/
4439
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004440MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004441M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004442L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004443S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004444F: drivers/net/wireless/mwl8k.c
4445
Pierre Ossman2a695672009-03-16 19:52:26 +01004446MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004447M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004448S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004449F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004450
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004452L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004453S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004454F: drivers/video/matrox/matroxfb_*
4455F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
Guenter Roeckca462082012-06-01 23:28:23 -07004457MAX16065 HARDWARE MONITOR DRIVER
4458M: Guenter Roeck <linux@roeck-us.net>
4459L: lm-sensors@lm-sensors.org
4460S: Maintained
4461F: Documentation/hwmon/max16065
4462F: drivers/hwmon/max16065.c
4463
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004464MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004465M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004466L: lm-sensors@lm-sensors.org
4467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004468F: Documentation/hwmon/max6650
4469F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004470
Joe Perches127c49a2009-04-08 08:34:04 -07004471MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004473P: LinuxTV.org Project
4474L: linux-media@vger.kernel.org
4475W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004476Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004477T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004478S: Maintained
4479F: Documentation/dvb/
4480F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004481F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004482F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004483F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004484F: include/media/
4485F: include/linux/dvb/
4486F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004487
4488MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004489M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004490L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004491W: http://megaraid.lsilogic.com
4492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004493F: Documentation/scsi/megaraid.txt
4494F: drivers/scsi/megaraid.*
4495F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004496
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004497MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499W: http://www.linux-mm.org
4500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004501F: include/linux/mm.h
4502F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004503
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004504MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004505M: Johannes Weiner <hannes@cmpxchg.org>
4506M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004507M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004508M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004509L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004510L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004512F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004513F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004514
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004516M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004518W: http://www.linux-mtd.infradead.org/
4519Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004520T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004522F: drivers/mtd/
4523F: include/linux/mtd/
4524F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525
Michal Simekc6375b02009-03-27 14:25:52 +01004526MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004527M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004528L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004529W: http://www.monstr.eu/fdt/
4530T: git git://git.monstr.eu/linux-2.6-microblaze.git
4531S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004532F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533
4534MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07004535M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004537F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
4539MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004540M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004542W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004543T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004544Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004545S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004546F: Documentation/mips/
4547F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004552F: include/linux/module.h
4553F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
4555MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004557S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004558F: Documentation/video4linux/meye.txt
4559F: drivers/media/video/meye.*
4560F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
Pavel Pisac58ff042007-05-16 01:10:41 +02004562MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004563M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004564L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004566F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004567
Jiri Slabyb9705b62008-04-30 00:53:48 -07004568MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004569M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004571F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004572F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004573
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004574MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004575M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004576L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004579
Anisse Astier0f1006b2009-12-17 11:28:49 +01004580MSI WMI SUPPORT
4581M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004582L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004583S: Supported
4584F: drivers/platform/x86/msi-wmi.c
4585
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004586MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004587M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004588T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004590F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004591
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004592MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004593M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004594L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004595T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004597F: drivers/mmc/
4598F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004599
David Brownell15a05802007-08-08 09:12:54 -07004600MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004601S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004602F: drivers/mmc/host/mmc_spi.c
4603F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004604
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004606M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004608F: Documentation/sound/oss/MultiSound
4609F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
Jiri Slabyd7354102006-12-08 02:38:35 -08004611MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004612S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004613F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004614F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004615
Felipe Balbi550a7372008-07-24 12:27:36 +03004616MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004617M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004618L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004619T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004621F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004622
Brice Goglin2d3cf582008-05-17 12:45:36 +02004623MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004624M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004625L: netdev@vger.kernel.org
4626W: http://www.myri.com/scs/download-Myri10GE.html
4627S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004628F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004631S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004632F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
Daniel Mack23dc05a2011-05-18 11:28:38 +02004634NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4635M: Daniel Mack <zonque@gmail.com>
4636S: Maintained
4637L: alsa-devel@alsa-project.org
4638W: http://www.native-instruments.com
4639F: sound/usb/caiaq/
4640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004642M: Petr Vandrovec <petr@vandrovec.name>
4643S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004644F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
4646NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004647M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648L: linux-scsi@vger.kernel.org
4649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004650F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004652NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004654L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004655W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004656S: Supported
4657F: drivers/infiniband/hw/nes/
4658
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004659NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004660M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004661L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004663F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004664
Jon Masonb2f5a052010-07-15 08:47:27 +00004665NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004666M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004667L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004668S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004669F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004670F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004671F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004672
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674P: Harald Welte
4675P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004676M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004677M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004678L: netfilter-devel@vger.kernel.org
4679L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004680L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681W: http://www.netfilter.org/
4682W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004683T: git git://1984.lsi.us.es/nf
4684T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004686F: include/linux/netfilter*
4687F: include/linux/netfilter/
4688F: include/net/netfilter/
4689F: net/*/netfilter.c
4690F: net/*/netfilter/
4691F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692
Paul Moore4cc67732006-09-25 15:57:13 -07004693NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004694M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004695W: http://netlabel.sf.net
4696L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004697S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004698F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004699F: include/net/netlabel.h
4700F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004701
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004703M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004705W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004707F: include/linux/netrom.h
4708F: include/net/netrom.h
4709F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004711NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004712M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004714F: Documentation/blockdev/nbd.txt
4715F: drivers/block/nbd.c
4716F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717
Neil Horman6e436502009-10-05 03:56:55 +00004718NETWORK DROP MONITOR
4719M: Neil Horman <nhorman@tuxdriver.com>
4720L: netdev@vger.kernel.org
4721S: Maintained
4722W: https://fedorahosted.org/dropwatch/
4723F: net/core/drop_monitor.c
4724
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004726M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004727L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004728W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004729W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00004730T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
4731T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004733F: net/
4734F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004735F: include/linux/in.h
4736F: include/linux/net.h
4737F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
4739NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07004740M: "David S. Miller" <davem@davemloft.net>
4741M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07004742M: James Morris <jmorris@namei.org>
4743M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4744M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004745L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004746T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004748F: net/ipv4/
4749F: net/ipv6/
4750F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00004751F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752
James Morris10e2ff12007-08-25 14:41:28 -07004753NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00004754M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07004755L: netdev@vger.kernel.org
4756S: Maintained
4757
John W. Linville29f8f632006-01-18 14:52:48 -08004758NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004760L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004761Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07004762T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08004763S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004764F: net/mac80211/
4765F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004766F: net/wireless/
4767F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004768F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07004769F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004770F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004771
Joe Perches788873a2009-04-16 09:38:45 +00004772NETWORKING DRIVERS
4773L: netdev@vger.kernel.org
4774W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07004775T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
4776T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00004777S: Odd Fixes
4778F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004779F: include/linux/if_*
4780F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004781
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004782NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07004783M: Sony Chacko <sony.chacko@qlogic.com>
4784M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004785L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004786W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004787S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07004788F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004789
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03004790NFC SUBSYSTEM
4791M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
4792M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
4793M: Samuel Ortiz <sameo@linux.intel.com>
4794L: linux-wireless@vger.kernel.org
4795S: Maintained
4796F: net/nfc/
4797F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03004798F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03004799F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004801NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004802M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004803L: linux-nfs@vger.kernel.org
4804W: http://client.linux-nfs.org
4805T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004807F: fs/lockd/
4808F: fs/nfs/
4809F: fs/nfs_common/
4810F: net/sunrpc/
4811F: include/linux/lockd/
4812F: include/linux/nfs*
4813F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
4815NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004816M: Jan-Pascal van Best <janpascal@vanbest.org>
4817M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004818L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07004820F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004822NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004823M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004824L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004825W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09004826T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004828F: Documentation/filesystems/nilfs2.txt
4829F: fs/nilfs2/
4830F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004831
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004833M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004836F: Documentation/scsi/NinjaSCSI.txt
4837F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
4839NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: GOTO Masanori <gotom@debian.or.jp>
4841M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004844F: Documentation/scsi/NinjaSCSI.txt
4845F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004848M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004850W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00004851T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004853F: Documentation/filesystems/ntfs.txt
4854F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004856NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004857M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004858L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004860F: drivers/video/riva/
4861F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
Tony Lindgrenf5525782009-05-28 13:23:53 -07004863OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004864M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004865L: linux-omap@vger.kernel.org
4866W: http://www.muru.com/linux/omap/
4867W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004868Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02004869T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07004870S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004871F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01004872F: drivers/i2c/busses/i2c-omap.c
4873F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07004874
4875OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004876M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004877L: linux-omap@vger.kernel.org
4878S: Maintained
4879F: arch/arm/*omap*/*clock*
4880
4881OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08004882M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004883L: linux-omap@vger.kernel.org
4884S: Maintained
4885F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07004886F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004887
Paul Walmsley692ab1f2011-03-09 18:44:28 -07004888OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
4889M: Rajendra Nayak <rnayak@ti.com>
4890M: Paul Walmsley <paul@pwsan.com>
4891L: linux-omap@vger.kernel.org
4892S: Maintained
4893F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
4894F: arch/arm/mach-omap2/powerdomain44xx.c
4895F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
4896F: arch/arm/mach-omap2/clockdomain44xx.c
4897
Tony Lindgrenf5525782009-05-28 13:23:53 -07004898OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03004899M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03004900M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004901L: alsa-devel@alsa-project.org (subscribers-only)
4902L: linux-omap@vger.kernel.org
4903S: Maintained
4904F: sound/soc/omap/
4905
4906OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004907M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004908L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004909L: linux-omap@vger.kernel.org
4910S: Maintained
4911F: drivers/video/omap/
4912
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004913OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004914M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004915L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004916L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004917S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004918F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004919F: Documentation/arm/OMAP/DSS
4920
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03004921OMAP HARDWARE SPINLOCK SUPPORT
4922M: Ohad Ben-Cohen <ohad@wizery.com>
4923L: linux-omap@vger.kernel.org
4924S: Maintained
4925F: drivers/hwspinlock/omap_hwspinlock.c
4926F: arch/arm/mach-omap2/hwspinlock.c
4927
Tony Lindgrenf5525782009-05-28 13:23:53 -07004928OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004929M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004930L: linux-omap@vger.kernel.org
4931S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004932F: drivers/mmc/host/omap.c
4933
4934OMAP HS MMC SUPPORT
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004935L: linux-omap@vger.kernel.org
Madhusudhan Chikkature0500f10c2011-07-01 10:36:42 -07004936S: Orphan
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004937F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004938
4939OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004940M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004941S: Maintained
4942F: drivers/char/hw_random/omap-rng.c
4943
Paul Walmsleyf400c822010-12-06 19:08:54 -07004944OMAP HWMOD SUPPORT
4945M: Benoît Cousson <b-cousson@ti.com>
4946M: Paul Walmsley <paul@pwsan.com>
4947L: linux-omap@vger.kernel.org
4948S: Maintained
4949F: arch/arm/mach-omap2/omap_hwmod.c
4950F: arch/arm/plat-omap/include/plat/omap_hwmod.h
4951
4952OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
4953M: Benoît Cousson <b-cousson@ti.com>
4954L: linux-omap@vger.kernel.org
4955S: Maintained
4956F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
4957
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03004958OMAP IMAGE SIGNAL PROCESSOR (ISP)
4959M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4960L: linux-media@vger.kernel.org
4961S: Maintained
4962F: drivers/media/video/omap3isp/*
4963
Tony Lindgrenf5525782009-05-28 13:23:53 -07004964OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03004965M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004966L: linux-usb@vger.kernel.org
4967L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004968T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07004969S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07004970F: drivers/usb/*/*omap*
4971F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07004972
Kevin Hilman6d994712012-07-16 10:05:07 -07004973OMAP GPIO DRIVER
4974M: Santosh Shilimkar <santosh.shilimkar@ti.com>
4975M: Kevin Hilman <khilman@ti.com>
4976L: linux-omap@vger.kernel.org
4977S: Maintained
4978F: drivers/gpio/gpio-omap.c
4979
Bob Copeland0ad122d2008-07-25 19:45:18 -07004980OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004981M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004982L: linux-karma-devel@lists.sourceforge.net
4983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: Documentation/filesystems/omfs.txt
4985F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004986
Harald Weltec1986ee2005-11-13 16:06:29 -08004987OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004988M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004990F: drivers/char/pcmcia/cm4000_cs.c
4991F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004992
Harald Welte77c44ab2005-11-13 16:06:26 -08004993OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004994M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004996F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004997
Jonathan Corbet77d51402007-03-22 19:44:17 -03004998OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005000L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005001T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005003F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005004
Thomas Gleixner431bca72007-05-02 09:31:35 +02005005ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005006M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005007L: linux-mtd@lists.infradead.org
5008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005009F: drivers/mtd/onenand/
5010F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005011
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005013M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014L: osst-users@lists.sourceforge.net
5015L: linux-scsi@vger.kernel.org
5016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005017F: drivers/scsi/osst*
5018F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005020OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005021M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005022L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005024F: Documentation/i2c/busses/i2c-ocores
5025F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005026
Grant Likely860c44c2009-10-26 16:49:49 -07005027OPEN FIRMWARE AND FLATTENED DEVICE TREE
5028M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005029M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005030L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005031W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005032T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005033S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005034F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005035F: drivers/of
5036F: include/linux/of*.h
5037K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005038K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005039
Jonas Bonn19f9d392011-06-04 22:00:38 +03005040OPENRISC ARCHITECTURE
5041M: Jonas Bonn <jonas@southpole.se>
5042W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005043L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005044S: Maintained
5045T: git git://openrisc.net/~jonas/linux
5046F: arch/openrisc
5047
Jesse Grossccb13522011-10-25 19:26:31 -07005048OPENVSWITCH
5049M: Jesse Gross <jesse@nicira.com>
5050L: dev@openvswitch.org
5051W: http://openvswitch.org
5052T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5053S: Maintained
5054F: net/openvswitch/
5055
Clemens Ladischaf399172011-01-10 16:32:54 +01005056OPL4 DRIVER
5057M: Clemens Ladisch <clemens@ladisch.de>
5058L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5059T: git git://git.alsa-project.org/alsa-kernel.git
5060S: Maintained
5061F: sound/drivers/opl4/
5062
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005064M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065L: oprofile-list@lists.sf.net
5066S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005067F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005068F: arch/*/oprofile/
5069F: drivers/oprofile/
5070F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005072ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005073M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005074M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005075L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5076W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005077T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005079F: Documentation/filesystems/ocfs2.txt
5080F: Documentation/filesystems/dlmfs.txt
5081F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005082
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005084L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005085W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005086W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005087S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005088F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005090OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005091M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005092M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005093L: osd-dev@open-osd.org
5094W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005095T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005096S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005097F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005098F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005099F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005100
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005101P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005102M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005103L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005104W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005106F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005107
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005108PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005109M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005110L: netdev@vger.kernel.org
5111S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005112F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005113
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005114PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005115M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005116L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005118F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005119
Steffen Klassert48fc2672010-08-13 10:10:46 -04005120PADATA PARALLEL EXECUTION MECHANISM
5121M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005122L: linux-crypto@vger.kernel.org
5123S: Maintained
5124F: kernel/padata.c
5125F: include/linux/padata.h
5126F: Documentation/padata.txt
5127
Harald Welte709ee532008-09-23 17:46:57 +02005128PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005129M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005130L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005132F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005133
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005134PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005135M: David Howells <dhowells@redhat.com>
5136M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005137L: linux-am33-list@redhat.com (moderated for non-subscribers)
5138W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005140F: Documentation/mn10300/
5141F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005142
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005144L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005145S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005146F: drivers/parport/
5147F: include/linux/parport*.h
5148F: drivers/char/ppdev.c
5149F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005151PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005152M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005153M: Chris Wright <chrisw@sous-sol.org>
5154M: Alok Kataria <akataria@vmware.com>
5155M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005156L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005158F: Documentation/ia64/paravirt_ops.txt
5159F: arch/*/kernel/paravirt*
5160F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005161
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005164L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165W: http://www.torque.net/linux-pp.html
5166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005167F: Documentation/blockdev/paride.txt
5168F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
5170PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005171M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005172M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005173L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005175Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005176T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005178F: arch/parisc/
5179F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180
Jim Cromie1662d322006-10-06 00:43:59 -07005181PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005182M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005183L: lm-sensors@lm-sensors.org
5184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: Documentation/hwmon/pc87360
5186F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005187
5188PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005192
Jean Delvare1ad107f2010-08-14 21:09:00 +02005193PC87427 HARDWARE MONITORING DRIVER
5194M: Jean Delvare <khali@linux-fr.org>
5195L: lm-sensors@lm-sensors.org
5196S: Maintained
5197F: Documentation/hwmon/pc87427
5198F: drivers/hwmon/pc87427.c
5199
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005200PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005201M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005202S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005203F: drivers/leds/leds-pca9532.c
5204F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005205
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005206PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005207M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005208L: linux-i2c@vger.kernel.org
5209S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005210F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005211
Wolfram Sanga1867d32009-09-18 22:45:51 +02005212PCA9564/PCA9665 I2C BUS DRIVER
5213M: Wolfram Sang <w.sang@pengutronix.de>
5214L: linux-i2c@vger.kernel.org
5215S: Maintained
5216F: drivers/i2c/algos/i2c-algo-pca.c
5217F: drivers/i2c/busses/i2c-pca-*
5218F: include/linux/i2c-algo-pca.h
5219F: include/linux/i2c-pca-platform.h
5220
Khalid Aziz3971dae2012-04-12 12:49:13 -07005221PCDP - PRIMARY CONSOLE AND DEBUG PORT
5222M: Khalid Aziz <khalid.aziz@hp.com>
5223S: Maintained
5224F: drivers/firmware/pcdp.*
5225
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005226PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005227M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005228L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005230F: Documentation/PCI/pci-error-recovery.txt
5231F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005232
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005234M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005235L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005236Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005237T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005239F: Documentation/PCI/
5240F: drivers/pci/
5241F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005244P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005245L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005246W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005247T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005249F: Documentation/pcmcia/
5250F: drivers/pcmcia/
5251F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252
5253PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005254M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005255L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005257F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Steffen Klassert48fc2672010-08-13 10:10:46 -04005259PCRYPT PARALLEL CRYPTO ENGINE
5260M: Steffen Klassert <steffen.klassert@secunet.com>
5261L: linux-crypto@vger.kernel.org
5262S: Maintained
5263F: crypto/pcrypt.c
5264F: include/crypto/pcrypt.h
5265
Tejun Heoe72df0b2010-12-10 17:02:49 +01005266PER-CPU MEMORY ALLOCATOR
5267M: Tejun Heo <tj@kernel.org>
5268M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005269T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5270S: Maintained
5271F: include/linux/percpu*.h
5272F: mm/percpu*.c
5273F: arch/*/include/asm/percpu.h
5274
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005275PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005276M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005278F: include/linux/delayacct.h
5279F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005280
Ingo Molnar57c0c152009-09-21 12:20:38 +02005281PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005282M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5283M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005284M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005285M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005286T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005287S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005288F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005289F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005290F: arch/*/kernel/perf_event*.c
5291F: arch/*/kernel/*/perf_event*.c
5292F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005293F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005294F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005295F: arch/*/kernel/perf_callchain.c
5296F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005297
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005298PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005300L: linux-abi-devel@lists.sourceforge.net
5301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005302F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005303
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005304PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005305M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005306S: Supported
5307F: Documentation/networking/phonet.txt
5308F: include/linux/phonet.h
5309F: include/net/phonet/
5310F: net/phonet/
5311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005313M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314L: linux-mtd@lists.infradead.org
5315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005316F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005318PICOXCELL SUPPORT
5319M: Jamie Iles <jamie@jamieiles.com>
5320L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5321T: git git://github.com/jamieiles/linux-2.6-ji.git
5322S: Supported
5323F: arch/arm/mach-picoxcell
5324F: drivers/*/picoxcell*
5325F: drivers/*/*/picoxcell*
5326
Linus Walleij2744e8a2011-05-02 20:50:54 +02005327PIN CONTROL SUBSYSTEM
5328M: Linus Walleij <linus.walleij@linaro.org>
5329S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005330F: drivers/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005331
Viresh Kumardeda8282012-03-28 22:27:07 +05305332PIN CONTROLLER - ST SPEAR
Viresh Kumar10d89352012-06-20 12:53:02 -07005333M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305334L: spear-devel@list.st.com
5335L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5336W: http://www.st.com/spear
5337S: Maintained
5338F: driver/pinctrl/spear/
5339
Peter Osterlund249a6772005-09-27 21:45:30 -07005340PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005341M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005343F: drivers/block/pktcdvd.c
5344F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005345
GuanXuetaob31d8272011-01-16 00:35:49 +08005346PKUNITY SOC DRIVERS
5347M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5348W: http://mprc.pku.edu.cn/~guanxuetao/linux
5349S: Maintained
5350T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5351F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005352F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005353F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005354F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005355
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005356PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005357M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005358L: lm-sensors@lm-sensors.org
5359W: http://www.lm-sensors.org/
5360W: http://www.roeck-us.net/linux/drivers/
5361T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5362S: Maintained
5363F: Documentation/hwmon/pmbus
5364F: drivers/hwmon/pmbus/
5365F: include/linux/i2c/pmbus.h
5366
Anil Ravindranath89a36812009-08-25 17:35:18 -07005367PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005368M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005369L: linux-scsi@vger.kernel.org
5370W: http://www.pmc-sierra.com/
5371S: Supported
5372F: drivers/scsi/pmcraid.*
5373
jack wangdbf9bfe2009-10-14 16:19:21 +08005374PMC SIERRA PM8001 DRIVER
5375M: jack_wang@usish.com
5376M: lindar_liu@usish.com
5377L: linux-scsi@vger.kernel.org
5378S: Supported
5379F: drivers/scsi/pm8001/
5380
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005382M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005383T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005385F: fs/timerfd.c
5386F: include/linux/timer*
5387F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
Anton Vorontsov3be86142007-07-15 04:43:36 +04005389POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005390M: Anton Vorontsov <cbou@mail.ru>
5391M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005392T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005394F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005395F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005396
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005398M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005399M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005401F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402
Vitaly Wool999445d2007-01-04 13:07:03 +01005403PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005404M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005405L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005407F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005408
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005410M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411L: linux-ppp@vger.kernel.org
5412S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005413F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
5415PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005416M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005418F: net/atm/pppoatm.c
5419F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
5421PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005422M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005424F: drivers/net/ppp/pppoe.c
5425F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
James Chapmana6d23702007-06-27 15:53:17 -07005427PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005428M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005429S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005430F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005431F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005432
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005433PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005434M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005435W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5436L: linuxpps@ml.enneenne.com (subscribers-only)
5437S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005438F: Documentation/pps/
5439F: drivers/pps/
5440F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005441
Harry Wei71a6d0a2011-05-11 15:13:33 -07005442PPTP DRIVER
5443M: Dmitry Kozlov <xeb@mail.ru>
5444L: netdev@vger.kernel.org
5445S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005446F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005447W: http://sourceforge.net/projects/accel-pptp
5448
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005450M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451L: kpreempt-tech@lists.sourceforge.net
5452W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005454F: Documentation/preempt-locking.txt
5455F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
5457PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005458M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005459L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005460W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005461S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005462F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005464PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005465M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005466L: linux-ide@vger.kernel.org
5467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005468F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005469
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005470PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005471M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005472L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005473L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005474S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005475F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005476
Geoff Levandf58a9d12006-11-23 00:46:51 +01005477PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005478M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005479L: linuxppc-dev@lists.ozlabs.org
5480L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005482F: arch/powerpc/boot/ps3*
5483F: arch/powerpc/include/asm/lv1call.h
5484F: arch/powerpc/include/asm/ps3*.h
5485F: arch/powerpc/platforms/ps3/
5486F: drivers/*/ps3*
5487F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005488F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005489F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005490F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005491
Jim Pariscffb4add2009-01-06 11:32:10 +00005492PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005494L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005495S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005496F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005497
Richard Cochran7fbc4152012-03-10 01:55:53 +00005498PTP HARDWARE CLOCK SUPPORT
5499M: Richard Cochran <richardcochran@gmail.com>
5500S: Maintained
5501W: http://linuxptp.sourceforge.net/
5502F: Documentation/ABI/testing/sysfs-ptp
5503F: Documentation/ptp/*
5504F: drivers/net/gianfar_ptp.c
5505F: drivers/net/phy/dp83640*
5506F: drivers/ptp/*
5507F: include/linux/ptp_cl*
5508
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005509PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005510M: Roland McGrath <roland@redhat.com>
5511M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005512S: Maintained
5513F: include/asm-generic/syscall.h
5514F: include/linux/ptrace.h
5515F: include/linux/regset.h
5516F: include/linux/tracehook.h
5517F: kernel/ptrace.c
5518
Michael Krufky83202042006-07-03 00:24:18 -07005519PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005520M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005521L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005522L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005523W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005524T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005526F: Documentation/video4linux/README.pvrusb2
5527F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005528
Thierry Reding200efed2012-03-27 13:16:18 +02005529PWM SUBSYSTEM
5530M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005531L: linux-kernel@vger.kernel.org
5532S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005533W: http://gitorious.org/linux-pwm
5534T: git git://gitorious.org/linux-pwm/linux-pwm.git
5535F: Documentation/pwm.txt
5536F: Documentation/devicetree/bindings/pwm/
5537F: include/linux/pwm.h
5538F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005539F: drivers/pwm/
5540
Eric Miao30ec2612008-06-12 15:21:41 -07005541PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005542M: Eric Miao <eric.y.miao@gmail.com>
5543M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005544M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005545L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005546T: git git://github.com/hzhuang1/linux.git
5547T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005549F: arch/arm/mach-pxa/
5550F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005551F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005552F: drivers/usb/gadget/pxa2*
5553F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005554F: sound/arm/pxa*
5555F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005557MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005558M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005559M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005560L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005561T: git git://github.com/hzhuang1/linux.git
5562T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005563S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005564F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005565
Pierre Ossman272f1332007-05-14 21:25:26 +02005566PXA MMCI DRIVER
5567S: Orphan
5568
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005569PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005570M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005571L: rtc-linux@googlegroups.com
5572S: Maintained
5573
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005574QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005575M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005576L: linux-rdma@vger.kernel.org
5577S: Supported
5578F: drivers/infiniband/hw/qib/
5579
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005580QLOGIC QLA1280 SCSI DRIVER
5581M: Michael Reed <mdr@sgi.com>
5582L: linux-scsi@vger.kernel.org
5583S: Maintained
5584F: drivers/scsi/qla1280.[ch]
5585
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005587M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005588M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589L: linux-scsi@vger.kernel.org
5590S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005591F: Documentation/scsi/LICENSE.qla2xxx
5592F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593
Ravi Anand883c98f2010-04-28 11:45:49 +05305594QLOGIC QLA4XXX iSCSI DRIVER
5595M: Ravi Anand <ravi.anand@qlogic.com>
5596M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5597M: iscsi-driver@qlogic.com
5598L: linux-scsi@vger.kernel.org
5599S: Supported
5600F: drivers/scsi/qla4xxx/
5601
Ron Mercer5a4faa872006-07-25 00:40:21 -07005602QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005603M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005604M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005605M: linux-driver@qlogic.com
5606L: netdev@vger.kernel.org
5607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005608F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005609F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005610
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005611QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005612M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005613M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005614M: linux-driver@qlogic.com
5615L: netdev@vger.kernel.org
5616S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005617F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005618
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005619QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005620M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005621M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005622M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005623L: netdev@vger.kernel.org
5624S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005625F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005626
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005628M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629W: http://www.alarsen.net/linux/qnx4fs/
5630S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005631F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005632F: include/linux/qnx4_fs.h
5633F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634
Richard Kuo4f4567c2011-10-31 18:56:38 -05005635QUALCOMM HEXAGON ARCHITECTURE
5636M: Richard Kuo <rkuo@codeaurora.org>
5637L: linux-hexagon@vger.kernel.org
5638S: Supported
5639F: arch/hexagon/
5640
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005641RADOS BLOCK DEVICE (RBD)
5642F: include/linux/qnxtypes.h
5643M: Yehuda Sadeh <yehuda@hq.newdream.net>
5644M: Sage Weil <sage@newdream.net>
5645M: ceph-devel@vger.kernel.org
5646S: Supported
5647F: drivers/block/rbd.c
5648F: drivers/block/rbd_types.h
5649
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005651M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005652L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005654F: drivers/video/aty/radeon*
5655F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656
5657RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005658M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005659L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005661F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662
Randy Dunlape7839f22008-10-12 16:11:45 -07005663RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005664P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005665M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005666M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005667M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005668L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005669L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005670W: http://rt2x00.serialmonkey.com/
5671S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005672T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005673F: drivers/net/wireless/rt2x00/
5674
Nick Piggin9db55792008-02-08 04:19:49 -08005675RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005676M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005678F: Documentation/blockdev/ramdisk.txt
5679F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005680
Matt Mackall9e95ce22005-04-16 15:25:56 -07005681RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005682M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005684F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005685
Matt Porter394b7012005-11-07 01:00:15 -08005686RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005687M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08005688M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08005689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005690F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08005691
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005692RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005693L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04005694S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005695F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005696
5697RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005698M: Josh Triplett <josh@freedesktop.org>
5699M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005700S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07005701T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07005702F: Documentation/RCU/torture.txt
5703F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005704
Florian Fainellic1f766b2008-02-06 22:39:44 +01005705RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07005706M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01005707S: Maintained
5708
Florian Fainellidb17f392007-12-19 11:30:30 +01005709RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005710M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01005711L: netdev@vger.kernel.org
5712S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07005713F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01005714
Andy Grovera09ed662009-02-24 15:30:41 +00005715RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05005716M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00005717L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00005718S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005719F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00005720
Josh Triplett595182b2006-10-04 02:17:21 -07005721READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07005722M: Dipankar Sarma <dipankar@in.ibm.com>
5723M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07005724W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07005725S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07005726T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005727F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07005728X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005729F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005730F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005731X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07005732
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005733REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005734M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08005735L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005736Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005738F: Documentation/rtc.txt
5739F: drivers/rtc/
5740F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005741
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07005743L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005745F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746
Mark Brownb83a3132011-05-11 19:59:58 +02005747REGISTER MAP ABSTRACTION
5748M: Mark Brown <broonie@opensource.wolfsonmicro.com>
5749T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
5750S: Supported
5751F: drivers/base/regmap/
5752F: include/linux/regmap.h
5753
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02005754REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
5755M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03005756T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02005757S: Maintained
5758F: drivers/remoteproc/
5759F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07005760F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02005761
Ivo van Doorne08976452008-04-12 19:23:55 +02005762RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07005763M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02005764L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02005765W: http://wireless.kernel.org/
5766T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5767T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02005768S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08005769F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07005770F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02005771
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005772RICOH SMARTMEDIA/XD DRIVER
5773M: Maxim Levitsky <maximlevitsky@gmail.com>
5774S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07005775F: drivers/mtd/nand/r852.c
5776F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005777
Maxim Levitsky92634122011-03-25 01:56:59 -07005778RICOH R5C592 MEMORYSTICK DRIVER
5779M: Maxim Levitsky <maximlevitsky@gmail.com>
5780S: Maintained
5781F: drivers/memstick/host/r592.*
5782
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783ROCKETPORT DRIVER
5784P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785W: http://www.comtrol.com
5786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005787F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005788F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
5790ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005791M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005793W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: include/linux/rose.h
5796F: include/net/rose.h
5797F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798
Larry Finger59840482008-11-12 17:13:09 -06005799RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005800M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04005801L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005802W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07005803T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04005804S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005805F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04005806
Larry Finger59840482008-11-12 17:13:09 -06005807RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03005808M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005809M: Hin-Tak Leung <htl10@users.sourceforge.net>
5810M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005811L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005812W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07005813T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07005814S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005815F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06005816
Larry Finger3cf0c8a2010-12-16 09:13:21 -06005817RTL8192CE WIRELESS DRIVER
5818M: Larry Finger <Larry.Finger@lwfinger.net>
5819M: Chaoming Li <chaoming_li@realsil.com.cn>
5820L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005821W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06005822T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5823S: Maintained
5824F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06005825F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02005826
5827S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005828M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005829L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005831F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005832
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833S390
Joe Perches8b58be82009-07-29 15:04:30 -07005834M: Martin Schwidefsky <schwidefsky@de.ibm.com>
5835M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005837L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005838W: http://www.ibm.com/developerworks/linux/linux390/
5839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005840F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01005841F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08005842F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02005843F: Documentation/s390/
5844F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08005845
5846S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005847M: Ursula Braun <ursula.braun@de.ibm.com>
5848M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005849M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005850L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005851W: http://www.ibm.com/developerworks/linux/linux390/
5852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005853F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005854
Felix Beckfeed9b62009-03-26 15:24:23 +01005855S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01005856M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01005857M: linux390@de.ibm.com
5858L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01005859W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01005860S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005861F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005862
Heiko Carstens5238da42006-02-11 17:56:01 -08005863S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01005864M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005865M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005866L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005867W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005869F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870
Ursula Braundd96df22007-09-19 13:09:02 +02005871S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005872M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02005873M: linux390@de.ibm.com
5874L: linux-s390@vger.kernel.org
5875W: http://www.ibm.com/developerworks/linux/linux390/
5876S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005877F: drivers/s390/net/*iucv*
5878F: include/net/iucv/
5879F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005880
Ben Dooks4dde7f72008-06-30 22:40:38 +01005881S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07005882M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005884S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005885F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005886
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005888M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005889L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005890T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891W: http://www.mihu.de/linux/saa7146
5892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005893F: drivers/media/common/saa7146*
5894F: drivers/media/video/*7146*
5895F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896
Corentin Chary92304a42011-12-05 12:38:35 -05005897SAMSUNG LAPTOP DRIVER
5898M: Corentin Chary <corentincj@iksaif.net>
5899L: platform-driver-x86@vger.kernel.org
5900S: Maintained
5901F: drivers/platform/x86/samsung-laptop.c
5902
Mark Brown4a109cc2010-09-24 10:50:46 +01005903SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09005904M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01005905L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5906S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00005907F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01005908
Jingoo Han0d89a282011-12-19 11:09:35 +09005909SAMSUNG FRAMEBUFFER DRIVER
5910M: Jingoo Han <jg1.han@samsung.com>
5911L: linux-fbdev@vger.kernel.org
5912S: Maintained
5913F: drivers/video/s3c-fb.c
5914
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09005915SAMSUNG MULTIFUNCTION DEVICE DRIVERS
5916M: Sangbeom Kim <sbkim73@samsung.com>
5917L: linux-kernel@vger.kernel.org
5918S: Supported
5919F: drivers/mfd/sec*.c
5920F: drivers/regulator/s2m*.c
5921F: drivers/regulator/s5m*.c
5922F: drivers/rtc/rtc-sec.c
5923F: include/linux/mfd/samsung/
5924
Alan Coxca749e22011-03-18 13:56:14 +00005925SERIAL DRIVERS
5926M: Alan Cox <alan@linux.intel.com>
5927L: linux-serial@vger.kernel.org
5928S: Maintained
5929F: drivers/tty/serial
5930
Viresh Kumaraecb7b62011-05-24 14:04:09 +05305931SYNOPSYS DESIGNWARE DMAC DRIVER
Viresh Kumar10d89352012-06-20 12:53:02 -07005932M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05305933S: Maintained
5934F: include/linux/dw_dmac.h
5935F: drivers/dma/dw_dmac_regs.h
5936F: drivers/dma/dw_dmac.c
5937
Thomas Gleixner88606e82010-12-14 21:37:13 +01005938TIMEKEEPING, NTP
5939M: John Stultz <johnstul@us.ibm.com>
5940M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005941T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01005942S: Supported
5943F: include/linux/clocksource.h
5944F: include/linux/time.h
5945F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01005946F: kernel/time/clocksource.c
5947F: kernel/time/time*.c
5948F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02005949F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01005950
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005951TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03005952M: Huang Shijie <shijie8@gmail.com>
5953M: Kang Yong <kangyong@telegent.com>
5954M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005955S: Supported
5956F: drivers/media/video/tlg2300
5957
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005959M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005961F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
5963SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01005964M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005965M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005966T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09005968F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07005969F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
Chen Liqin6bcf6732009-06-13 15:24:33 +08005971SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07005972M: Chen Liqin <liqin.chen@sunplusct.com>
5973M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08005974W: http://www.sunplusct.com
5975S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07005976F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08005977
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005979M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980L: linux-scsi@vger.kernel.org
5981W: http://www.kernel.dk
5982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005983F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984
Roland Dreierfb50a832010-10-07 09:54:53 -07005985SCSI RDMA PROTOCOL (SRP) INITIATOR
5986M: David Dillow <dillowda@ornl.gov>
5987L: linux-rdma@vger.kernel.org
5988S: Supported
5989W: http://www.openfabrics.org
5990Q: http://patchwork.kernel.org/project/linux-rdma/list/
5991T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
5992F: drivers/infiniband/ulp/srp/
5993F: include/scsi/srp.h
5994
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997L: linux-scsi@vger.kernel.org
5998W: http://www.torque.net/sg
5999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006000F: drivers/scsi/sg.c
6001F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
6003SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006004M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006006T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6007T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6008T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006010F: drivers/scsi/
6011F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012
6013SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006014M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015L: linux-scsi@vger.kernel.org
6016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006017F: Documentation/scsi/st.txt
6018F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
6020SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006021M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006022M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006023L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006024W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006026F: Documentation/networking/sctp.txt
6027F: include/linux/sctp.h
6028F: include/net/sctp/
6029F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030
6031SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006032M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006033S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006034F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006035F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006036F: drivers/watchdog/scx200_wdt.c
6037F: drivers/i2c/busses/scx200*
6038F: drivers/mtd/maps/scx200_docflash.c
6039F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006040
6041SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006042M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006044F: drivers/char/scx200_gpio.c
6045F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006046
6047SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006048M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006050F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051
Sascha Sommer6a369132008-07-15 14:21:29 +02006052SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006053M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006054L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006056F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006057
Randy Dunlape7839f22008-10-12 16:11:45 -07006058SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006059M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006060L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006061T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6062S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006063F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006064F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006065
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006066SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006068L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006069L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006071F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072
Ben Dooks0d1bb412009-06-14 13:52:37 +01006073SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006074M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006075L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006076S: Maintained
6077F: drivers/mmc/host/sdhci-s3c.c
6078
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006079SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Viresh Kumar10d89352012-06-20 12:53:02 -07006080M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006081L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006082L: linux-mmc@vger.kernel.org
6083S: Maintained
6084F: drivers/mmc/host/sdhci-spear.c
6085
James Morris8711cca2008-12-04 03:19:45 +11006086SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006087M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006088L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006089T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006090W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006091S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006092F: security/
James Morris8711cca2008-12-04 03:19:45 +11006093
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006095M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096S: Supported
6097
6098SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006099M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006100M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006101M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006102L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006103W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006104T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006106F: include/linux/selinux*
6107F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006108F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109
John Johansenc1c124e2010-07-29 14:48:09 -07006110APPARMOR SECURITY MODULE
6111M: John Johansen <john.johansen@canonical.com>
6112L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6113W: apparmor.wiki.kernel.org
6114T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6115S: Supported
6116F: security/apparmor/
6117
Jiri Slabycef2cf02007-05-08 00:31:45 -07006118SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006119M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006121F: drivers/misc/phantom.c
6122F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006123
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006124SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006125M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006127T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006129F: drivers/ata/
6130F: include/linux/ata.h
6131F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306133SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006134M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006135L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006136W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006137S: Supported
6138F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306139
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006140SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006141M: Sathya Perla <sathya.perla@emulex.com>
6142M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6143M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006144L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006145W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006146S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006147F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006148
Ben Hutchings8ceee662008-04-27 12:55:59 +01006149SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006150M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006151M: Ben Hutchings <bhutchings@solarflare.com>
6152L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006153S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006154F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006155
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006156SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006157M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006159F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006160
6161SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006162M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006163L: linux-ia64@vger.kernel.org
6164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006165F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006166F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006167F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006168
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006170M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171L: linux-visws-devel@lists.sf.net
6172W: http://linux-visws.sf.net
6173S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006174F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
Jack Steiner75312612008-08-15 00:40:42 -07006176SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006177M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006179F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006180
Len Brown6349d992009-08-14 15:07:14 -04006181SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006182M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006183L: sfi-devel@simplefirmware.org
6184W: http://simplefirmware.org/
6185T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006186S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006187F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006188F: drivers/sfi/
6189F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006190
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191SIMTEC EB110ATX (Chalice CATS)
6192P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006193P: Vincent Sanders <vince@simtec.co.uk>
6194M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195W: http://www.simtec.co.uk/products/EB110ATX/
6196S: Supported
6197
6198SIMTEC EB2410ITX (BAST)
6199P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006200P: Vincent Sanders <vince@simtec.co.uk>
6201M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202W: http://www.simtec.co.uk/products/EB2410ITX/
6203S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006204F: arch/arm/mach-s3c2410/mach-bast.c
6205F: arch/arm/mach-s3c2410/bast-ide.c
6206F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006208TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006209M: Sekhar Nori <nsekhar@ti.com>
6210M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306211L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306212T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006213Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006214S: Supported
6215F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006216F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006217
Francois Romieu92aab3c2005-07-30 13:11:18 +02006218SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006219M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006220L: netdev@vger.kernel.org
6221S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006222F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006223
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006225M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006227L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006229F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006231SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006232M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006233L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006235F: Documentation/i2c/busses/i2c-sis96x
6236F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006237
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006239M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006242F: Documentation/fb/sisfb.txt
6243F: drivers/video/sis/
6244F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245
6246SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006247M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248W: http://www.winischhofer.at/linuxsisusbvga.shtml
6249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006250F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006252SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006253M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006254M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006255M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006256L: linux-mm@kvack.org
6257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006258F: include/linux/sl?b*.h
6259F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006260
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006261SLEEPABLE READ-COPY UPDATE (SRCU)
6262M: Lai Jiangshan <laijs@cn.fujitsu.com>
6263M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6264W: http://www.rdrop.com/users/paulmck/RCU/
6265S: Supported
6266T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6267F: include/linux/srcu*
6268F: kernel/srcu*
6269
Casey Schaufler66372842012-05-23 18:34:52 -07006270SMACK SECURITY MODULE
6271M: Casey Schaufler <casey@schaufler-ca.com>
6272L: linux-security-module@vger.kernel.org
6273W: http://schaufler-ca.com
6274T: git git://git.gitorious.org/smack-next/kernel.git
6275S: Maintained
6276F: Documentation/security/Smack.txt
6277F: security/smack/
6278
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006280M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006281S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006282F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006284SMM665 HARDWARE MONITOR DRIVER
6285M: Guenter Roeck <linux@roeck-us.net>
6286L: lm-sensors@lm-sensors.org
6287S: Maintained
6288F: Documentation/hwmon/smm665
6289F: drivers/hwmon/smm665.c
6290
Steve Glendinning9df73052010-08-14 21:08:54 +02006291SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006292M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006293L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006294S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006295F: Documentation/hwmon/emc2103
6296F: drivers/hwmon/emc2103.c
6297
Hans de Goedea98d5062011-03-21 17:59:36 +01006298SMSC SCH5627 HARDWARE MONITOR DRIVER
6299M: Hans de Goede <hdegoede@redhat.com>
6300L: lm-sensors@lm-sensors.org
6301S: Supported
6302F: Documentation/hwmon/sch5627
6303F: drivers/hwmon/sch5627.c
6304
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006305SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006306M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006307L: lm-sensors@lm-sensors.org
6308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006309F: Documentation/hwmon/smsc47b397
6310F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006311
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006312SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006313M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006314L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006316F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006317F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006318
Steve Glendinning2cb37722008-12-11 20:54:30 -08006319SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006320M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006321L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006322S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006323F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006324
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006325SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006326M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006327L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006328S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006329F: drivers/video/smscufx.c
6330
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006331SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006332M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006333L: linux-altix@sgi.com
6334L: linux-ia64@vger.kernel.org
6335W: http://www.sgi.com/altix
6336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006337F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006338
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006339SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006340M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006341L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006342T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006344F: include/media/v4l2*
6345F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006346
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006347SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006348M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006350F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006351
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006353M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006356F: drivers/md/
6357F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006361L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006363F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364
Michael Buesch61e115a2007-09-18 15:12:50 -04006365SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006366M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006367L: netdev@vger.kernel.org
6368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006369F: drivers/ssb/
6370F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006371
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006373M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006374L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006375W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006377F: Documentation/laptops/sony-laptop.txt
6378F: drivers/char/sonypi.c
6379F: drivers/platform/x86/sony-laptop.c
6380F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381
Alex Dubovbaf85322008-02-09 10:20:54 -08006382SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006383M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006384W: http://tifmxx.berlios.de/
6385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006387
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006389M: Jaroslav Kysela <perex@perex.cz>
6390M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006391L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006392W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006393T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006394T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006396F: Documentation/sound/
6397F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006398F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399
Mark Brownbd903bd2008-11-19 19:16:05 +00006400SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006401M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006402M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006403T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006404L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006405W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006407F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006408F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006409
Sam Ravnborg473321f2009-01-04 15:47:49 -08006410SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006411M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006413Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006414T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6415T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006417F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006418F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419
David S. Miller6404fcc2010-03-16 01:00:17 -07006420SPARC SERIAL DRIVERS
6421M: "David S. Miller" <davem@davemloft.net>
6422L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006423T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6424T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006425S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006426F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006427F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006428F: drivers/tty/serial/sunhv.c
6429F: drivers/tty/serial/sunsab.c
6430F: drivers/tty/serial/sunsab.h
6431F: drivers/tty/serial/sunsu.c
6432F: drivers/tty/serial/sunzilog.c
6433F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006434
Christopher Li389325b2012-04-05 14:25:14 -07006435SPARSE CHECKER
6436M: "Christopher Li" <sparse@chrisli.org>
6437L: linux-sparse@vger.kernel.org
6438W: https://sparse.wiki.kernel.org/
6439T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6440T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6441S: Maintained
6442F: include/linux/compiler.h
6443
viresh kumarfc0c1952010-04-01 12:31:21 +01006444SPEAR PLATFORM SUPPORT
Viresh Kumar10d89352012-06-20 12:53:02 -07006445M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306446M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006447L: spear-devel@list.st.com
6448L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006449W: http://www.st.com/spear
6450S: Maintained
6451F: arch/arm/plat-spear/
6452
Viresh Kumar71e09a92012-04-20 22:39:48 +05306453SPEAR13XX MACHINE SUPPORT
Viresh Kumar10d89352012-06-20 12:53:02 -07006454M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306455M: Shiraz Hashim <shiraz.hashim@st.com>
6456L: spear-devel@list.st.com
6457L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6458W: http://www.st.com/spear
6459S: Maintained
6460F: arch/arm/mach-spear13xx/
6461
viresh kumarfc0c1952010-04-01 12:31:21 +01006462SPEAR3XX MACHINE SUPPORT
Viresh Kumar10d89352012-06-20 12:53:02 -07006463M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306464M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006465L: spear-devel@list.st.com
6466L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006467W: http://www.st.com/spear
6468S: Maintained
6469F: arch/arm/mach-spear3xx/
6470
6471SPEAR6XX MACHINE SUPPORT
6472M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306473M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumar10d89352012-06-20 12:53:02 -07006474M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006475L: spear-devel@list.st.com
6476L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006477W: http://www.st.com/spear
6478S: Maintained
6479F: arch/arm/mach-spear6xx/
6480
6481SPEAR CLOCK FRAMEWORK SUPPORT
Viresh Kumar10d89352012-06-20 12:53:02 -07006482M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006483L: spear-devel@list.st.com
6484L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006485W: http://www.st.com/spear
6486S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306487F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006488
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006489SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006490M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006491L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006492Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006493T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006495F: Documentation/spi/
6496F: drivers/spi/
6497F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006498
Jim Lewis2752e402006-09-29 02:01:19 -07006499SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6501M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006502L: netdev@vger.kernel.org
6503S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006504F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006505F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006507SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006508M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006509L: linuxppc-dev@lists.ozlabs.org
6510L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006511W: http://www.ibm.com/developerworks/power/cell/
6512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006513F: Documentation/filesystems/spufs.txt
6514F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006515
Phillip Lougherfc555842009-01-05 08:46:29 +00006516SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006517M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006518L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6519W: http://squashfs.org.uk
6520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006521F: Documentation/filesystems/squashfs.txt
6522F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006523
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006525M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006527F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528
Linus Torvalds26e9a392008-10-17 09:50:12 -07006529STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006530M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006531L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006532S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006533
Linus Torvalds26e9a392008-10-17 09:50:12 -07006534STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006535M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006536T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006537L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006539F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006540
Joe Perchesc8c8b102011-07-05 09:42:12 -07006541STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6542M: Henk de Groot <pe1dnn@amsat.org>
6543S: Odd Fixes
6544F: drivers/staging/wlags49_h2/
6545F: drivers/staging/wlags49_h25/
6546
Joe Perchesc9555152011-07-05 09:42:01 -07006547STAGING - ASUS OLED
6548M: Jakub Schmidtke <sjakub@gmail.com>
6549S: Odd Fixes
6550F: drivers/staging/asus_oled/
6551
Joe Perchesebd3d012011-07-05 09:42:02 -07006552STAGING - COMEDI
6553M: Ian Abbott <abbotti@mev.co.uk>
6554M: Mori Hess <fmhess@users.sourceforge.net>
6555S: Odd Fixes
6556F: drivers/staging/comedi/
6557
Joe Perches8ca572c2011-07-05 09:42:03 -07006558STAGING - CRYSTAL HD VIDEO DECODER
6559M: Naren Sankar <nsankar@broadcom.com>
6560M: Jarod Wilson <jarod@wilsonet.com>
6561M: Scott Davilla <davilla@4pi.com>
6562M: Manu Abraham <abraham.manu@gmail.com>
6563S: Odd Fixes
6564F: drivers/staging/crystalhd/
6565
Joe Perches0f16ffc2011-07-05 09:42:04 -07006566STAGING - ECHO CANCELLER
6567M: Steve Underwood <steveu@coppice.org>
6568M: David Rowe <david@rowetel.com>
6569S: Odd Fixes
6570F: drivers/staging/echo/
6571
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006572STAGING - ET131X NETWORK DRIVER
6573M: Mark Einon <mark.einon@gmail.com>
6574S: Odd Fixes
6575F: drivers/staging/et131x/
6576
Joe Perchesa0138162011-07-05 15:21:34 -07006577STAGING - FLARION FT1000 DRIVERS
6578M: Marek Belisko <marek.belisko@gmail.com>
6579S: Odd Fixes
6580F: drivers/staging/ft1000/
6581
Joe Perchesec3fab92011-07-05 09:42:05 -07006582STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6583M: David Täht <d@teklibre.com>
6584S: Odd Fixes
6585F: drivers/staging/frontier/
6586
Joe Perches6c1bb422011-07-05 09:42:07 -07006587STAGING - INDUSTRIAL IO
6588M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006589L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006590S: Odd Fixes
6591F: drivers/staging/iio/
6592
Joe Perchesa0138162011-07-05 15:21:34 -07006593STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6594M: Jarod Wilson <jarod@wilsonet.com>
6595W: http://www.lirc.org/
6596S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006597F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006598
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006599STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006600M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006601M: Marc Dietrich <marvin24@gmx.de>
6602L: ac100@lists.launchpad.net (moderated for non-subscribers)
6603S: Maintained
6604F: drivers/staging/nvec/
6605
Joe Perchesa0138162011-07-05 15:21:34 -07006606STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6607M: Andres Salomon <dilinger@queued.net>
6608M: Chris Ball <cjb@laptop.org>
6609M: Jon Nettleton <jon.nettleton@gmail.com>
6610W: http://wiki.laptop.org/go/DCON
6611S: Odd Fixes
6612F: drivers/staging/olpc_dcon/
6613
Chris Kelly94cfdd12012-03-14 10:55:42 +00006614STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006615M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006616M: Chris Kelly <ckelly@ozmodevices.com>
6617S: Maintained
6618F: drivers/staging/ozwpan/
6619
Joe Perchesa0138162011-07-05 15:21:34 -07006620STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006621M: Willy Tarreau <willy@meta-x.org>
6622S: Odd Fixes
6623F: drivers/staging/panel/
6624
Joe Perchesa0138162011-07-05 15:21:34 -07006625STAGING - REALTEK RTL8712U DRIVERS
6626M: Larry Finger <Larry.Finger@lwfinger.net>
6627M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6628S: Odd Fixes
6629F: drivers/staging/rtl8712/
6630
Joe Perches9629fa82011-07-05 09:42:09 -07006631STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6632M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6633S: Odd Fixes
6634F: drivers/staging/sm7xx/
6635
Joe Perchesa0138162011-07-05 15:21:34 -07006636STAGING - SOFTLOGIC 6x10 MPEG CODEC
6637M: Ben Collins <bcollins@bluecherry.net>
6638S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006639F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006640
6641STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6642M: William Hubbs <w.d.hubbs@gmail.com>
6643M: Chris Brannon <chris@the-brannons.com>
6644M: Kirk Reiser <kirk@braille.uwo.ca>
6645M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6646L: speakup@braille.uwo.ca
6647W: http://www.linux-speakup.org/
6648S: Odd Fixes
6649F: drivers/staging/speakup/
6650
6651STAGING - TI DSP BRIDGE DRIVERS
6652M: Omar Ramirez Luna <omar.ramirez@ti.com>
6653S: Odd Fixes
6654F: drivers/staging/tidspbridge/
6655
Joe Perchesa0138162011-07-05 15:21:34 -07006656STAGING - USB ENE SM/MS CARD READER DRIVER
6657M: Al Cho <acho@novell.com>
6658S: Odd Fixes
6659F: drivers/staging/keucr/
6660
Joe Perchesb3e871c2011-07-05 09:42:10 -07006661STAGING - VIA VT665X DRIVERS
6662M: Forest Bond <forest@alittletooquiet.net>
6663S: Odd Fixes
6664F: drivers/staging/vt665?/
6665
Joe Perches81a9a522011-07-05 09:42:11 -07006666STAGING - WINBOND IS89C35 WLAN USB DRIVER
6667M: Pavel Machek <pavel@ucw.cz>
6668S: Odd Fixes
6669F: drivers/staging/winbond/
6670
Joe Perches709bcb02011-07-05 09:42:13 -07006671STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02006672M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07006673S: Odd Fixes
6674F: drivers/staging/xgifb/
6675
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006677M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07006678S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07006679F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006681SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07006682M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006683W: http://sammy.net/sun3/
6684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006685F: arch/m68k/kernel/*sun3*
6686F: arch/m68k/sun3*/
6687F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07006688F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006689
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006690SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07006691M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006692L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006694Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09006695T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09006696S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09006697F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07006698F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09006699F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006701SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07006702M: Len Brown <len.brown@intel.com>
6703M: Pavel Machek <pavel@ucw.cz>
6704M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02006705L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006707F: Documentation/power/
6708F: arch/x86/kernel/acpi/
6709F: drivers/base/power/
6710F: kernel/power/
6711F: include/linux/suspend.h
6712F: include/linux/freezer.h
6713F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714
6715SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006716M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717L: linux-video@atrey.karlin.mff.cuni.cz
6718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006719F: Documentation/svga.txt
6720F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721
6722SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006723M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006725F: Documentation/filesystems/sysv-fs.txt
6726F: fs/sysv/
6727F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006729TARGET SUBSYSTEM
6730M: Nicholas A. Bellinger <nab@linux-iscsi.org>
6731L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00006732L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006733L: http://groups.google.com/group/linux-iscsi-target-dev
6734W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07006735T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006736S: Supported
6737F: drivers/target/
6738F: include/target/
6739F: Documentation/target/
6740
Alan Cox4e688522008-04-30 00:52:11 -07006741TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07006742M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07006743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006744F: Documentation/accounting/taskstats*
6745F: include/linux/taskstats*
6746F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07006747
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006748TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00006749M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006750L: netdev@vger.kernel.org
6751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006752F: include/linux/pkt_cls.h
6753F: include/net/pkt_cls.h
6754F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07006755
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006756TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006757M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
6758M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006759W: http://tcp-lp-mod.sourceforge.net/
6760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006761F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006762
Jiri Pirko3d249d42011-11-11 22:16:48 +00006763TEAM DRIVER
6764M: Jiri Pirko <jpirko@redhat.com>
6765L: netdev@vger.kernel.org
6766S: Supported
6767F: drivers/net/team/
6768F: include/linux/if_team.h
6769
Erik Gilling84b94142010-06-09 15:35:53 -07006770TEGRA SUPPORT
6771M: Colin Cross <ccross@android.com>
Erik Gilling84b94142010-06-09 15:35:53 -07006772M: Olof Johansson <olof@lixom.net>
Stephen Warren243d58e2012-03-05 17:58:36 -07006773M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07006774L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07006775Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
6776T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07006777S: Supported
6778F: arch/arm/mach-tegra
6779
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006780TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006781M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006782L: netdev@vger.kernel.org
6783S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07006784F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006785
Alan Cox4e688522008-04-30 00:52:11 -07006786Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07006787M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07006788S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006789F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07006790
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006791TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07006792M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07006793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006794F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07006795
6796THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006797M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07006798L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05006799L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006800W: http://ibm-acpi.sourceforge.net
6801W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07006802T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07006803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006804F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07006805
Alex Dubov4020f2d2006-10-04 02:15:37 -07006806TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006807M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006809F: drivers/misc/tifm*
6810F: drivers/mmc/host/tifm_sd.c
6811F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07006812
M R Swami Reddy152ad442012-04-02 20:02:31 +05306813TI LM49xxx FAMILY ASoC CODEC DRIVERS
6814M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05306815M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05306816L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6817S: Maintained
6818F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05306819F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05306820
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006821TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03006822M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006823L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6824S: Maintained
6825F: sound/soc/codecs/twl4030*
6826
Luciano Coelho90921012011-11-20 21:40:41 +02006827TI WILINK WIRELESS DRIVERS
6828M: Luciano Coelho <coelho@ti.com>
6829L: linux-wireless@vger.kernel.org
6830W: http://wireless.kernel.org/en/users/Drivers/wl12xx
6831W: http://wireless.kernel.org/en/users/Drivers/wl1251
6832T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
6833S: Maintained
6834F: drivers/net/wireless/ti/
6835F: include/linux/wl12xx.h
6836
Per Lidene86eaa32006-01-12 16:45:18 +01006837TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006838M: Jon Maloy <jon.maloy@ericsson.com>
6839M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05006840L: netdev@vger.kernel.org (core kernel code)
6841L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01006842W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01006843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006844F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07006845F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01006846
Chris Metcalf867e3592010-05-28 23:09:12 -04006847TILE ARCHITECTURE
6848M: Chris Metcalf <cmetcalf@tilera.com>
6849W: http://www.tilera.com/scm/
6850S: Supported
6851F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08006852F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07006853F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05006854F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04006855
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006857M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08006858L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859W: http://sourceforge.net/projects/tlan/
6860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006861F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07006862F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006864TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006865M: Kentaro Takeda <takedakn@nttdata.co.jp>
6866M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09006867L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
6868L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006869L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
6870L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
6871W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09006872T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006874F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006875
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006876TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006877M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05006878L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006879S: Maintained
6880F: drivers/platform/x86/topstar-laptop.c
6881
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05006883L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02006884S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006885F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886
6887TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006888M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889L: tlinux-users@tce.toshiba-dme.co.jp
6890W: http://www.buzzard.org.uk/toshiba/
6891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006892F: drivers/char/toshiba.c
6893F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894
Pierre Ossmand719f902009-03-24 21:06:09 +01006895TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006896M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07006897M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006898L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01006899S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02006900F: drivers/mmc/host/tmio_mmc*
6901F: drivers/mmc/host/sh_mobile_sdhi.c
6902F: include/linux/mmc/tmio.h
6903F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01006904
Hugh Dickins98f32602009-05-21 20:33:58 +01006905TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07006906M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01006907L: linux-mm@kvack.org
6908S: Maintained
6909F: include/linux/shmem_fs.h
6910F: mm/shmem.c
6911
Alan Cox4e688522008-04-30 00:52:11 -07006912TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03006913M: Kent Yoder <key@linux.vnet.ibm.com>
6914M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07006915W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03006916M: Marcel Selhorst <tpmdd@selhorst.net>
6917M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08006918W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07006919L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07006920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006921F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07006922
Joe Perchesd6f005a2009-10-26 16:49:40 -07006923TRACING
6924M: Steven Rostedt <rostedt@goodmis.org>
6925M: Frederic Weisbecker <fweisbec@gmail.com>
6926M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006927T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07006928S: Maintained
6929F: Documentation/trace/ftrace.txt
6930F: arch/*/*/*/ftrace.h
6931F: arch/*/kernel/ftrace.c
6932F: include/*/ftrace.h
6933F: include/linux/trace*.h
6934F: include/trace/
6935F: kernel/trace/
6936
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07006938M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07006939T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02006941K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07006942
Alan Cox4e688522008-04-30 00:52:11 -07006943TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08006944M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6945S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006946T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02006947F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006948F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01006949F: include/linux/serial_core.h
6950F: include/linux/serial.h
6951F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07006952
Grant Grundler740db6d2008-02-17 11:53:49 -07006953TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006954M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07006955L: netdev@vger.kernel.org
6956S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08006957F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958
6959TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07006960M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961L: vtun@office.satix.net
6962W: http://vtun.sourceforge.net/tun
6963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006964F: Documentation/networking/tuntap.txt
6965F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006967TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006968M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006970F: drivers/tc/
6971F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006972
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006974M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975L: linux-scsi@vger.kernel.org
6976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006977F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006979UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006980M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03006981M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006982L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006983T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006984W: http://www.linux-mtd.infradead.org/doc/ubifs.html
6985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006986F: Documentation/filesystems/ubifs.txt
6987F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006988
Alan Coxcc2020e2008-05-19 14:21:51 +01006989UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07006990M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01006991W: http://www.uclinux.org/
6992L: uclinux-dev@uclinux.org (subscribers-only)
6993S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07006994F: arch/m68k/*/*_no.*
6995F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01006996
Robert P. J. Day14fadca2009-04-21 12:24:47 -07006997UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07006998M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01006999W: http://uclinux-h8.sourceforge.jp/
7000S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007001F: arch/h8300/
7002F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007003F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007004
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007006M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007008F: Documentation/filesystems/udf.txt
7009F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010
Alan Coxcc2020e2008-05-19 14:21:51 +01007011UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007012M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007014F: Documentation/filesystems/ufs.txt
7015F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007016
David Herrmann0a09d3a2012-06-10 15:16:28 +02007017UHID USERSPACE HID IO DRIVER:
7018M: David Herrmann <dh.herrmann@googlemail.com>
7019L: linux-input@vger.kernel.org
7020S: Maintained
7021F: drivers/hid/uhid.c
7022F: include/linux/uhid.h
7023
David Vrabel18332a82008-09-17 16:34:44 +01007024ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007025L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007026S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007027F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007028F: include/linux/uwb.h
7029F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007030
GuanXuetaob31d8272011-01-16 00:35:49 +08007031UNICORE32 ARCHITECTURE:
7032M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7033W: http://mprc.pku.edu.cn/~guanxuetao/linux
7034S: Maintained
7035T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7036F: arch/unicore32/
7037
Tony Finchd8379ab2009-11-27 15:50:30 +00007038UNIFDEF
7039M: Tony Finch <dot@dotat.at>
7040W: http://dotat.at/prog/unifdef
7041S: Maintained
7042F: scripts/unifdef.c
7043
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007045M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046W: http://www.kernel.dk
7047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007048F: Documentation/cdrom/
7049F: drivers/cdrom/cdrom.c
7050F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307052UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7053M: Vinayak Holikatti <vinholikatti@gmail.com>
7054M: Santosh Y <santoshsy@gmail.com>
7055L: linux-scsi@vger.kernel.org
7056S: Supported
7057F: Documentation/scsi/ufs.txt
7058F: drivers/scsi/ufs/
7059
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007060UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007061M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007062W: http://www.linux-mtd.infradead.org/
7063L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007064T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007065S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007066F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007067F: include/linux/mtd/ubi.h
7068F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007069
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007071M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007072L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007074F: Documentation/usb/acm.txt
7075F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007077USB ATTACHED SCSI
7078M: Matthew Wilcox <willy@linux.intel.com>
7079M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7080L: linux-usb@vger.kernel.org
7081L: linux-scsi@vger.kernel.org
7082S: Supported
7083F: drivers/usb/storage/uas.c
7084
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007086M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007087L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007089F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08007092M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007093L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007095F: drivers/net/usb/cdc_*.c
7096F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007098USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007099M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007100L: linux-usb@vger.kernel.org
7101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007102F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007103
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007104USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007105M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007106L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007107W: http://www.linux-usb.org/usbnet
7108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007109F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007110
Alan Coxcc2020e2008-05-19 14:21:51 +01007111USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007112M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007113L: rio500-users@lists.sourceforge.net
7114W: http://rio500.sourceforge.net
7115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007116F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007117
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007119M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007120L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007122F: Documentation/usb/ehci.txt
7123F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124
Luca Risolia7ce08c92006-01-11 02:06:59 +00007125USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007126M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007127L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007128L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007129T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00007130W: http://www.linux-projects.org
7131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007132F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00007133
David Brownell69ae9e32006-11-14 02:03:31 -08007134USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007135M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007136L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007137W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007138T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007140F: drivers/usb/gadget/
7141F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007142
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007143USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007144M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007145L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007146T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007148F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007149F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150
matt mooney857aab32011-06-17 15:50:46 -07007151USB/IP DRIVERS
7152M: Matt Mooney <mfm@muteddisk.com>
7153L: linux-usb@vger.kernel.org
7154S: Maintained
7155F: drivers/staging/usbip/
7156
Olav Kongas959eea22005-11-03 17:38:14 +02007157USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007158M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007159L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007161F: drivers/usb/host/isp116x*
7162F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007163
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007165M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007166L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007168F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007169
7170USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007171M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007172L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007173L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007174S: Maintained
7175W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007176F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177
Clemens Ladischaf399172011-01-10 16:32:54 +01007178USB MIDI DRIVER
7179M: Clemens Ladisch <clemens@ladisch.de>
7180L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7181T: git git://git.alsa-project.org/alsa-kernel.git
7182S: Maintained
7183F: sound/usb/midi.*
7184
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007186M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007187L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007189F: Documentation/usb/ohci.txt
7190F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007191
Matthias Urlichsba460e42005-07-14 00:33:47 -07007192USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007193M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007194L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007196F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007197
Linus Torvalds1da177e2005-04-16 15:20:36 -07007198USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007199M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007200L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007201L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202W: http://pegasus2.sourceforge.net/
7203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007204F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205
Felipe Balbid3ad5582012-05-21 16:24:49 +03007206USB PHY LAYER
7207M: Felipe Balbi <balbi@ti.com>
7208L: linux-usb@vger.kernel.org
7209T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7210S: Maintained
7211F: drivers/usb/phy/
7212F: drivers/usb/otg/
7213
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007214USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007215M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007216L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007218F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219
7220USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007221M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007222L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007223L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224W: http://pegasus2.sourceforge.net/
7225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007226F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007227
Alan Cox4e688522008-04-30 00:52:11 -07007228USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007229M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007230L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007232F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007233
7234USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007235M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007236L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007237S: Maintained
7238W: http://geocities.com/i0xox0i
7239W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007240F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007241
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007243M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007246F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247
7248USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007249M: Peter Berger <pberger@brimson.com>
7250M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007251L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007253F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254
7255USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007256M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007257L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007259F: Documentation/usb/usb-serial.txt
7260F: drivers/usb/serial/generic.c
7261F: drivers/usb/serial/usb-serial.c
7262F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007265M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007266L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007268F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007269
7270USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007271M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007272L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007274F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275
7276USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007277M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007278L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279W: http://www.connecttech.com
7280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007281F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007283USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007284M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007285L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007287F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007288
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007289USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007291L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007292L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007293T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294W: http://www.linux-projects.org
7295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007296F: Documentation/video4linux/sn9c102.txt
7297F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298
7299USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007300M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007301L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007303T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007305F: Documentation/usb/
7306F: drivers/net/usb/
7307F: drivers/usb/
7308F: include/linux/usb.h
7309F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310
7311USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007312M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007313L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007315F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316
David Brownell69ae9e32006-11-14 02:03:31 -08007317USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007318M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007319L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007320W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007322F: drivers/net/usb/usbnet.c
7323F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007325USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007326M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007327L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007328L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007329T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007330W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007332F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007333
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007335M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007336L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007337L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007338T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339W: http://www.linux-projects.org
7340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007341F: Documentation/video4linux/w9968cf.txt
7342F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007344USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007345M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007346L: linux-wireless@vger.kernel.org
7347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007348F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007349
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007350USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007351M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007352L: linux-usb@vger.kernel.org
7353S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007354F: drivers/usb/host/xhci*
7355F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007356
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007358L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007360S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007361F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007363USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007364M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007365L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007366L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007367T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007368W: http://royale.zerezo.com/zr364xx/
7369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007370F: Documentation/video4linux/zr364xx.txt
7371F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007372
Randy Dunlape7839f22008-10-12 16:11:45 -07007373USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007374M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007375M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376L: user-mode-linux-devel@lists.sourceforge.net
7377L: user-mode-linux-user@lists.sourceforge.net
7378W: http://user-mode-linux.sourceforge.net
7379S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007380F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007381F: arch/um/
7382F: fs/hostfs/
7383F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007384
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007385USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007386M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007387M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007389F: Documentation/DocBook/uio-howto.tmpl
7390F: drivers/uio/
7391F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007392
Karel Zak256cccb2012-06-01 10:13:09 +02007393UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007394M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007395L: util-linux@vger.kernel.org
7396W: http://en.wikipedia.org/wiki/Util-linux
7397T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007398S: Maintained
7399
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007400UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007401M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007402L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007403W: http://dev.gentoo.org/~spock/projects/uvesafb/
7404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007405F: Documentation/fb/uvesafb.txt
7406F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007407
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007408VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007409M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007411F: Documentation/filesystems/vfat.txt
7412F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007414VIDEOBUF2 FRAMEWORK
7415M: Pawel Osciak <pawel@osciak.com>
7416M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007417M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007418L: linux-media@vger.kernel.org
7419S: Maintained
7420F: drivers/media/video/videobuf2-*
7421F: include/media/videobuf2-*
7422
Amit Shah9a824462010-03-23 18:23:09 +05307423VIRTIO CONSOLE DRIVER
7424M: Amit Shah <amit.shah@redhat.com>
7425L: virtualization@lists.linux-foundation.org
7426S: Maintained
7427F: drivers/char/virtio_console.c
7428F: include/linux/virtio_console.h
7429
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307430VIRTIO CORE, NET AND BLOCK DRIVERS
7431M: Rusty Russell <rusty@rustcorp.com.au>
7432M: "Michael S. Tsirkin" <mst@redhat.com>
7433L: virtualization@lists.linux-foundation.org
7434S: Maintained
7435F: drivers/virtio/
7436F: drivers/net/virtio_net.c
7437F: drivers/block/virtio_blk.c
7438F: include/linux/virtio_*.h
7439
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007440VIRTIO HOST (VHOST)
7441M: "Michael S. Tsirkin" <mst@redhat.com>
7442L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007443L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007444L: netdev@vger.kernel.org
7445S: Maintained
7446F: drivers/vhost/
7447F: include/linux/vhost.h
7448
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007450M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007452F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453
Jean Delvare32c0a522005-09-22 21:47:58 +02007454VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007455M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007456L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007458F: Documentation/i2c/busses/i2c-viapro
7459F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007460
Harald Weltef0bf7f62009-06-17 20:22:39 +02007461VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007462M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007463M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007464S: Maintained
7465F: drivers/mmc/host/via-sdmmc.c
7466
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007467VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007468M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007469L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007470S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007471F: include/linux/via-core.h
7472F: include/linux/via-gpio.h
7473F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007474F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007475
Francois Romieu01f20732007-01-26 00:57:17 -08007476VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007477M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007478L: netdev@vger.kernel.org
7479S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007480F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481
Patrick McHardybe7f8272007-10-23 20:26:36 -07007482VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007483M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007484L: netdev@vger.kernel.org
7485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007486F: drivers/net/macvlan.c
7487F: include/linux/if_*vlan.h
7488F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007489
Florian Fainelli55e331c2009-06-16 15:33:53 -07007490VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007491M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007492L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007493S: Maintained
7494F: drivers/vlynq/vlynq.c
7495F: include/linux/vlynq.h
7496
Martyn Welch390beae2012-05-03 17:52:36 +01007497VME SUBSYSTEM
7498M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007499M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007500M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7501L: devel@driverdev.osuosl.org
7502S: Maintained
7503T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7504F: Documentation/vme_api.txt
7505F: drivers/staging/vme/
7506F: drivers/vme/
7507F: include/linux/vme*
7508
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007509VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007510M: Shreyas Bhatewara <sbhatewara@vmware.com>
7511M: "VMware, Inc." <pv-drivers@vmware.com>
7512L: netdev@vger.kernel.org
7513S: Maintained
7514F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007515
Alok Kataria851b1642009-10-13 14:51:05 -07007516VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007517M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007518M: VMware PV-Drivers <pv-drivers@vmware.com>
7519L: linux-scsi@vger.kernel.org
7520S: Maintained
7521F: drivers/scsi/vmw_pvscsi.c
7522F: drivers/scsi/vmw_pvscsi.h
7523
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007524VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007525M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007526M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007527W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007528W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007529T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007531F: drivers/regulator/
7532F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007533
Juerg Haefligerab413192006-09-24 20:54:04 +02007534VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007535M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007536L: lm-sensors@lm-sensors.org
7537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007538F: Documentation/hwmon/vt1211
7539F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007540
Roger Lucas1de9e372005-11-26 20:20:05 +01007541VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007542M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007543L: lm-sensors@lm-sensors.org
7544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007545F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007546
Tony Olech88095e72011-05-14 16:48:13 -04007547VUB300 USB to SDIO/SD/MMC bridge chip
7548M: Tony Olech <tony.olech@elandigitalsystems.com>
7549L: linux-mmc@vger.kernel.org
7550L: linux-usb@vger.kernel.org
7551S: Supported
7552F: drivers/mmc/host/vub300.c
7553
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007555M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007557F: Documentation/w1/
7558F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
Charles Spirakis13927072006-07-05 18:05:15 +02007560W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007561M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007562L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007564F: Documentation/hwmon/w83791d
7565F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007566
Rudolf Marek61db0112006-12-12 18:18:30 +01007567W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007568M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007569L: lm-sensors@lm-sensors.org
7570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007571F: Documentation/hwmon/w83793
7572F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007573
Jean Delvaree3760b42010-10-28 20:31:49 +02007574W83795 HARDWARE MONITORING DRIVER
7575M: Jean Delvare <khali@linux-fr.org>
7576L: lm-sensors@lm-sensors.org
7577S: Maintained
7578F: drivers/hwmon/w83795.c
7579
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007581M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007583F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007585WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007586M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00007587L: linux-watchdog@vger.kernel.org
7588W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01007589T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007591F: Documentation/watchdog/
7592F: drivers/watchdog/
7593F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007594
Linus Torvalds1da177e2005-04-16 15:20:36 -07007595WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007596M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597L: linux-scsi@vger.kernel.org
7598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007599F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600
David Herrmannb22e00f2011-09-06 13:50:40 +02007601WIIMOTE HID DRIVER
7602M: David Herrmann <dh.herrmann@googlemail.com>
7603L: linux-input@vger.kernel.org
7604S: Maintained
7605F: drivers/hid/hid-wiimote*
7606
David Härdemane258b802009-09-21 17:04:53 -07007607WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07007608M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07007609S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07007610F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07007611
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007612WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07007613M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007614M: linux-wimax@intel.com
7615L: wimax@linuxwimax.org
7616S: Supported
7617W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07007618F: Documentation/wimax/README.wimax
7619F: include/linux/wimax.h
7620F: include/linux/wimax/debug.h
7621F: include/net/wimax.h
7622F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08007623
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007624WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007625M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007627F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05007628
Linus Torvalds1da177e2005-04-16 15:20:36 -07007629WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007630M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07007631L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03007632W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007634F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Mark Brownfebf1df2008-04-02 00:51:09 -04007636WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007637M: Mark Brown <broonie@opensource.wolfsonmicro.com>
7638M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04007639L: linux-input@vger.kernel.org
7640T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
7641W: http://opensource.wolfsonmicro.com/node/7
7642S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007643F: drivers/input/touchscreen/*wm97*
7644F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04007645
Mark Brown055bcbc2010-08-13 14:18:12 +01007646WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07007647M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01007648L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07007649T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01007650T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07007651W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01007652S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08007653F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01007654F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01007655F: drivers/clk/clk-wm83*.c
Mark Brownb75ea162009-07-02 16:43:08 +01007656F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01007657F: drivers/gpio/gpio-*wm*.c
Mark Brownd22b0862012-01-21 13:29:27 -05007658F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09007659F: drivers/input/misc/wm831x-on.c
7660F: drivers/input/touchscreen/wm831x-ts.c
7661F: drivers/input/touchscreen/wm97*.c
Mark Brownb75ea162009-07-02 16:43:08 +01007662F: drivers/mfd/wm8*.c
7663F: drivers/power/wm83*.c
7664F: drivers/rtc/rtc-wm83*.c
7665F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01007666F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01007667F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01007668F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01007669F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08007670F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09007671F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01007672F: include/sound/wm????.h
7673F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01007674
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01007675WORKQUEUE
7676M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01007677T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
7678S: Maintained
7679F: include/linux/workqueue.h
7680F: kernel/workqueue.c
7681F: Documentation/workqueue.txt
7682
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007684M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007686S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007687F: Documentation/networking/x25*
7688F: include/net/x25*
7689F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007691X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07007692M: Thomas Gleixner <tglx@linutronix.de>
7693M: Ingo Molnar <mingo@redhat.com>
7694M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08007695M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007696T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007698F: Documentation/x86/
7699F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007700
Matthew Garrettd0944852010-02-11 10:40:13 -05007701X86 PLATFORM DRIVERS
7702M: Matthew Garrett <mjg@redhat.com>
7703L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07007704T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05007705S: Maintained
7706F: drivers/platform/x86
7707
Ingo Molnarc1f5c542011-06-18 22:51:13 +02007708X86 MCE INFRASTRUCTURE
7709M: Tony Luck <tony.luck@intel.com>
7710M: Borislav Petkov <bp@amd64.org>
7711L: linux-edac@vger.kernel.org
7712S: Maintained
7713F: arch/x86/kernel/cpu/mcheck/*
7714
Ian Campbellc4468082011-04-27 15:26:46 -07007715XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07007716M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08007717M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07007718L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7719L: virtualization@lists.linux-foundation.org
7720S: Supported
7721F: arch/x86/xen/
7722F: drivers/*/xen-*front.c
7723F: drivers/xen/
7724F: arch/x86/include/asm/xen/
7725F: include/xen/
7726
Ian Campbell9b57e1a2011-04-03 23:12:23 +00007727XEN NETWORK BACKEND DRIVER
7728M: Ian Campbell <ian.campbell@citrix.com>
7729L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7730L: netdev@vger.kernel.org
7731S: Supported
7732F: drivers/net/xen-netback/*
7733
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007734XEN PCI SUBSYSTEM
7735M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007736L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02007737S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007738F: arch/x86/pci/*xen*
7739F: drivers/pci/*xen*
7740
7741XEN SWIOTLB SUBSYSTEM
7742M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007743L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007744S: Supported
7745F: arch/x86/xen/*swiotlb*
7746F: drivers/xen/*swiotlb*
7747
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748XFS FILESYSTEM
7749P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00007750M: Ben Myers <bpm@sgi.com>
7751M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00007752M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10007753L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07007755T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007756S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007757F: Documentation/filesystems/xfs.txt
7758F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00007760XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00007761M: Anirudha Sarangi <anirudh@xilinx.com>
7762M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00007763S: Maintained
7764F: drivers/net/ethernet/xilinx/xilinx_axienet*
7765
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007766XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007767M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007768W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007770F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007771
Peter Korsgaard238b8722006-12-06 20:35:17 -08007772XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007773M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08007774L: linux-serial@vger.kernel.org
7775S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007776F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08007777
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007779M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780L: linux-hams@vger.kernel.org
7781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007782F: drivers/net/hamradio/yam*
7783F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784
Henkaf64a5e2005-10-12 15:02:56 +02007785YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007786M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02007787L: usbb2k-api-dev@nongnu.org
7788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007789F: Documentation/input/yealink.txt
7790F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02007791
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007793M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794W: http://yaina.de/jreuter/
7795W: http://www.qsl.net/dl1bke/
7796L: linux-hams@vger.kernel.org
7797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007798F: Documentation/networking/z8530drv.txt
7799F: drivers/net/hamradio/*scc.c
7800F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007801
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007802ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007803M: Daniel Drake <dsd@gentoo.org>
7804M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007805W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07007806L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007807L: zd1211-devs@lists.sourceforge.net (subscribers-only)
7808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007809F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007810
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03007813L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03007815T: Mercurial http://linuxtv.org/hg/v4l-dvb
7816S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007817F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007819ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007820M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007821S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007822F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007823
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07007825M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07007826L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007827Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04007828T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07007830F: *
7831F: */