blob: 027ec2bfa135d4f5af20801b020c52d1f66a3f3f [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
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
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/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/mfd/adp5520.c
346F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700347F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800348F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349F: drivers/input/keyboard/adp5520-keys.c
350
351ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
352M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100353L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000355S: Supported
356F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800357F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358
359ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
360M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100361L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700362W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/video/backlight/adp8860_bl.c
365
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100366ADS1015 HARDWARE MONITOR DRIVER
367M: Dirk Eibach <eibach@gdsys.de>
368L: lm-sensors@lm-sensors.org
369S: Maintained
370F: Documentation/hwmon/ads1015
371F: drivers/hwmon/ads1015.c
372F: include/linux/i2c/ads1015.h
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700375M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jean Delvareb058b852009-12-09 20:36:08 +0100379ADT7475 HARDWARE MONITOR DRIVER
380M: Jean Delvare <khali@linux-fr.org>
381L: lm-sensors@lm-sensors.org
382S: Maintained
383F: Documentation/hwmon/adt7475
384F: drivers/hwmon/adt7475.c
385
Michael Hennerich527a1a82010-10-28 11:31:28 +0000386ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
387M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100388L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700389W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390S: Supported
391F: drivers/input/misc/adxl34x.c
392
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395L: linux-scsi@vger.kernel.org
396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/scsi/advansys.txt
398F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700403F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Antti Palosaari91952bc2012-10-01 12:28:46 -0300405AF9013 MEDIA DRIVER
406M: Antti Palosaari <crope@iki.fi>
407L: linux-media@vger.kernel.org
408W: http://linuxtv.org/
409W: http://palosaari.fi/linux/
410Q: http://patchwork.linuxtv.org/project/linux-media/list/
411T: git git://linuxtv.org/anttip/media_tree.git
412S: Maintained
413F: drivers/media/dvb-frontends/af9013*
414
415AF9033 MEDIA DRIVER
416M: Antti Palosaari <crope@iki.fi>
417L: linux-media@vger.kernel.org
418W: http://linuxtv.org/
419W: http://palosaari.fi/linux/
420Q: http://patchwork.linuxtv.org/project/linux-media/list/
421T: git git://linuxtv.org/anttip/media_tree.git
422S: Maintained
423F: drivers/media/dvb-frontends/af9033*
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200426L: linux-fsdevel@vger.kernel.org
427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700428F: Documentation/filesystems/affs.txt
429F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700431AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433L: linux-afs@lists.infradead.org
434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: fs/afs/
436F: include/net/af_rxrpc.h
437F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700441T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700443F: drivers/char/agp/
444F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448L: linux-scsi@vger.kernel.org
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/scsi/aha152x*
451F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Hannes Reinecke64624d42007-10-19 10:32:29 +0200453AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aic7xxx/
458F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700460AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700462L: linux-aio@kvack.org
463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700464F: fs/aio.c
465F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470W: http://www.linux-usb.org/SpeedTouch/
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/atm/speedtch.c
473F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pierre Ossman272f1332007-05-14 21:25:26 +0200475ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200479
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000480ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100482L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/i2c/busses/i2c-ali1563
485F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500490M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700491S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700492L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700493F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tobias Klauseradf92512011-02-09 10:58:29 +0100495ALTERA UART/JTAG UART SERIAL DRIVERS
496M: Tobias Klauser <tklauser@distanz.ch>
497L: linux-serial@vger.kernel.org
498L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
499S: Maintained
500F: drivers/tty/serial/altera_uart.c
501F: drivers/tty/serial/altera_jtaguart.c
502F: include/linux/altera_uart.h
503F: include/linux/altera_jtaguart.h
504
Andreas Herrmann512d1022011-05-25 20:43:31 +0200505AMD FAM15H PROCESSOR POWER MONITORING DRIVER
506M: Andreas Herrmann <andreas.herrmann3@amd.com>
507L: lm-sensors@lm-sensors.org
508S: Maintained
509F: Documentation/hwmon/fam15h_power
510F: drivers/hwmon/fam15h_power.c
511
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700512AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700513M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700514L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700517
Jordan Crousef90b8112006-01-06 00:12:14 -0800518AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800519P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700520L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800521W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/hw_random/geode-rng.c
524F: drivers/crypto/geode*
525F: drivers/video/geode/
526F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800527
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200528AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200530L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100531T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200532S: Supported
Joe Perchesb2c16392011-12-08 20:21:40 -0800533F: drivers/iommu/amd_iommu*.[ch]
534F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535
Peter Orubae7f5b302008-07-28 18:44:11 +0200536AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700537M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700538L: amd64-microcode@amd64.org
539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200541
Stelian Pop284f42b2006-12-12 18:18:31 +0100542AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100544S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200545F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100546
Tom Tuckerf94b5332006-09-22 15:22:48 -0700547AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Tom Tucker <tom@opengridcomputing.com>
549M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700550L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700553
Michael Hennerich527a1a82010-10-28 11:31:28 +0000554ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200555M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100556L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700558W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000559S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100560F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200561F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000563F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100564F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400566ANALOG DEVICES INC ASOC DRIVERS
567L: uclinux-dist-devel@blackfin.uclinux.org
568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
569W: http://blackfin.uclinux.org/
570S: Supported
571F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400572
Johannes Berg42269062006-07-25 16:15:50 +0200573AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000575L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200581M: Jiri Kosina <jkosina@suse.cz>
582S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700583F: arch/x86/kernel/apm_32.c
584F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200585F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700587APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700589L: linux-input@vger.kernel.org
590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700591F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700592
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700593APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200594M: Henrik Rydberg <rydberg@euromail.se>
595L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700602F: drivers/net/appletalk/
603F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Viresh Kumara4801672011-02-22 15:46:07 +0530605ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700606M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530607L: linux-ide@vger.kernel.org
608S: Maintained
609F: include/linux/pata_arasan_cf_data.h
610F: drivers/ata/pata_arasan_cf.c
611
Jaya Kumar1154ea72005-06-21 17:17:04 -0700612ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/video/arcfb.c
616F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: arch/arm/lib/floppydma.S
622F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Will Deacon6f965212011-07-01 14:38:53 +0100624ARM PMU PROFILING AND DEBUGGING
625M: Will Deacon <will.deacon@arm.com>
626S: Maintained
627F: arch/arm/kernel/perf_event*
628F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100629F: arch/arm/include/asm/pmu.h
630F: arch/arm/kernel/hw_breakpoint.c
631F: arch/arm/include/asm/hw_breakpoint.h
632
Russell Kingd4275352009-04-16 14:05:27 +0100633ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100636W: http://www.arm.linux.org.uk/
637S: Maintained
638F: arch/arm/
639
Russell Kingcefbf4e2009-11-22 17:40:28 +0000640ARM PRIMECELL AACI PL041 DRIVER
641M: Russell King <linux@arm.linux.org.uk>
642S: Maintained
643F: sound/arm/aaci.*
644
645ARM PRIMECELL CLCD PL110 DRIVER
646M: Russell King <linux@arm.linux.org.uk>
647S: Maintained
648F: drivers/video/amba-clcd.*
649
650ARM PRIMECELL KMI PL050 DRIVER
651M: Russell King <linux@arm.linux.org.uk>
652S: Maintained
653F: drivers/input/serio/ambakmi.*
654F: include/linux/amba/kmi.h
655
Russell King2761f5c2007-05-24 06:56:08 +0200656ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200657S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700658F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200659
Russell Kingcefbf4e2009-11-22 17:40:28 +0000660ARM PRIMECELL BUS SUPPORT
661M: Russell King <linux@arm.linux.org.uk>
662S: Maintained
663F: drivers/amba/
664F: include/linux/amba/bus.h
665
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800666ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700667M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700668L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800669S: Maintained
670
Sergey Lapin9c784f92008-08-03 02:29:48 +0100671ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700672M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700673L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100674S: Maintained
675
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700677M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700678L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800679S: Maintained
680
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800681ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700682M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800683M: Nicolas Ferre <nicolas.ferre@atmel.com>
684M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200686W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800687W: http://www.linux4sam.org
688S: Supported
689F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100690
Rob Herring986cf2e2011-06-22 11:28:53 -0500691ARM/CALXEDA HIGHBANK ARCHITECTURE
692M: Rob Herring <rob.herring@calxeda.com>
693L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
694S: Maintained
695F: arch/arm/mach-highbank/
696
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300697ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
698M: Anton Vorontsov <avorontsov@mvista.com>
699S: Maintained
700F: arch/arm/mach-cns3xxx/
701T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
702
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100704M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000705M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100708F: arch/arm/mach-ep93xx/
709F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710
711ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700712M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714S: Maintained
715
Russell Kingd4275352009-04-16 14:05:27 +0100716ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700717M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700718L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700719S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100720F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700721F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100722
Mike Rapoportd48134e2008-08-20 09:03:26 +0100723ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700724M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100726S: Maintained
727
Hubert Feurstein94150092009-10-07 08:36:07 +0100728ARM/CONTEC MICRO9 MACHINE SUPPORT
729M: Hubert Feurstein <hubert.feurstein@contec.at>
730S: Maintained
731F: arch/arm/mach-ep93xx/micro9.c
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700734M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735S: Maintained
736
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200737ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100738M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100740T: git git://git.berlios.de/gemini-board
741S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300742F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200743
Barry Songa990cbd2011-07-12 21:44:10 +0800744ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
745M: Barry Song <baohua.song@csr.com>
746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
747S: Maintained
748F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800749F: drivers/dma/sirf-dma.c
750F: drivers/i2c/busses/i2c-sirf.c
751F: drivers/pinctrl/pinctrl-sirf.c
752F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800753
Russell Kingd4275352009-04-16 14:05:27 +0100754ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700755M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700756L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100757W: http://www.arm.linux.org.uk/
758S: Maintained
759F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700760F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100761
Russell Kinga9da4f72008-07-12 21:42:04 +0100762ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700763M: Daniel Ribeiro <drwyrm@gmail.com>
764M: Stefan Schmidt <stefan@openezx.org>
765M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200766L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100767W: http://www.openezx.org/
768S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200769T: topgit git://git.openezx.org/openezx.git
770F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100771
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200772ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100773M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700774L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100775S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700776T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300777F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200778
Russell Kingd4275352009-04-16 14:05:27 +0100779ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100782W: http://www.arm.linux.org.uk/
783S: Maintained
784F: arch/arm/include/asm/hardware/dec21285.h
785F: arch/arm/mach-footbridge/
786
Sascha Hauer86183a52008-07-24 23:50:35 +0200787ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700788M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700789L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200790S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700791T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100792F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100793F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700794F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200795
Shawn Guo8bcb9762011-10-07 22:24:18 +0800796ARM/FREESCALE IMX6
797M: Shawn Guo <shawn.guo@linaro.org>
798L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
799S: Maintained
800T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
801F: arch/arm/mach-imx/*imx6*
802
Shawn Guoa9866a092011-10-21 11:53:34 +0800803ARM/FREESCALE MXS ARM ARCHITECTURE
804M: Shawn Guo <shawn.guo@linaro.org>
805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
806S: Maintained
807T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
808F: arch/arm/mach-mxs/
809
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800810ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700811M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700812L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800813S: Maintained
814
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100815ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100818S: Maintained
819
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200820ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700821M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100822M: Paul Parsons <lost.distance@yahoo.com>
823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200824S: Maintained
825F: arch/arm/mach-pxa/hx4700.c
826F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100827F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200828
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100829ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700830M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200831W: www.jlime.com
832S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700833T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
834F: arch/arm/mach-sa1100/jornada720.c
835F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100836
Marek Vasut403d2972010-05-22 00:29:39 +0200837ARM/INCOME PXA270 SUPPORT
838M: Marek Vasut <marek.vasut@gmail.com>
839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
840S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700841F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200842
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800843ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700844M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700845M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700847S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100848
849ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700850M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700852S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800853
854ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700856M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700858S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800859
860ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700862M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700863L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700864S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800865
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700867M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800869S: Maintained
870
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200871ARM/INTEL IXP4XX ARM ARCHITECTURE
872M: Imre Kaloz <kaloz@openwrt.org>
873M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100874L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200875S: Maintained
876F: arch/arm/mach-ixp4xx/
877
Joe Perches838553c2010-10-26 14:22:59 -0700878ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100879M: Jonathan Cameron <jic23@cam.ac.uk>
880L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
881S: Maintained
882F: arch/arm/mach-pxa/stargate2.c
883F: drivers/pcmcia/pxa2xx_stargate2.c
884
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800885ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700886M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700887M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700888L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700889S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800890
891ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700892M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800894S: Maintained
895
896ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700897M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700898L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800899S: Maintained
900
Philipp Zabel3b8861712008-07-09 21:27:15 +0100901ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100903S: Maintained
904
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200905ARM/Marvell Armada 370 and Armada XP SOC support
906M: Jason Cooper <jason@lakedaemon.net>
907M: Andrew Lunn <andrew@lunn.ch>
908M: Gregory Clement <gregory.clement@free-electrons.com>
909L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
910S: Maintained
911F: arch/arm/mach-mvebu/
912
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400913ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
914M: Jason Cooper <jason@lakedaemon.net>
915M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400917S: Maintained
918F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400919F: arch/arm/mach-kirkwood/
920F: arch/arm/mach-mv78xx0/
921F: arch/arm/mach-orion5x/
922F: arch/arm/plat-orion/
923
Alexander Clouterd69ac132011-04-14 15:22:02 -0700924ARM/Orion SoC/Technologic Systems TS-78xx platform support
925M: Alexander Clouter <alex@digriz.org.uk>
926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
927W: http://www.digriz.org.uk/ts78xx/kernel
928S: Maintained
929F: arch/arm/mach-orion5x/ts78xx-*
930
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000931ARM/MICREL KS8695 ARCHITECTURE
932M: Greg Ungerer <gerg@uclinux.org>
933L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934F: arch/arm/mach-ks8695
935S: Odd Fixes
936
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200937ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700938M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700939L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200940F: arch/arm/mach-pxa/mioa701.c
941S: Maintained
942
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100943ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700944M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100945S: Maintained
946
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100947ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700948M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200949M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700950M: STEricsson <STEricsson_nomadik_linux@list.st.com>
951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952S: Maintained
953F: arch/arm/mach-nomadik/
954F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100955F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200956T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100957
Andy Green9d762952009-05-19 06:41:42 -0300958ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700959M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300960L: openmoko-kernel@lists.openmoko.org (subscribers-only)
961W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
962S: Supported
963
Daniel Walker0c19d212009-12-07 16:53:51 -0800964ARM/QUALCOMM MSM MACHINE SUPPORT
965M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800966M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800967M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800968L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800969F: arch/arm/mach-msm/
970F: drivers/video/msm/
971F: drivers/mmc/host/msm_sdcc.c
972F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800973F: drivers/tty/serial/msm_serial.h
974F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700975F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700976F: drivers/*/pm8???-*
977F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800978T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800979S: Maintained
980
Dirk Opfer8459c152005-11-06 14:27:52 +0000981ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700982M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
983M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000984S: Maintained
985
Marek Vasut5d783a22009-07-16 13:26:48 +0200986ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700987M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200988L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100989W: http://hackndev.com
990S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700991F: arch/arm/mach-pxa/include/mach/palmtx.h
992F: arch/arm/mach-pxa/palmtx.c
993F: arch/arm/mach-pxa/include/mach/palmt5.h
994F: arch/arm/mach-pxa/palmt5.c
995F: arch/arm/mach-pxa/include/mach/palmld.h
996F: arch/arm/mach-pxa/palmld.c
997F: arch/arm/mach-pxa/include/mach/palmte2.h
998F: arch/arm/mach-pxa/palmte2.c
999F: arch/arm/mach-pxa/include/mach/palmtc.h
1000F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001001
Joe Perchesb57fe922009-12-14 18:00:52 -08001002ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001003M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001004L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001005W: http://hackndev.com
1006S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001007F: arch/arm/mach-pxa/include/mach/palmtreo.h
1008F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001009
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001010ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001011M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001012L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001013W: http://hackndev.com
1014S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001015F: arch/arm/mach-pxa/include/mach/palmz72.h
1016F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001019M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1021S: Maintained
1022
1023ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001025L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026W: http://www.arm.linux.org.uk/
1027S: Maintained
1028
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001029ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001030M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001031L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001032S: Maintained
1033
Russell Kingd4275352009-04-16 14:05:27 +01001034ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001035M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001036L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001037W: http://www.arm.linux.org.uk/
1038S: Maintained
1039F: arch/arm/common/time-acorn.c
1040F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1041F: arch/arm/include/asm/hardware/ioc.h
1042F: arch/arm/include/asm/hardware/iomd.h
1043F: arch/arm/include/asm/hardware/memc.h
1044F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001045F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001046F: drivers/net/ethernet/i825xx/ether1*
1047F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001048F: drivers/scsi/arm/
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001051M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052W: http://www.shark-linux.de/shark.html
1053S: Maintained
1054
Ben Dooksb21477f2009-06-13 10:46:34 +01001055ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001056M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001057M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001058L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001059L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001060W: http://www.fluff.org/ben/linux/
1061S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001062F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001063F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001064F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001065F: arch/arm/mach-s3c24*/
1066F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001067F: drivers/*/*s3c2410*
1068F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001069F: drivers/spi/spi-s3c*
1070F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001072ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001073M: Kukjin Kim <kgene.kim@samsung.com>
1074L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1075L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1076S: Maintained
1077F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001078F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001079
Kyungmin Park10ffa962011-03-04 17:36:26 -08001080ARM/SAMSUNG MOBILE MACHINE SUPPORT
1081M: Kyungmin Park <kyungmin.park@samsung.com>
1082L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083S: Maintained
1084F: arch/arm/mach-s5pv210/mach-aquila.c
1085F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001086F: arch/arm/mach-exynos/mach-universal_c210.c
1087F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001088
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001089ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1090M: Kyungmin Park <kyungmin.park@samsung.com>
1091M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1092L: linux-arm-kernel@lists.infradead.org
1093L: linux-media@vger.kernel.org
1094S: Maintained
1095F: arch/arm/plat-s5p/dev-fimc*
1096F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001097F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001098
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001099ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1100M: Kyungmin Park <kyungmin.park@samsung.com>
1101M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001102M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001103L: linux-arm-kernel@lists.infradead.org
1104L: linux-media@vger.kernel.org
1105S: Maintained
1106F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001107F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001108
1109ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1110M: Kyungmin Park <kyungmin.park@samsung.com>
1111M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1112L: linux-arm-kernel@lists.infradead.org
1113L: linux-media@vger.kernel.org
1114S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001115F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001116
Paul Mundtd48d38e2010-02-08 12:50:24 +09001117ARM/SHMOBILE ARM ARCHITECTURE
1118M: Paul Mundt <lethal@linux-sh.org>
1119M: Magnus Damm <magnus.damm@gmail.com>
1120L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001121W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001122Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001123T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001124S: Supported
1125F: arch/arm/mach-shmobile/
1126F: drivers/sh/
1127
Dinh Nguyen66314222012-07-18 16:07:18 -06001128ARM/SOCFPGA ARCHITECTURE
1129M: Dinh Nguyen <dinguyen@altera.com>
1130S: Maintained
1131F: arch/arm/mach-socfpga/
1132
1133ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1134M: Dinh Nguyen <dinguyen@altera.com>
1135S: Maintained
1136F: drivers/clk/socfpga/
1137
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001138ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001139M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001141S: Maintained
1142
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001143ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001144M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001145L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1146S: Maintained
1147
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001148ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001149M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001150L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001151S: Maintained
1152
wanzongshun98ad6e32009-02-13 06:04:32 +01001153ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001155L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001156W: http://www.mcuos.com
1157S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001158F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001159F: drivers/input/keyboard/w90p910_keypad.c
1160F: drivers/input/touchscreen/w90p910_ts.c
1161F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001162F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001163F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001164F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001165F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001166F: drivers/usb/host/ehci-w90x900.c
1167F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001168
Linus Walleij54274d72010-04-04 10:58:03 +01001169ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001170M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172S: Supported
1173F: arch/arm/mach-u300/
1174F: drivers/i2c/busses/i2c-stu300.c
1175F: drivers/rtc/rtc-coh901331.c
1176F: drivers/watchdog/coh901327_wdt.c
1177F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001178F: drivers/mfd/ab3100*
1179F: drivers/rtc/rtc-ab3100.c
1180F: drivers/rtc/rtc-coh901331.c
1181T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001182
Linus Walleij87572882010-12-22 09:18:29 +01001183ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001184M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001185M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001186L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1187S: Maintained
1188F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001189F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001190F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001191F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001192F: drivers/mfd/abx500*
1193F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001194F: drivers/mfd/dbx500*
1195F: drivers/mfd/db8500*
1196F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001197F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001198F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001199T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001200
Russell Kingd4275352009-04-16 14:05:27 +01001201ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001202M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001203L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001204W: http://www.arm.linux.org.uk/
1205S: Maintained
1206F: arch/arm/vfp/
1207
Marek Vasute66b6d82010-03-26 06:51:32 +01001208ARM/VOIPAC PXA270 SUPPORT
1209M: Marek Vasut <marek.vasut@gmail.com>
1210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211S: Maintained
1212F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001213F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001214
Tony Prisk04529fe2012-07-24 04:19:37 +12001215ARM/VT8500 ARM ARCHITECTURE
1216M: Tony Prisk <linux@prisktech.co.nz>
1217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218S: Maintained
1219F: arch/arm/mach-vt8500/
1220F: drivers/video/vt8500lcdfb.*
1221F: drivers/video/wm8505fb*
1222F: drivers/video/wmt_ge_rops.*
1223F: drivers/tty/serial/vt8500_serial.c
1224F: drivers/rtc/rtc-vt8500-c
1225
Marek Vasute66b6d82010-03-26 06:51:32 +01001226ARM/ZIPIT Z2 SUPPORT
1227M: Marek Vasut <marek.vasut@gmail.com>
1228L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229S: Maintained
1230F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001231F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001232
Catalin Marinas38074222012-03-05 11:49:34 +00001233ARM64 PORT (AARCH64 ARCHITECTURE)
1234M: Catalin Marinas <catalin.marinas@arm.com>
1235L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236S: Maintained
1237F: arch/arm64/
1238
George Josephd58de032010-03-05 22:17:25 +01001239ASC7621 HARDWARE MONITOR DRIVER
1240M: George Joseph <george.joseph@fairview5.com>
1241L: lm-sensors@lm-sensors.org
1242S: Maintained
1243F: Documentation/hwmon/asc7621
1244F: drivers/hwmon/asc7621.c
1245
Corentin Charyb229ece2011-02-26 10:20:40 +01001246ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001247M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001249L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001250W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001252F: drivers/platform/x86/asus*.c
1253F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001255ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001256M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001257L: lm-sensors@lm-sensors.org
1258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001259F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001260
Andrew Morton953a6472008-11-06 12:53:28 -08001261ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001262M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001263W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001265F: Documentation/crypto/async-tx-api.txt
1266F: crypto/async_tx/
1267F: drivers/dma/
1268F: include/linux/dmaengine.h
1269F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001270
Wolfram Sanga1867d32009-09-18 22:45:51 +02001271AT24 EEPROM DRIVER
1272M: Wolfram Sang <w.sang@pengutronix.de>
1273L: linux-i2c@vger.kernel.org
1274S: Maintained
1275F: drivers/misc/eeprom/at24.c
1276F: include/linux/i2c/at24.h
1277
Randy Dunlape7839f22008-10-12 16:11:45 -07001278ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001279M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001280W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001282F: Documentation/aoe/
1283F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Joe Perches9a10a872010-12-01 09:37:55 -08001285ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001286M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001287L: linux-wireless@vger.kernel.org
1288S: Supported
1289F: drivers/net/wireless/ath/*
1290
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001291ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001292M: Jiri Slaby <jirislaby@gmail.com>
1293M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001294M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001295L: linux-wireless@vger.kernel.org
1296L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001297W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001298S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001299F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001300
Kalle Valo12e62d62011-09-13 10:21:25 +03001301ATHEROS ATH6KL WIRELESS DRIVER
1302M: Kalle Valo <kvalo@qca.qualcomm.com>
1303L: linux-wireless@vger.kernel.org
1304W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1305T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1306S: Supported
1307F: drivers/net/wireless/ath/ath6kl/
1308
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001309ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001310M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1311M: Jouni Malinen <jouni@qca.qualcomm.com>
1312M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1313M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001314L: linux-wireless@vger.kernel.org
1315L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001316W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001317S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001318F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001319
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001320CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1321M: Christian Lamparter <chunkeey@googlemail.com>
1322L: linux-wireless@vger.kernel.org
1323W: http://wireless.kernel.org/en/users/Drivers/carl9170
1324S: Maintained
1325F: drivers/net/wireless/ath/carl9170/
1326
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001327ATK0110 HWMON DRIVER
1328M: Luca Tettamanti <kronos.it@gmail.com>
1329L: lm-sensors@lm-sensors.org
1330S: Maintained
1331F: drivers/hwmon/asus_atk0110.c
1332
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001333ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001336F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001337
Chris Snook7ae115b2008-09-09 03:26:57 -04001338ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001339M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001340M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001341L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001342W: http://sourceforge.net/projects/atl1
1343W: http://atl1.sourceforge.net
1344S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001345F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001348M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001349L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001350L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351W: http://linux-atm.sourceforge.net
1352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001353F: drivers/atm/
1354F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Pierre Ossman272f1332007-05-14 21:25:26 +02001356ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001357M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001358L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001359W: http://www.atmel.com/products/AT91/
1360W: http://www.at91.com/
1361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001362F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001363
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001364ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001365M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001366S: Maintained
1367F: drivers/mmc/host/atmel-mci.c
1368F: drivers/mmc/host/atmel-mci-regs.h
1369
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001370ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001371M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001372S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001373F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001374
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001375ATMEL DMA DRIVER
1376M: Nicolas Ferre <nicolas.ferre@atmel.com>
1377L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1378S: Supported
1379F: drivers/dma/at_hdmac.c
1380F: drivers/dma/at_hdmac_regs.h
1381F: arch/arm/mach-at91/include/mach/at_hdmac.h
1382
Josh Wu15515542012-03-23 17:56:29 +08001383ATMEL ISI DRIVER
1384M: Josh Wu <josh.wu@atmel.com>
1385L: linux-media@vger.kernel.org
1386S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001387F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001388F: include/media/atmel-isi.h
1389
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001390ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001391M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001392L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001394F: drivers/video/atmel_lcdfb.c
1395F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001396
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001397ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001398M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001399S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001400F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001401
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001402ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001403M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001404S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001405F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001406
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001407ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1408M: Nicolas Ferre <nicolas.ferre@atmel.com>
1409L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410S: Supported
1411F: drivers/misc/atmel_tclib.c
1412F: drivers/clocksource/tcb_clksrc.c
1413
Josh Wuff2675d2012-03-23 17:56:55 +08001414ATMEL TSADCC DRIVER
1415M: Josh Wu <josh.wu@atmel.com>
1416L: linux-input@vger.kernel.org
1417S: Supported
1418F: drivers/input/touchscreen/atmel_tsadcc.c
1419
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001420ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001421M: Nicolas Ferre <nicolas.ferre@atmel.com>
1422L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001424F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001427M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001428L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429W: http://www.thekelleys.org.uk/atmel
1430W: http://atmelwlandriver.sourceforge.net/
1431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001432F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Chris Wrighta92b7b82005-07-07 18:12:23 -07001434AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001435M: Al Viro <viro@zeniv.linux.org.uk>
1436M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001437L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001438W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001439T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001441F: include/linux/audit.h
1442F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001443
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001444AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001445M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001446W: http://miguelojeda.es/auxdisplay.htm
1447W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001449F: drivers/auxdisplay/
1450F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001451
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001452AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001453M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1454M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001455W: http://www.atmel.com/products/AVR32/
1456W: http://avr32linux.org/
1457W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001459F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001460
1461AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001462M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1463M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001465F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001468M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001470W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001472F: include/linux/ax25.h
1473F: include/net/ax25.h
1474F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001476B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001477M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001478L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001479L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001480W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001482F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001483
1484B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001485M: Larry Finger <Larry.Finger@lwfinger.net>
1486M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001487L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001488L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001489W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001491F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001492
Richard Purdie300abeb2007-02-07 22:21:07 +00001493BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001494M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001496F: drivers/video/backlight/
1497F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001498
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001499BATMAN ADVANCED
1500M: Marek Lindner <lindner_marek@yahoo.de>
1501M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001502M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001503L: b.a.t.m.a.n@lists.open-mesh.org
1504W: http://www.open-mesh.org/
1505S: Maintained
1506F: net/batman-adv/
1507
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001508BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001509M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001510L: linux-hams@vger.kernel.org
1511W: http://www.baycom.org/~tom/ham/ham.html
1512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001513F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001514
1515BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001516S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001517F: Documentation/filesystems/befs.txt
1518F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001519
1520BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001523F: Documentation/filesystems/bfs.txt
1524F: fs/bfs/
1525F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001526
Bryan Wu1394f032007-05-06 14:50:22 -07001527BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001528M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001529L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001530W: http://blackfin.uclinux.org
1531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001532F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001533
Bryan Wue190d6b2007-07-17 14:43:44 +08001534BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001535L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001536W: http://blackfin.uclinux.org
1537S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001538F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001539
Mike Frysinger566da5b2007-06-11 15:31:30 +08001540BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001541M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001542L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001543W: http://blackfin.uclinux.org
1544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001545F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001546
Mike Frysinger936ed492010-03-10 15:20:38 -08001547BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001548M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001549L: uclinux-dist-devel@blackfin.uclinux.org
1550W: http://blackfin.uclinux.org
1551S: Supported
1552F: drivers/mmc/host/bfin_sdh.c
1553
Bryan Wu1394f032007-05-06 14:50:22 -07001554BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001555M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001556L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001557W: http://blackfin.uclinux.org
1558S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001559F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001560
Bryan Wu1e6d3202007-07-15 02:50:02 +08001561BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001563L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001564W: http://blackfin.uclinux.org
1565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001566F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001567
Bryan Wud24ecfc2007-05-01 23:26:32 +02001568BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001569M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001570L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001571W: http://blackfin.uclinux.org/
1572S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001573F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001574
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001575BLINKM RGB LED DRIVER
1576M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1577S: Maintained
1578F: drivers/leds/leds-blinkm.c
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001581M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001582T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001584F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Joern Engel2b54aae2008-02-06 01:38:02 -08001586BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001587M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001588L: linux-mtd@lists.infradead.org
1589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001590F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001591
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001592BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001594M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001595M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001596L: linux-bluetooth@vger.kernel.org
1597W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001598T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1599T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001601F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001604M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001605M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001606M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001607L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001608W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001609T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1610T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001612F: net/bluetooth/
1613F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001616M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001617M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001618L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001619W: http://sourceforge.net/projects/bonding/
1620S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001621F: drivers/net/bonding/
1622F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Gary Zambrano39105892006-06-22 17:26:20 -07001624BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001626L: netdev@vger.kernel.org
1627S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001628F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001629
Michael Chan948c51e2006-06-04 02:51:39 -07001630BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001631M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001632L: netdev@vger.kernel.org
1633S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001634F: drivers/net/ethernet/broadcom/bnx2.*
1635F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001636
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001637BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001638M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001639L: netdev@vger.kernel.org
1640S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001641F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001642
Stephen Warrenf680f252012-09-15 00:18:54 -06001643BROADCOM BCM2835 ARM ARCHICTURE
1644M: Stephen Warren <swarren@wwwdotorg.org>
1645L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1646T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1647S: Maintained
1648F: arch/arm/mach-bcm2835/
1649F: arch/arm/boot/dts/bcm2835*
1650F: arch/arm/configs/bcm2835_defconfig
1651F: drivers/*/*bcm2835*
1652
Michael Chan948c51e2006-06-04 02:51:39 -07001653BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001654M: Matt Carlson <mcarlson@broadcom.com>
1655M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001656L: netdev@vger.kernel.org
1657S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001658F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001659
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001660BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1661M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001662M: Roland Vossen <rvossen@broadcom.com>
1663M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001664M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1665M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001666L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001667L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001668S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001669F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001670
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001671BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1672M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1673L: linux-scsi@vger.kernel.org
1674S: Supported
1675F: drivers/scsi/bnx2fc/
1676
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001677BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1678M: Rafał Miłecki <zajec5@gmail.com>
1679L: linux-wireless@vger.kernel.org
1680S: Maintained
1681F: drivers/bcma/
1682F: include/linux/bcma/
1683
Jing Huang7725ccf2009-09-23 17:46:15 -07001684BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001685M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001686L: linux-scsi@vger.kernel.org
1687S: Supported
1688F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001689
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001690BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1691M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001692L: netdev@vger.kernel.org
1693S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001694F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001695
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001696BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001697M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001698L: linux-scsi@vger.kernel.org
1699S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001700F: block/bsg.c
1701F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001702
Clemens Ladischaf399172011-01-10 16:32:54 +01001703BT87X AUDIO DRIVER
1704M: Clemens Ladisch <clemens@ladisch.de>
1705L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1706T: git git://git.alsa-project.org/alsa-kernel.git
1707S: Maintained
1708F: Documentation/sound/alsa/Bt87x.txt
1709F: sound/pci/bt87x.c
1710
Michael Bueschff1d5c22008-07-25 01:46:10 -07001711BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001712M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001713W: http://bu3sch.de/btgpio.php
1714S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001715F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001716
Joe Percheseb1eb042009-01-21 10:49:16 -05001717BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001718M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001719L: linux-btrfs@vger.kernel.org
1720W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001721Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001724F: Documentation/filesystems/btrfs.txt
1725F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001728M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001729L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001730W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001731T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001733F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001734F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Clemens Ladischaf399172011-01-10 16:32:54 +01001736C-MEDIA CMI8788 DRIVER
1737M: Clemens Ladisch <clemens@ladisch.de>
1738L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1739T: git git://git.alsa-project.org/alsa-kernel.git
1740S: Maintained
1741F: sound/pci/oxygen/
1742
Mark Salter21413552011-10-04 11:21:42 -04001743C6X ARCHITECTURE
1744M: Mark Salter <msalter@redhat.com>
1745M: Aurelien Jacquiot <a-jacquiot@ti.com>
1746L: linux-c6x-dev@linux-c6x.org
1747W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1748S: Maintained
1749F: arch/c6x/
1750
David Howellsa5432f52009-04-20 15:46:45 +01001751CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001752M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001753L: linux-cachefs@redhat.com
1754S: Supported
1755F: Documentation/filesystems/caching/cachefiles.txt
1756F: fs/cachefiles/
1757
Jonathan Corbet77d51402007-03-22 19:44:17 -03001758CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001759M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001760L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001761T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001763F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001764F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001765
Joe Perches201b6ba2010-09-07 20:33:24 +00001766CAIF NETWORK LAYER
1767M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1768L: netdev@vger.kernel.org
1769S: Supported
1770F: Documentation/networking/caif/
1771F: drivers/net/caif/
1772F: include/linux/caif/
1773F: include/net/caif/
1774F: net/caif/
1775
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001776CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001777M: Muli Ben-Yehuda <muli@il.ibm.com>
1778M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001779L: discuss@x86-64.org
1780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001781F: arch/x86/kernel/pci-calgary_64.c
1782F: arch/x86/kernel/tce_64.c
1783F: arch/x86/include/asm/calgary.h
1784F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001785
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001786CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001787M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001788L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001789W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001790T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001791S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001792F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001793F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001794F: include/linux/can/core.h
1795F: include/linux/can/bcm.h
1796F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001797F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001798
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001799CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001800M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001801M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001802L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001803W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001804T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001805S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001806F: drivers/net/can/
1807F: include/linux/can/dev.h
1808F: include/linux/can/error.h
1809F: include/linux/can/netlink.h
1810F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001811
James Morris95d16c72012-03-16 12:05:48 +11001812CAPABILITIES
1813M: Serge Hallyn <serge.hallyn@canonical.com>
1814L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001815S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001816F: include/linux/capability.h
1817F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001818F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001819F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001820
Arnd Bergmannb8154542008-05-16 11:10:59 +02001821CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001822M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001823L: linuxppc-dev@lists.ozlabs.org
1824L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001825W: http://www.ibm.com/developerworks/power/cell/
1826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001827F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001828F: arch/powerpc/include/asm/spu*.h
1829F: arch/powerpc/oprofile/*cell*
1830F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001831
Sage Weil9030aaf2009-10-06 11:31:15 -07001832CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001833M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001834L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001835W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001836T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001837S: Supported
1838F: Documentation/filesystems/ceph.txt
1839F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001840F: net/ceph
1841F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001842F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001843
David Vrabel18332a82008-09-17 16:34:44 +01001844CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001845L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001846S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001847F: Documentation/usb/WUSB-Design-overview.txt
1848F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001849F: drivers/usb/host/hwa-hc.c
1850F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001851F: drivers/usb/wusbcore/
1852F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001853
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001854CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001855M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001856W: http://miguelojeda.es/auxdisplay.htm
1857W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001859F: drivers/auxdisplay/cfag12864b.c
1860F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001861
1862CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001863M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001864W: http://miguelojeda.es/auxdisplay.htm
1865W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001867F: drivers/auxdisplay/cfag12864bfb.c
1868F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001869
Johannes Berg704232c2007-04-23 12:20:05 -07001870CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001871M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001872L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001873W: http://wireless.kernel.org/
1874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1875T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001877F: include/linux/nl80211.h
1878F: include/net/cfg80211.h
1879F: net/wireless/*
1880X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001881
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001882CHAR and MISC DRIVERS
1883M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001884M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001885T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001886S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001887F: drivers/char/*
1888F: drivers/misc/*
1889
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001890CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001891M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001892S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001893F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001894
Harry Weif8407f262011-02-25 14:44:15 -08001895CHINESE DOCUMENTATION
1896M: Harry Wei <harryxiyou@gmail.com>
1897L: xiyoulinuxkernelgroup@googlegroups.com
1898L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1899S: Maintained
1900F: Documentation/zh_CN/
1901
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001902CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1903M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1904L: linux-usb@vger.kernel.org
1905S: Maintained
1906F: drivers/usb/chipidea/
1907
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001908CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001909M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001910M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001911M: Neel Patel <neepatel@cisco.com>
1912M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001913S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001914F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001915
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001916CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001917M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001918L: netdev@vger.kernel.org
1919S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001920F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001921
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001922CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001923M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001924L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001926F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001927
Timur Tabid9e9d822008-04-24 08:45:26 +10001928CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001929M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001930L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001932F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001933
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001934CLEANCACHE API
1935M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1936L: linux-kernel@vger.kernel.org
1937S: Maintained
1938F: mm/cleancache.c
1939F: include/linux/cleancache.h
1940
Russell Kingd4275352009-04-16 14:05:27 +01001941CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001942M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001943S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001944F: include/linux/clk.h
1945
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001946CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001947M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001948M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1949M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001950L: linux-scsi@vger.kernel.org
1951S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001952F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001953
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001954CMPC ACPI DRIVER
1955M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1956M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001957L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001958S: Supported
1959F: drivers/platform/x86/classmate-laptop.c
1960
Nicolas Palix74425ee2010-06-06 17:15:01 +02001961COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001962M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001963M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001964M: Nicolas Palix <nicolas.palix@imag.fr>
1965L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001966W: http://coccinelle.lip6.fr/
1967S: Supported
1968F: scripts/coccinelle/
1969F: scripts/coccicheck
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001972M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973M: coda@cs.cmu.edu
1974L: codalist@coda.cs.cmu.edu
1975W: http://www.coda.cs.cmu.edu/
1976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001977F: Documentation/filesystems/coda.txt
1978F: fs/coda/
1979F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Mike Turquette7704add2012-05-02 18:37:45 -07001981COMMON CLK FRAMEWORK
1982M: Mike Turquette <mturquette@ti.com>
1983M: Mike Turquette <mturquette@linaro.org>
1984L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1985T: git git://git.linaro.org/people/mturquette/linux.git
1986S: Maintained
1987F: drivers/clk/clk.c
1988F: drivers/clk/clk-*
1989F: include/linux/clk-pr*
1990
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001991COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001992M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001993L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001994L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001995W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001996Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001997T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001999F: Documentation/filesystems/cifs.txt
2000F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002003M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002004L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002006F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002009M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002010L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002012F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002015M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002016L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002018F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002020COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002021M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002022L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002024F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002025
Simon Arlott949be0f2007-03-06 02:47:46 -08002026CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002027M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002028L: accessrunner-general@lists.sourceforge.net
2029W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002032
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002033CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002034M: Joel Becker <jlbec@evilplan.org>
2035T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002037F: fs/configfs/
2038F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002039
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002040CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002041M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002042L: netdev@vger.kernel.org
2043S: Maintained
2044F: drivers/connector/
2045
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002046CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002047M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002048M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002049L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002050L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002051T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002053F: include/linux/cgroup*
2054F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002055F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002056
Rudolf Marekbebe4672007-05-08 17:22:02 +02002057CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002058M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002059L: lm-sensors@lm-sensors.org
2060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002061F: Documentation/hwmon/coretemp
2062F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002065M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066W: http://www.fi.muni.cz/~kas/cosa/
2067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002068F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Florian Fainelli4371ee32009-06-01 02:43:17 -07002070CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002072L: netdev@vger.kernel.org
2073S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002074F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002077M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002078L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002079L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002081F: drivers/cpufreq/
2082F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002085M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002087F: arch/x86/kernel/cpuid.c
2088F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002090CPU POWER MONITORING SUBSYSTEM
2091M: Dominik Brodowski <linux@dominikbrodowski.net>
2092M: Thomas Renninger <trenn@suse.de>
2093S: Maintained
2094F: tools/power/cpupower
2095
Paul Jacksoned90fb42005-09-27 21:45:37 -07002096CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002097M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002098W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002099W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002100S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002101F: Documentation/cgroups/cpusets.txt
2102F: include/linux/cpuset.h
2103F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002106W: http://sourceforge.net/projects/cramfs/
2107S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002108F: Documentation/filesystems/cramfs.txt
2109F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002112M: Mikael Starvik <starvik@axis.com>
2113M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002114L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115W: http://developer.axis.com
2116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002117F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002118F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002121M: Herbert Xu <herbert@gondor.apana.org.au>
2122M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002124T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002126F: Documentation/crypto/
2127F: arch/*/crypto/
2128F: crypto/
2129F: drivers/crypto/
2130F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Neil Horman5b07bd52009-02-05 16:03:04 +11002132CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002133M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002134L: linux-crypto@vger.kernel.org
2135S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002136F: crypto/ansi_cprng.c
2137F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002138
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002139CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002143
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002144CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002145M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002146L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002147L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002148T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002149W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002150W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002152F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002153F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002154
Antti Palosaari91952bc2012-10-01 12:28:46 -03002155CXD2820R MEDIA DRIVER
2156M: Antti Palosaari <crope@iki.fi>
2157L: linux-media@vger.kernel.org
2158W: http://linuxtv.org/
2159W: http://palosaari.fi/linux/
2160Q: http://patchwork.linuxtv.org/project/linux-media/list/
2161T: git git://linuxtv.org/anttip/media_tree.git
2162S: Maintained
2163F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002164
Steve Wisee5ec3782008-05-20 14:06:33 -07002165CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002167L: netdev@vger.kernel.org
2168W: http://www.chelsio.com
2169S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002170F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002171
2172CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002173M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002174L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002175W: http://www.openfabrics.org
2176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002177F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002178
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002179CXGB4 ETHERNET DRIVER (CXGB4)
2180M: Dimitris Michailidis <dm@chelsio.com>
2181L: netdev@vger.kernel.org
2182W: http://www.chelsio.com
2183S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002184F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002185
2186CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2187M: Steve Wise <swise@chelsio.com>
2188L: linux-rdma@vger.kernel.org
2189W: http://www.openfabrics.org
2190S: Supported
2191F: drivers/infiniband/hw/cxgb4/
2192
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002193CXGB4VF ETHERNET DRIVER (CXGB4VF)
2194M: Casey Leedom <leedom@chelsio.com>
2195L: netdev@vger.kernel.org
2196W: http://www.chelsio.com
2197S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002198F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002199
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002200STMMAC ETHERNET DRIVER
2201M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2202L: netdev@vger.kernel.org
2203W: http://www.stlinux.com
2204S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002205F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002208M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002209L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210W: http://www.arm.linux.org.uk/
2211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002212F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002216W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002218F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002222S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002223F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002224F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002228S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002229F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002231CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002232M: Javier Martinez Canillas <javier@dowhile0.org>
2233L: linux-input@vger.kernel.org
2234S: Maintained
2235F: drivers/input/touchscreen/cyttsp*
2236F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002239M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240W: http://yaina.de/jreuter/
2241W: http://www.qsl.net/dl1bke/
2242L: linux-hams@vger.kernel.org
2243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002244F: net/ax25/af_ax25.c
2245F: net/ax25/ax25_dev.c
2246F: net/ax25/ax25_ds_*
2247F: net/ax25/ax25_in.c
2248F: net/ax25/ax25_out.c
2249F: net/ax25/ax25_timer.c
2250F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002252DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002253L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002254S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002255F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002256F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002257
2258DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002259M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002260W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002261M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002263F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002266M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002267M: Ali Akcaagac <aliakc@web.de>
2268M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002270L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271L: http://lists.twibble.org/mailman/listinfo/dc395x/
2272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002273F: Documentation/scsi/dc395x.txt
2274F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002276DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002277M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002278L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002279W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002281F: include/linux/dccp.h
2282F: include/linux/tfrc.h
2283F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286W: http://linux-decnet.sourceforge.net
2287L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002288S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002289F: Documentation/networking/decnet.txt
2290F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002293M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002295F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002297DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002298M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002299L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002301F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002304M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305W: http://www.debian.org/~dz/i8k/
2306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002307F: drivers/char/i8k.c
2308F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Doug Warzecha90563ec2005-09-06 15:17:15 -07002310DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002313F: Documentation/dcdbas.txt
2314F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002315
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002316DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002318S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002319F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002320
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002321DESIGNWARE USB3 DRD IP DRIVER
2322M: Felipe Balbi <balbi@ti.com>
2323L: linux-usb@vger.kernel.org
2324L: linux-omap@vger.kernel.org
2325T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2326S: Maintained
2327F: drivers/usb/dwc3/
2328
Kyungmin Park89d07762012-01-10 15:09:09 -08002329DEVICE FREQUENCY (DEVFREQ)
2330M: MyungJoo Ham <myungjoo.ham@samsung.com>
2331M: Kyungmin Park <kyungmin.park@samsung.com>
2332L: linux-kernel@vger.kernel.org
2333S: Maintained
2334F: drivers/devfreq/
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339S: Maintained
2340
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002341DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002342M: Alasdair Kergon <agk@redhat.com>
2343M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002344L: dm-devel@redhat.com
2345W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002346Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002347T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002349F: Documentation/device-mapper/
2350F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002351F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002352F: include/linux/device-mapper.h
2353F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002354
Guenter Roeck335d7c52011-01-26 11:45:49 -08002355DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002356M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002357L: linux-i2c@vger.kernel.org
2358S: Maintained
2359F: drivers/i2c/busses/i2c-diolan-u2c.c
2360
Randy Dunlape7839f22008-10-12 16:11:45 -07002361DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002362M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002364F: Documentation/filesystems/dnotify.txt
2365F: fs/notify/dnotify/
2366F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2371W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2372W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2373S: Maintained
2374
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002375DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002378F: Documentation/filesystems/quota.txt
2379F: fs/quota/
2380F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Bernie Thompson702686a2012-03-01 13:52:13 -08002382DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2383M: Bernie Thompson <bernie@plugable.com>
2384L: linux-fbdev@vger.kernel.org
2385S: Maintained
2386W: http://plugable.com/category/projects/udlfb/
2387F: drivers/video/udlfb.c
2388F: include/video/udlfb.h
2389F: Documentation/fb/udlfb.txt
2390
Randy Dunlape7839f22008-10-12 16:11:45 -07002391DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002392M: Christine Caulfield <ccaulfie@redhat.com>
2393M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002394L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002395W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002396T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002398F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002399
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302400DMA BUFFER SHARING FRAMEWORK
2401M: Sumit Semwal <sumit.semwal@linaro.org>
2402S: Maintained
2403L: linux-media@vger.kernel.org
2404L: dri-devel@lists.freedesktop.org
2405L: linaro-mm-sig@lists.linaro.org
2406F: drivers/base/dma-buf*
2407F: include/linux/dma-buf*
2408F: Documentation/dma-buf-sharing.txt
2409T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2410
Dan Williamsb3e5f262007-08-07 10:26:35 -07002411DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002412M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002413M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002414S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002415F: drivers/dma/
2416F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302417T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2418T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002419
Juerg Haefligerb8250372007-06-09 10:11:16 -04002420DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002421M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002422L: lm-sensors@lm-sensors.org
2423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002424F: Documentation/hwmon/dme1737
2425F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002426
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002427DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002429L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002431F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002432
Joe Perches7d2c86b2009-04-07 20:59:01 -07002433DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002434M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002435L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002436T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002438F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002441M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442L: blinux-list@redhat.com
2443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002444F: drivers/char/dtlk.c
2445F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002447DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002448M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002449L: linux-scsi@vger.kernel.org
2450W: http://www.adaptec.com/
2451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002452F: drivers/scsi/dpt*
2453F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002454
Philipp Reisnerb411b362009-09-25 16:07:19 -07002455DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002456P: Philipp Reisner
2457P: Lars Ellenberg
2458M: drbd-dev@lists.linbit.com
2459L: drbd-user@lists.linbit.com
2460W: http://www.drbd.org
2461T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2462T: git git://git.drbd.org/drbd-8.3.git
2463S: Supported
2464F: drivers/block/drbd/
2465F: lib/lru_cache.c
2466F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002467
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002468DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002469M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002470T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002472F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002473F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002474F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002475F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002476F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002477F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002478F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002481M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002482L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002483T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002485F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002486F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Chris Wilson8daf7472010-09-28 14:07:26 +01002488INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002489M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002490L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002491L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002492T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002493S: Supported
2494F: drivers/gpu/drm/i915
2495F: include/drm/i915*
2496
Kyungmin Park398a6d42011-11-02 11:33:16 +09002497DRM DRIVERS FOR EXYNOS
2498M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002499M: Joonyoung Shim <jy0922.shim@samsung.com>
2500M: Seung-Woo Kim <sw0312.kim@samsung.com>
2501M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002502L: dri-devel@lists.freedesktop.org
2503S: Supported
2504F: drivers/gpu/drm/exynos
2505F: include/drm/exynos*
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002508M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002509L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002511F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Antti Palosaari91952bc2012-10-01 12:28:46 -03002513DVB_USB_AF9015 MEDIA DRIVER
2514M: Antti Palosaari <crope@iki.fi>
2515L: linux-media@vger.kernel.org
2516W: http://linuxtv.org/
2517W: http://palosaari.fi/linux/
2518Q: http://patchwork.linuxtv.org/project/linux-media/list/
2519T: git git://linuxtv.org/anttip/media_tree.git
2520S: Maintained
2521F: drivers/media/usb/dvb-usb-v2/af9015*
2522
2523DVB_USB_AF9035 MEDIA DRIVER
2524M: Antti Palosaari <crope@iki.fi>
2525L: linux-media@vger.kernel.org
2526W: http://linuxtv.org/
2527W: http://palosaari.fi/linux/
2528Q: http://patchwork.linuxtv.org/project/linux-media/list/
2529T: git git://linuxtv.org/anttip/media_tree.git
2530S: Maintained
2531F: drivers/media/usb/dvb-usb-v2/af9035*
2532
2533DVB_USB_ANYSEE MEDIA DRIVER
2534M: Antti Palosaari <crope@iki.fi>
2535L: linux-media@vger.kernel.org
2536W: http://linuxtv.org/
2537W: http://palosaari.fi/linux/
2538Q: http://patchwork.linuxtv.org/project/linux-media/list/
2539T: git git://linuxtv.org/anttip/media_tree.git
2540S: Maintained
2541F: drivers/media/usb/dvb-usb-v2/anysee*
2542
2543DVB_USB_AU6610 MEDIA DRIVER
2544M: Antti Palosaari <crope@iki.fi>
2545L: linux-media@vger.kernel.org
2546W: http://linuxtv.org/
2547W: http://palosaari.fi/linux/
2548Q: http://patchwork.linuxtv.org/project/linux-media/list/
2549T: git git://linuxtv.org/anttip/media_tree.git
2550S: Maintained
2551F: drivers/media/usb/dvb-usb-v2/au6610*
2552
2553DVB_USB_CE6230 MEDIA DRIVER
2554M: Antti Palosaari <crope@iki.fi>
2555L: linux-media@vger.kernel.org
2556W: http://linuxtv.org/
2557W: http://palosaari.fi/linux/
2558Q: http://patchwork.linuxtv.org/project/linux-media/list/
2559T: git git://linuxtv.org/anttip/media_tree.git
2560S: Maintained
2561F: drivers/media/usb/dvb-usb-v2/ce6230*
2562
Michael Krufkyd099dea2012-10-02 00:56:20 -03002563DVB_USB_CXUSB MEDIA DRIVER
2564M: Michael Krufky <mkrufky@linuxtv.org>
2565L: linux-media@vger.kernel.org
2566W: http://linuxtv.org/
2567W: http://github.com/mkrufky
2568Q: http://patchwork.linuxtv.org/project/linux-media/list/
2569T: git git://linuxtv.org/media_tree.git
2570S: Maintained
2571F: drivers/media/usb/dvb-usb-v2/cxusb*
2572
Antti Palosaari91952bc2012-10-01 12:28:46 -03002573DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2574M: Antti Palosaari <crope@iki.fi>
2575L: linux-media@vger.kernel.org
2576W: http://linuxtv.org/
2577W: http://palosaari.fi/linux/
2578Q: http://patchwork.linuxtv.org/project/linux-media/list/
2579T: git git://linuxtv.org/anttip/media_tree.git
2580S: Maintained
2581F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2582
2583DVB_USB_EC168 MEDIA DRIVER
2584M: Antti Palosaari <crope@iki.fi>
2585L: linux-media@vger.kernel.org
2586W: http://linuxtv.org/
2587W: http://palosaari.fi/linux/
2588Q: http://patchwork.linuxtv.org/project/linux-media/list/
2589T: git git://linuxtv.org/anttip/media_tree.git
2590S: Maintained
2591F: drivers/media/usb/dvb-usb-v2/ec168*
2592
Michael Krufky8856f5f2012-10-02 00:55:50 -03002593DVB_USB_MXL111SF MEDIA DRIVER
2594M: Michael Krufky <mkrufky@linuxtv.org>
2595L: linux-media@vger.kernel.org
2596W: http://linuxtv.org/
2597W: http://github.com/mkrufky
2598Q: http://patchwork.linuxtv.org/project/linux-media/list/
2599T: git git://linuxtv.org/mkrufky/mxl111sf.git
2600S: Maintained
2601F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2602
Antti Palosaari91952bc2012-10-01 12:28:46 -03002603DVB_USB_RTL28XXU MEDIA DRIVER
2604M: Antti Palosaari <crope@iki.fi>
2605L: linux-media@vger.kernel.org
2606W: http://linuxtv.org/
2607W: http://palosaari.fi/linux/
2608Q: http://patchwork.linuxtv.org/project/linux-media/list/
2609T: git git://linuxtv.org/anttip/media_tree.git
2610S: Maintained
2611F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2612
2613DVB_USB_V2 MEDIA DRIVER
2614M: Antti Palosaari <crope@iki.fi>
2615L: linux-media@vger.kernel.org
2616W: http://linuxtv.org/
2617W: http://palosaari.fi/linux/
2618Q: http://patchwork.linuxtv.org/project/linux-media/list/
2619T: git git://linuxtv.org/anttip/media_tree.git
2620S: Maintained
2621F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2622F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2623
Jason Baronac0ac382011-08-11 14:36:43 -04002624DYNAMIC DEBUG
2625M: Jason Baron <jbaron@redhat.com>
2626S: Maintained
2627F: lib/dynamic_debug.c
2628F: include/linux/dynamic_debug.h
2629
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002630DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002631M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002632S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002633F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002634
Antti Palosaari91952bc2012-10-01 12:28:46 -03002635E4000 MEDIA DRIVER
2636M: Antti Palosaari <crope@iki.fi>
2637L: linux-media@vger.kernel.org
2638W: http://linuxtv.org/
2639W: http://palosaari.fi/linux/
2640Q: http://patchwork.linuxtv.org/project/linux-media/list/
2641T: git git://linuxtv.org/anttip/media_tree.git
2642S: Maintained
2643F: drivers/media/tuners/e4000*
2644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002646M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002647L: linux-eata@i-connect.net
2648L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002650F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002653M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654L: linux-scsi@vger.kernel.org
2655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002656F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
2658EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002659M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002660L: linux-eata@i-connect.net
2661L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002663F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002666M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002667L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668W: http://ebtables.sourceforge.net/
2669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002670F: include/linux/netfilter_bridge/ebt_*.h
2671F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Antti Palosaari91952bc2012-10-01 12:28:46 -03002673EC100 MEDIA DRIVER
2674M: Antti Palosaari <crope@iki.fi>
2675L: linux-media@vger.kernel.org
2676W: http://linuxtv.org/
2677W: http://palosaari.fi/linux/
2678Q: http://patchwork.linuxtv.org/project/linux-media/list/
2679T: git git://linuxtv.org/anttip/media_tree.git
2680S: Maintained
2681F: drivers/media/dvb-frontends/ec100*
2682
Michael Halcrow237fead2006-10-04 02:16:22 -07002683ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002684M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002685M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002686L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002687W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002689F: Documentation/filesystems/ecryptfs.txt
2690F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002691
Alan Coxda9bb1d2006-01-18 17:44:13 -08002692EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002693M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002694L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002695W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002697F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002698F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002699F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002700
Borislav Petkovc476c232009-05-20 20:31:58 +02002701EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002702M: Doug Thompson <dougthompson@xmission.com>
2703M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002704L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002705W: bluesmoke.sourceforge.net
2706S: Supported
2707F: drivers/edac/amd64_edac*
2708
Dave Peterson0e438e32006-03-26 01:38:55 -08002709EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002710M: Mark Gross <mark.gross@intel.com>
2711M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002712L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002713W: bluesmoke.sourceforge.net
2714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002715F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002716
2717EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002718M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002719L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002720W: bluesmoke.sourceforge.net
2721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002722F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002723
Douglas Thompson6bc78402007-07-19 01:50:12 -07002724EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002725M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002726L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002727W: bluesmoke.sourceforge.net
2728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002729F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002730
2731EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002733L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002734W: bluesmoke.sourceforge.net
2735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002737
2738EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002740L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002741W: bluesmoke.sourceforge.net
2742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002743F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002744
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002745EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002747L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002748W: bluesmoke.sourceforge.net
2749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002750F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002751
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002752EDAC-I7300
2753M: Mauro Carvalho Chehab <mchehab@redhat.com>
2754L: linux-edac@vger.kernel.org
2755W: bluesmoke.sourceforge.net
2756S: Maintained
2757F: drivers/edac/i7300_edac.c
2758
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002759EDAC-I7CORE
2760M: Mauro Carvalho Chehab <mchehab@redhat.com>
2761L: linux-edac@vger.kernel.org
2762W: bluesmoke.sourceforge.net
2763S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002764F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002765
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002766EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002767M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302768M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002769L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002770W: bluesmoke.sourceforge.net
2771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002772F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002773
2774EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002775M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002776L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002777W: bluesmoke.sourceforge.net
2778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002779F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002780
Dave Peterson0e438e32006-03-26 01:38:55 -08002781EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002782M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002783L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002784W: bluesmoke.sourceforge.net
2785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002786F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002787
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002788EDAC-SBRIDGE
2789M: Mauro Carvalho Chehab <mchehab@redhat.com>
2790L: linux-edac@vger.kernel.org
2791W: bluesmoke.sourceforge.net
2792S: Maintained
2793F: drivers/edac/sb_edac.c
2794
Clemens Ladischaf399172011-01-10 16:32:54 +01002795EDIROL UA-101/UA-1000 DRIVER
2796M: Clemens Ladisch <clemens@ladisch.de>
2797L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2798T: git git://git.alsa-project.org/alsa-kernel.git
2799S: Maintained
2800F: sound/usb/misc/ua101.c
2801
Matt Fleming1f7df952012-10-03 10:04:02 +01002802EXTENSIBLE FIRMWARE INTERFACE (EFI)
2803M: Matt Fleming <matt.fleming@intel.com>
2804L: linux-efi@vger.kernel.org
2805S: Maintained
2806F: Documentation/x86/efi-stub.txt
2807F: arch/ia64/kernel/efi.c
2808F: arch/x86/boot/compressed/eboot.[ch]
2809F: arch/x86/include/asm/efi.h
2810F: arch/x86/platform/efi/*
2811F: drivers/firmware/efivars.c
2812F: include/linux/efi*.h
2813
Peter Jones85a00d92010-09-22 13:05:04 -07002814EFIFB FRAMEBUFFER DRIVER
2815L: linux-fbdev@vger.kernel.org
2816M: Peter Jones <pjones@redhat.com>
2817S: Maintained
2818F: drivers/video/efifb.c
2819
Josh Triplett0bee8d22006-07-30 03:03:58 -07002820EFS FILESYSTEM
2821W: http://aeschi.ch.eu.org/efs/
2822S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002823F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002824
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002825EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2827M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002828L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002831
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002832EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002833M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002834L: netdev@vger.kernel.org
2835S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002836F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002837
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002838EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002839M: Paul Gortmaker <paul.gortmaker@windriver.com>
2840M: Matt Mackall <mpm@selenic.com>
2841M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002842L: linux-embedded@vger.kernel.org
2843S: Maintained
2844
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002845EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002847L: linux-scsi@vger.kernel.org
2848W: http://sourceforge.net/projects/lpfcxxxx
2849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002850F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002851
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002852ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002853M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002854S: Maintained
2855F: drivers/misc/cb710/
2856F: drivers/mmc/host/cb710-mmc.*
2857F: include/linux/cb710.h
2858
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002859ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2860M: Maxim Levitsky <maximlevitsky@gmail.com>
2861S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002862F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002865M: Christopher Hoover <ch@murgatroid.com>
2866M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002868F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002870EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002871M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002872S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002873T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002874F: drivers/video/s1d13xxxfb.c
2875F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002878M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002879L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002881F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002884M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002885L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002886L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002887W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002889F: include/linux/netfilter_bridge/
2890F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002895F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002898M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002899L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002901F: Documentation/filesystems/ext2.txt
2902F: fs/ext2/
2903F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002906M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002907M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002908M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002909L: linux-ext4@vger.kernel.org
2910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: Documentation/filesystems/ext3.txt
2912F: fs/ext3/
2913F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002914
2915EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002916M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002917M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002918L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002919W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002920Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002922F: Documentation/filesystems/ext4.txt
2923F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Mimi Zoharc5532b02011-08-17 18:52:24 -04002925Extended Verification Module (EVM)
2926M: Mimi Zohar <zohar@us.ibm.com>
2927S: Supported
2928F: security/integrity/evm/
2929
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002930EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2931M: MyungJoo Ham <myungjoo.ham@samsung.com>
2932M: Chanwoo Choi <cw00.choi@samsung.com>
2933L: linux-kernel@vger.kernel.org
2934S: Maintained
2935F: drivers/extcon/
2936F: Documentation/extcon/
2937
Jingoo Han0a799512012-02-06 11:30:39 +09002938EXYNOS DP DRIVER
2939M: Jingoo Han <jg1.han@samsung.com>
2940L: linux-fbdev@vger.kernel.org
2941S: Maintained
2942F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002943F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002944
Donghwa Lee33ad3912012-03-06 11:44:58 +09002945EXYNOS MIPI DISPLAY DRIVERS
2946M: Inki Dae <inki.dae@samsung.com>
2947M: Donghwa Lee <dh09.lee@samsung.com>
2948M: Kyungmin Park <kyungmin.park@samsung.com>
2949L: linux-fbdev@vger.kernel.org
2950S: Maintained
2951F: drivers/video/exynos/exynos_mipi*
2952F: include/video/exynos_mipi*
2953
Jean Delvaree53004e2006-01-09 23:26:14 +01002954F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002956L: lm-sensors@lm-sensors.org
2957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002958F: Documentation/hwmon/f71805f
2959F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002960
Michael Büscheea977e2012-04-02 12:14:32 -03002961FC0011 TUNER DRIVER
2962M: Michael Buesch <m@bues.ch>
2963L: linux-media@vger.kernel.org
2964S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002965F: drivers/media/tuners/fc0011.h
2966F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002967
Antti Palosaari91952bc2012-10-01 12:28:46 -03002968FC2580 MEDIA DRIVER
2969M: Antti Palosaari <crope@iki.fi>
2970L: linux-media@vger.kernel.org
2971W: http://linuxtv.org/
2972W: http://palosaari.fi/linux/
2973Q: http://patchwork.linuxtv.org/project/linux-media/list/
2974T: git git://linuxtv.org/anttip/media_tree.git
2975S: Maintained
2976F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Eric Paris88b2dbd2010-08-18 12:25:50 -04002978FANOTIFY
2979M: Eric Paris <eparis@redhat.com>
2980S: Maintained
2981F: fs/notify/fanotify/
2982F: include/linux/fanotify.h
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002985M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986W: http://www.farsite.co.uk/
2987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002988F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Akinobu Mitac5408b82007-04-23 14:41:20 -07002990FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002993F: Documentation/fault-injection/
2994F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002995
Robert Lovecae727d2010-02-16 12:16:00 -08002996FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2997M: Robert Love <robert.w.love@intel.com>
2998L: devel@open-fcoe.org
2999W: www.Open-FCoE.org
3000S: Supported
3001F: drivers/scsi/libfc/
3002F: drivers/scsi/fcoe/
3003F: include/scsi/fc/
3004F: include/scsi/libfc.h
3005F: include/scsi/libfcoe.h
3006
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003007FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003008M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003009L: linux-fsdevel@vger.kernel.org
3010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003011F: include/linux/fcntl.h
3012F: include/linux/fs.h
3013F: fs/fcntl.c
3014F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003015
3016FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003018L: linux-fsdevel@vger.kernel.org
3019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003020F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003021
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003022FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003023M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003024L: lm-sensors@lm-sensors.org
3025S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003026F: drivers/hwmon/f75375s.c
3027F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003028
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003029FIREWIRE AUDIO DRIVERS
3030M: Clemens Ladisch <clemens@ladisch.de>
3031L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3032T: git git://git.alsa-project.org/alsa-kernel.git
3033S: Maintained
3034F: sound/firewire/
3035
Chris Boota511ce32012-04-14 17:50:35 -07003036FIREWIRE SBP-2 TARGET
3037M: Chris Boot <bootc@bootc.net>
3038L: linux-scsi@vger.kernel.org
3039L: target-devel@vger.kernel.org
3040L: linux1394-devel@lists.sourceforge.net
3041T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3042S: Maintained
3043F: drivers/target/sbp/
3044
Joe Perches7d2c86b2009-04-07 20:59:01 -07003045FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003046M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003047L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003048W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003049T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003051F: drivers/firewire/
3052F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003053F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003054
3055FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003056M: Ming Lei <ming.lei@canonical.com>
3057L: linux-kernel@vger.kernel.org
3058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003059F: Documentation/firmware_class/
3060F: drivers/base/firmware*.c
3061F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003062
Jiri Kosina8206f662012-05-18 13:52:29 +02003063FLOPPY DRIVER
3064M: Jiri Kosina <jkosina@suse.cz>
3065T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3066S: Odd fixes
3067F: drivers/block/floppy.c
3068
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003069FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003070M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003071W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003073F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003074
3075FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003076L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003077S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003078F: drivers/net/wan/dlci.c
3079F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003082M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003083L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003085Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003086T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003088F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003089F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003090F: drivers/video/
3091F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003092F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Zhang Wei173acc72008-03-01 07:42:48 -07003094FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003095M: Li Yang <leoli@freescale.com>
3096M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003097L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003099F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003100
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003101FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003102M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003103L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003104L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003107
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003108FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003109M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003110L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003111L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003113F: arch/arm/plat-mxc/include/mach/imxfb.h
3114F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003115
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003116FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003117M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3118M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003119L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003120L: netdev@vger.kernel.org
3121S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003122F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003123F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003124
Timur Tabid9e9d822008-04-24 08:45:26 +10003125FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003126M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003127L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003129F: arch/powerpc/sysdev/qe_lib/
3130F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003131
Joe Perchesb55ef9292009-10-26 16:49:46 -07003132FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003134L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003135L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003136S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003137F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003138
Li Yangbeaf53b2007-05-25 13:54:02 +08003139FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003140M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003141L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003142L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003143S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003144F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003145
Timur Tabid9e9d822008-04-24 08:45:26 +10003146FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003147M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003148L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003149S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003150F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003151
3152FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003153M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003154L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003155L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003156S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003157F: sound/soc/fsl/fsl*
3158F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
Pavel Machek71038f52009-01-15 13:51:02 -08003166FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003167M: Pavel Machek <pavel@ucw.cz>
3168M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003169L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003171F: Documentation/power/freezing-of-tasks.txt
3172F: include/linux/freezer.h
3173F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003174
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003175FRONTSWAP API
3176M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3177L: linux-kernel@vger.kernel.org
3178S: Maintained
3179F: mm/frontswap.c
3180F: include/linux/frontswap.h
3181
David Howellsa5432f52009-04-20 15:46:45 +01003182FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003183M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003184L: linux-cachefs@redhat.com
3185S: Supported
3186F: Documentation/filesystems/caching/
3187F: fs/fscache/
3188F: include/linux/fscache*.h
3189
David Howells5ab7ffe2007-04-10 15:10:45 +01003190FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003191M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003193F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Jonathan Woithe20b93732008-06-11 10:14:56 +09303195FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303196M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003197L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003199F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303200
Heungjun Kim4da621b2011-11-11 08:05:33 -03003201FUJITSU M-5MO LS CAMERA ISP DRIVER
3202M: Kyungmin Park <kyungmin.park@samsung.com>
3203M: Heungjun Kim <riverful.kim@samsung.com>
3204L: linux-media@vger.kernel.org
3205S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003206F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003207F: include/media/m5mols.h
3208
Robert Gerlach2d24c492012-01-18 14:26:22 +01003209FUJITSU TABLET EXTRAS
3210M: Robert Gerlach <khnz@gmx.de>
3211L: platform-driver-x86@vger.kernel.org
3212S: Maintained
3213F: drivers/platform/x86/fujitsu-tablet.c
3214
Miklos Szeredi04578f12005-09-09 13:10:22 -07003215FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003216M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003217L: fuse-devel@lists.sourceforge.net
3218W: http://fuse.sourceforge.net/
3219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003220F: fs/fuse/
3221F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003224M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003226S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003227F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003230M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231L: linux-scsi@vger.kernel.org
3232W: http://www.icp-vortex.com/
3233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003234F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003236GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003237M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003239F: drivers/i2c/busses/i2c-gpio.c
3240F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003241
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003242GENERIC GPIO I2C MULTIPLEXER DRIVER
3243M: Peter Korsgaard <peter.korsgaard@barco.com>
3244L: linux-i2c@vger.kernel.org
3245S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003246F: drivers/i2c/muxes/i2c-mux-gpio.c
3247F: include/linux/i2c-mux-gpio.h
3248F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003249
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003250GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003251M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003254F: drivers/net/wan/c101.c
3255F: drivers/net/wan/hd6457*
3256F: drivers/net/wan/hdlc*
3257F: drivers/net/wan/n2.c
3258F: drivers/net/wan/pc300too.c
3259F: drivers/net/wan/pci200syn.c
3260F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003262GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003263M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003264L: linux-arch@vger.kernel.org
3265T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3266S: Maintained
3267F: include/asm-generic
3268
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003269GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003270M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003271L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003272S: Supported
3273F: drivers/uio/uio_pci_generic.c
3274
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003275GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003276M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003277L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003278W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003279T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3280T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003282F: Documentation/filesystems/gfs2*.txt
3283F: fs/gfs2/
3284F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003285
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003286GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003287M: Hansjoerg Lipp <hjlipp@web.de>
3288M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003289L: gigaset307x-common@lists.sourceforge.net
3290W: http://gigaset307x.sourceforge.net/
3291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003292F: Documentation/isdn/README.gigaset
3293F: drivers/isdn/gigaset/
3294F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003295
Grant Likelya0dc00b2011-02-12 01:48:14 -07003296GPIO SUBSYSTEM
3297M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003298M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003299S: Maintained
3300T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003301F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003302F: drivers/gpio/
3303F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003304F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003305
Harry Wei71a6d0a2011-05-11 15:13:33 -07003306GRE DEMULTIPLEXER DRIVER
3307M: Dmitry Kozlov <xeb@mail.ru>
3308L: netdev@vger.kernel.org
3309S: Maintained
3310F: net/ipv4/gre.c
3311F: include/net/gre.h
3312
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003313GRETH 10/100/1G Ethernet MAC device driver
3314M: Kristoffer Glembo <kristoffer@gaisler.com>
3315L: netdev@vger.kernel.org
3316S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003317F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003318
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003319GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003320M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003321L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003322T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003323S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003324F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003325
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003326GSPCA GL860 SUBDRIVER
3327M: Olivier Lorin <o.lorin@laposte.net>
3328L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003329T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003330S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003331F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003332
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003333GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003334M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003335L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003336T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003337S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003338F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003339
3340GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003341M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003342L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003343T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003344S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003345F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003346
Brian Johnson261982f2009-07-19 15:58:56 -03003347GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003348M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003349L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003350T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003351S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003352F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003353
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003354GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003355M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003356L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003357T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003358S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003359F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003360
3361GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003362M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003363L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003364T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003365S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003366F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003367
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003368STK1160 USB VIDEO CAPTURE DRIVER
3369M: Ezequiel Garcia <elezegarcia@gmail.com>
3370L: linux-media@vger.kernel.org
3371T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3372S: Maintained
3373F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003374
Harry Wei71a6d0a2011-05-11 15:13:33 -07003375HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3376M: Frank Seidel <frank@f-seidel.de>
3377L: platform-driver-x86@vger.kernel.org
3378W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3379S: Maintained
3380F: drivers/platform/x86/hdaps.c
3381
3382HWPOISON MEMORY FAILURE HANDLING
3383M: Andi Kleen <andi@firstfloor.org>
3384L: linux-mm@kvack.org
3385T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3386S: Maintained
3387F: mm/memory-failure.c
3388F: mm/hwpoison-inject.c
3389
3390HYPERVISOR VIRTUAL CONSOLE DRIVER
3391L: linuxppc-dev@lists.ozlabs.org
3392S: Odd Fixes
3393F: drivers/tty/hvc/
3394
Michael Buesch844dd052006-06-26 00:24:59 -07003395HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003396M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003397M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003398L: lm-sensors@lm-sensors.org
3399W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003400T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003401T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003402S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003403F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003404F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003405F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003406
3407HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003408M: Matt Mackall <mpm@selenic.com>
3409M: Herbert Xu <herbert@gondor.apana.org.au>
3410S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003411F: Documentation/hw_random.txt
3412F: drivers/char/hw_random/
3413F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003414
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003415HARDWARE SPINLOCK CORE
3416M: Ohad Ben-Cohen <ohad@wizery.com>
3417S: Maintained
3418F: Documentation/hwspinlock.txt
3419F: drivers/hwspinlock/hwspinlock_*
3420F: include/linux/hwspinlock.h
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003423L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003425F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
Antti Palosaari91952bc2012-10-01 12:28:46 -03003427HD29L2 MEDIA DRIVER
3428M: Antti Palosaari <crope@iki.fi>
3429L: linux-media@vger.kernel.org
3430W: http://linuxtv.org/
3431W: http://palosaari.fi/linux/
3432Q: http://patchwork.linuxtv.org/project/linux-media/list/
3433T: git git://linuxtv.org/anttip/media_tree.git
3434S: Maintained
3435F: drivers/media/dvb-frontends/hd29l2*
3436
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003437HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003438M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003439L: iss_storagedev@hp.com
3440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003441F: Documentation/blockdev/cpqarray.txt
3442F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003443
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003444HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003445M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003446L: iss_storagedev@hp.com
3447S: Supported
3448F: Documentation/scsi/hpsa.txt
3449F: drivers/scsi/hpsa*.[ch]
3450F: include/linux/cciss*.h
3451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003452HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003454L: iss_storagedev@hp.com
3455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003456F: Documentation/blockdev/cciss.txt
3457F: drivers/block/cciss*
3458F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003461L: linux-fsdevel@vger.kernel.org
3462S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003463F: Documentation/filesystems/hfs.txt
3464F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468L: linux-nvidia@lists.surfsouth.com
3469W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003471F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003473HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: Pavel Machek <pavel@ucw.cz>
3475M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003476L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003478F: arch/x86/power/
3479F: drivers/base/power/
3480F: kernel/power/
3481F: include/linux/suspend.h
3482F: include/linux/freezer.h
3483F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003484F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003485
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003486HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003487M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003488L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003489T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003491F: drivers/hid/
3492F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003493
Ingo Molnar38bed542007-02-22 09:09:34 +01003494HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003496T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003498F: Documentation/timers/
3499F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003500F: kernel/time/clockevents.c
3501F: kernel/time/tick*.*
3502F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003503F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003504F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003508S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003509F: drivers/net/hamradio/dmascc.c
3510F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003512HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003513M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003514W: http://www.highpoint-tech.com
3515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003516F: Documentation/scsi/hptiop.txt
3517F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003520M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521L: linux-hippi@sunsite.dk
3522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003523F: include/linux/hippidevice.h
3524F: include/linux/if_hippi.h
3525F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003526F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
Jouni Malinenff1d2762005-05-12 22:54:16 -04003528HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003529M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003530L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003531L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003532W: http://hostap.epitest.fi/
3533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003534F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003535
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003536HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003537L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003538S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003539F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003540
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003541HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003542M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003543S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003544F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003545
Joe Perches7d2c86b2009-04-07 20:59:01 -07003546HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003547M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003549F: Documentation/timers/hpet.txt
3550F: drivers/char/hpet.c
3551F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003552
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003553HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003554M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003556F: arch/x86/kernel/hpet.c
3557F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003560M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003563F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Joe Perches7d2c86b2009-04-07 20:59:01 -07003565HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003566M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003567W: http://www.pharscape.org
3568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003569F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003570
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003571HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003572M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003573L: linux-input@vger.kernel.org
3574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003575F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003580F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003582Hyper-V CORE AND DRIVERS
3583M: K. Y. Srinivasan <kys@microsoft.com>
3584M: Haiyang Zhang <haiyangz@microsoft.com>
3585L: devel@linuxdriverproject.org
3586S: Maintained
3587F: drivers/hv/
3588F: drivers/hid/hid-hyperv.c
3589F: drivers/net/hyperv/
3590F: drivers/staging/hv/
3591
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003592I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003593M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003594L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003597
Jean Delvare5b543962005-08-15 19:51:02 +02003598I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003599M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3600M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003601M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003602L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003603W: http://i2c.wiki.kernel.org/
3604T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003605T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003607F: Documentation/i2c/
3608F: drivers/i2c/
3609F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003610F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Till Harbaume8c76ee2007-05-01 23:26:35 +02003612I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003613M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003614L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003615W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003617F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003620M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003622F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
3624i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003626T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627S: Maintained
3628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: Tony Luck <tony.luck@intel.com>
3631M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003633T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003635F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Kent Yoder956c2032012-09-07 04:17:01 +08003637IBM Power in-Nest Crypto Acceleration
3638M: Kent Yoder <key@linux.vnet.ibm.com>
3639L: linux-crypto@vger.kernel.org
3640S: Supported
3641F: drivers/crypto/nx/
3642
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003643IBM Power 842 compression accelerator
3644M: Robert Jennings <rcj@linux.vnet.ibm.com>
3645S: Supported
3646F: drivers/crypto/nx/nx-842.c
3647F: include/linux/nx842.h
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003650M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003652F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
Santiago Leon9d348af2010-09-03 18:29:53 +00003654IBM Power Virtual Ethernet Device Driver
3655M: Santiago Leon <santil@linux.vnet.ibm.com>
3656L: netdev@vger.kernel.org
3657S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003658F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003659
Robert Jennings4b7652c2012-07-31 12:34:36 -05003660IBM Power Virtual SCSI/FC Device Drivers
3661M: Robert Jennings <rcj@linux.vnet.ibm.com>
3662L: linux-scsi@vger.kernel.org
3663S: Supported
3664F: drivers/scsi/ibmvscsi/
3665X: drivers/scsi/ibmvscsi/ibmvstgt.c
3666
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667IBM ServeRAID RAID DRIVER
3668P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003669M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003671S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003672F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003674ICH LPC AND GPIO DRIVER
3675M: Peter Tyser <ptyser@xes-inc.com>
3676S: Maintained
3677F: drivers/mfd/lpc_ich.c
3678F: drivers/gpio/gpio-ich.c
3679
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003680IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003681M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003683Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003684T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003686F: Documentation/ide/
3687F: drivers/ide/
3688F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
Ike Panhc6cb8c132011-08-25 22:28:45 +08003690IDEAPAD LAPTOP EXTRAS DRIVER
3691M: Ike Panhc <ike.pan@canonical.com>
3692L: platform-driver-x86@vger.kernel.org
3693W: http://launchpad.net/ideapad-laptop
3694S: Maintained
3695F: drivers/platform/x86/ideapad-laptop.c
3696
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003697IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003698M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003699L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: Documentation/cdrom/ide-cd
3702F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
Andy Henroid27471fd2008-10-09 11:45:22 -07003704IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003705M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003706L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003708F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003709
Sergey Lapin02cf2282009-06-08 12:18:50 +00003710IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003711M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003712M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003713L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003714W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003715T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003716S: Maintained
3717F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003718F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003719F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003720
Ameya Palande9545f862012-01-10 09:00:58 -08003721IIO SUBSYSTEM AND DRIVERS
3722M: Jonathan Cameron <jic23@cam.ac.uk>
3723L: linux-iio@vger.kernel.org
3724S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003725F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003726F: drivers/staging/iio/
3727
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003728IKANOS/ADI EAGLE ADSL USB DRIVER
3729M: Matthieu Castet <castet.matthieu@free.fr>
3730M: Stanislaw Gruszka <stf_xl@wp.pl>
3731S: Maintained
3732F: drivers/usb/atm/ueagle-atm.c
3733
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003734INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003735M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003737F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003738
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003740L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003741S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003742F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
3744INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003745M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Sean Hefty <sean.hefty@intel.com>
3747M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003748L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003749W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003750Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003751T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003753F: Documentation/infiniband/
3754F: drivers/infiniband/
3755F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Robert Lovec9f04f52005-07-15 12:21:07 -04003757INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: John McCutchan <john@johnmccutchan.com>
3759M: Robert Love <rlove@rlove.org>
3760M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003762F: Documentation/filesystems/inotify.txt
3763F: fs/notify/inotify/
3764F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003765
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003766INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003767M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3768M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003769L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003770Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003771T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003773F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003774F: include/linux/input.h
3775F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003776
Henrik Rydberg3267a872010-06-24 19:10:40 -07003777INPUT MULTITOUCH (MT) PROTOCOL
3778M: Henrik Rydberg <rydberg@euromail.se>
3779L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003780T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003781S: Maintained
3782F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003783F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003784K: \b(ABS|SYN)_MT_
3785
Dave Jiang4ac13e12011-07-29 17:16:55 -07003786INTEL C600 SERIES SAS CONTROLLER DRIVER
3787M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003788M: Lukasz Dorau <lukasz.dorau@intel.com>
3789M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003790M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003791L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003792T: git git://git.code.sf.net/p/intel-sas/isci
3793S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003794F: drivers/scsi/isci/
3795F: firmware/isci/
3796
Len Brown26717172010-03-08 14:07:30 -05003797INTEL IDLE DRIVER
3798M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003799L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003800T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003801S: Supported
3802F: drivers/idle/intel_idle.c
3803
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003804INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003805M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003806L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003808F: Documentation/fb/intelfb.txt
3809F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003810
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003812M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003813L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003815F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303817INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003818M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003819L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303820W: http://www.lesswatts.org/projects/acpi/
3821S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003822F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303823
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: arch/x86/kernel/microcode_core.c
3828F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003830INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003831M: Dan Williams <djbw@fb.com>
3832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003833F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003834
David Woodhouse6c8909b2008-10-18 16:12:17 +01003835INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003836M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003837L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003838T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003839S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003840F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003841F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003842
Dan Williamsb3e5f262007-08-07 10:26:35 -07003843INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003844M: Dan Williams <djbw@fb.com>
3845S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003846F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003847
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003848INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003849M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3852F: arch/arm/mach-ixp4xx/include/mach/npe.h
3853F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3854F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003855F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003856F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003857
Michael Buesch844dd052006-06-26 00:24:59 -07003858INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003859M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003862
Jeff Kirsher0d164402010-10-05 01:15:17 +00003863INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003864M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3865M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3866M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003867M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3868M: Don Skidmore <donald.c.skidmore@intel.com>
3869M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003870M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003871M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003873L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003874W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003875T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3876T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003878F: Documentation/networking/e100.txt
3879F: Documentation/networking/e1000.txt
3880F: Documentation/networking/e1000e.txt
3881F: Documentation/networking/igb.txt
3882F: Documentation/networking/igbvf.txt
3883F: Documentation/networking/ixgb.txt
3884F: Documentation/networking/ixgbe.txt
3885F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003886F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Len Brown6dccf9c2011-07-12 22:29:32 -04003888INTEL MRST PMU DRIVER
3889M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003890L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003891S: Supported
3892F: arch/x86/platform/mrst/pmu.*
3893
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003894INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3895M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003896L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003898F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003899F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003900F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003901
Shane Wang4bd96a72010-03-10 14:36:10 +08003902INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003903M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3904M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003905M: Shane Wang <shane.wang@intel.com>
3906L: tboot-devel@lists.sourceforge.net
3907W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003908T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003909S: Supported
3910F: Documentation/intel_txt.txt
3911F: include/linux/tboot.h
3912F: arch/x86/kernel/tboot.c
3913
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003914INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003915M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003916M: linux-wimax@intel.com
3917L: wimax@linuxwimax.org
3918S: Supported
3919W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003920F: Documentation/wimax/README.i2400m
3921F: drivers/net/wimax/i2400m/
3922F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003923
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003924INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3925M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003926L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003927S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003928F: drivers/net/wireless/iwlegacy/
3929
Zhu Yib481de92007-09-25 17:54:57 -07003930INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003931M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003932M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003933M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003934L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003935W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003936T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003938F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003939
Tomas Winklerde8fe022012-05-09 16:39:02 +03003940INTEL MANAGEMENT ENGINE (mei)
3941M: Tomas Winkler <tomas.winkler@intel.com>
3942L: linux-kernel@vger.kernel.org
3943S: Supported
3944F: include/linux/mei.h
3945F: drivers/misc/mei/*
3946F: Documentation/mei/*
3947
Ralf Baechlecb109a02007-08-30 23:56:30 -07003948IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950L: linux-mips@linux-mips.org
3951S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003952F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Ralf Baechlecb109a02007-08-30 23:56:30 -07003954IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003955M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003956L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003957S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003958F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003959
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003960IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003961M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003963F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Francois Romieu1202d6f2007-09-17 17:13:55 -07003965IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003966M: Francois Romieu <romieu@fr.zoreil.com>
3967M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003968L: netdev@vger.kernel.org
3969S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003970F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003971
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003972IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003973M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003974L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003976F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003977
Corey Minyard4409ebe2006-04-20 02:43:12 -07003978IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003979M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003980L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003981W: http://openipmi.sourceforge.net/
3982S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003983F: Documentation/IPMI.txt
3984F: drivers/char/ipmi/
3985F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003986
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003987IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003988M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003989L: linux-scsi@vger.kernel.org
3990W: http://www.adaptec.com/
3991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003992F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003993
3994IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: Wensong Zhang <wensong@linux-vs.org>
3996M: Simon Horman <horms@verge.net.au>
3997M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003998L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003999L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004001F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004002F: include/net/ip_vs.h
4003F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004004F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005
Randy Dunlape7839f22008-10-12 16:11:45 -07004006IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004007M: Jiri Kosina <jkosina@suse.cz>
4008M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004009S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004010F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004011
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004012IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004014L: netdev@vger.kernel.org
4015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004016F: include/linux/ipx.h
4017F: include/net/ipx.h
4018F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004019
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004021M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004022L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004023L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004025S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004026T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004027F: Documentation/networking/irda.txt
4028F: drivers/net/irda/
4029F: include/net/irda/
4030F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004032IRQ SUBSYSTEM
4033M: Thomas Gleixner <tglx@linutronix.de>
4034S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004035T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004036F: kernel/irq/
4037
Grant Likely7ab3a832012-02-14 14:06:47 -07004038IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4039M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4040M: Grant Likely <grant.likely@secretlab.ca>
4041T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4042S: Maintained
4043F: Documentation/IRQ-domain.txt
4044F: include/linux/irqdomain.h
4045F: kernel/irq/irqdomain.c
4046
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004047ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004048M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004050F: Documentation/isapnp.txt
4051F: drivers/pnp/isapnp/
4052F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004053
Harry Wei71a6d0a2011-05-11 15:13:33 -07004054iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4055M: Peter Jones <pjones@redhat.com>
4056M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4057S: Maintained
4058F: drivers/firmware/iscsi_ibft*
4059
Mike Christie14816b1e2007-11-28 16:22:06 -08004060ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004061M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004062L: open-iscsi@googlegroups.com
4063W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004064T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004066F: drivers/scsi/*iscsi*
4067F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004068
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004070M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004071L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004072L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004074T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004076F: Documentation/isdn/
4077F: drivers/isdn/
4078F: include/linux/isdn.h
4079F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
4081ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004082M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004083L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084W: http://www.melware.de
4085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004086F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
Jean Delvared6248702010-03-05 22:17:20 +01004088IT87 HARDWARE MONITORING DRIVER
4089M: Jean Delvare <khali@linux-fr.org>
4090L: lm-sensors@lm-sensors.org
4091S: Maintained
4092F: Documentation/hwmon/it87
4093F: drivers/hwmon/it87.c
4094
Hans Verkuil91821ff2007-12-02 09:35:33 -03004095IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004096M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004097L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004098L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004099T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004100W: http://www.ivtvdriver.org
4101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004102F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004103F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004104F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004105
Guenter Roeck4453d732010-08-09 17:21:08 -07004106JC42.4 TEMPERATURE SENSOR DRIVER
4107M: Guenter Roeck <linux@roeck-us.net>
4108L: lm-sensors@lm-sensors.org
4109S: Maintained
4110F: drivers/hwmon/jc42.c
4111F: Documentation/hwmon/jc42
4112
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004113JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004114M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004115L: jfs-discussion@lists.sourceforge.net
4116W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004117T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004119F: Documentation/filesystems/jfs.txt
4120F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004121
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004122JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004123M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004124L: netdev@vger.kernel.org
4125S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004126F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004127
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004130L: linux-mtd@lists.infradead.org
4131W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: fs/jffs2/
4134F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Josh Triplettde456d32006-07-30 03:04:00 -07004136JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004138M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004139L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004140S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004141F: fs/jbd/
4142F: include/linux/ext3_jbd.h
4143F: include/linux/jbd.h
4144
4145JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4146M: "Theodore Ts'o" <tytso@mit.edu>
4147L: linux-ext4@vger.kernel.org
4148S: Maintained
4149F: fs/jbd2/
4150F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004151
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004152JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004153M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004154L: linux-serial@vger.kernel.org
4155S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004156F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004157
Clemens Ladischaf399172011-01-10 16:32:54 +01004158K10TEMP HARDWARE MONITORING DRIVER
4159M: Clemens Ladisch <clemens@ladisch.de>
4160L: lm-sensors@lm-sensors.org
4161S: Maintained
4162F: Documentation/hwmon/k10temp
4163F: drivers/hwmon/k10temp.c
4164
Rudolf Marek4660cb32006-10-08 22:01:26 +02004165K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004166M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004167L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/hwmon/k8temp
4170F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
4172KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004173M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004174L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004175S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004176F: Documentation/kbuild/kconfig-language.txt
4177F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
Vivek Goyalea6c2082006-05-20 14:59:55 -07004179KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Vivek Goyal <vgoyal@redhat.com>
4181M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004182L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004183W: http://lse.sourceforge.net/kdump/
4184S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004185F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004186
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004188M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004189L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004191F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
Michal Marek70fb7ba2010-01-29 14:22:43 +01004193KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004194M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004195T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4196T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004197L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004199F: Documentation/kbuild/
4200F: Makefile
4201F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004202F: scripts/basic/
4203F: scripts/mk*
4204F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
4206KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004207L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004208W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004209S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004211KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004212M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004213L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004216F: fs/nfsd/
4217F: include/linux/nfsd/
4218F: fs/lockd/
4219F: fs/nfs_common/
4220F: net/sunrpc/
4221F: include/linux/lockd/
4222F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Avi Kivity426d62e2006-12-13 00:34:03 -08004224KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004225M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004226M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004227L: kvm@vger.kernel.org
4228W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004230F: Documentation/*/kvm.txt
4231F: arch/*/kvm/
4232F: arch/*/include/asm/kvm*
4233F: include/linux/kvm*
4234F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004235
Joerg Roedelad8003d2008-09-10 20:01:07 +02004236KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004237M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004238L: kvm@vger.kernel.org
4239W: http://kvm.qumranet.com
4240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004241F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004242F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004243
Hollis Blanchard513014b2008-04-16 23:28:08 -05004244KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004245M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004246L: kvm-ppc@vger.kernel.org
4247W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004249F: arch/powerpc/include/asm/kvm*
4250F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004251
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004252KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004253M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004254L: kvm-ia64@vger.kernel.org
4255W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004257F: Documentation/ia64/kvm.txt
4258F: arch/ia64/include/asm/kvm*
4259F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004260
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004261KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004263M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004264M: linux390@de.ibm.com
4265L: linux-s390@vger.kernel.org
4266W: http://www.ibm.com/developerworks/linux/linux390/
4267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004268F: Documentation/s390/kvm.txt
4269F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004270F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004271F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004272
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004273KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004274M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004275W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004276L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: include/linux/kexec.h
4279F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004280
David Howellse9714612010-03-29 23:42:09 +01004281KEYS/KEYRINGS:
4282M: David Howells <dhowells@redhat.com>
4283L: keyrings@linux-nfs.org
4284S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004285F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004286F: include/linux/key.h
4287F: include/linux/key-type.h
4288F: include/keys/
4289F: security/keys/
4290
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004291KEYS-TRUSTED
4292M: David Safford <safford@watson.ibm.com>
4293M: Mimi Zohar <zohar@us.ibm.com>
4294L: linux-security-module@vger.kernel.org
4295L: keyrings@linux-nfs.org
4296S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004297F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004298F: include/keys/trusted-type.h
4299F: security/keys/trusted.c
4300F: security/keys/trusted.h
4301
4302KEYS-ENCRYPTED
4303M: Mimi Zohar <zohar@us.ibm.com>
4304M: David Safford <safford@watson.ibm.com>
4305L: linux-security-module@vger.kernel.org
4306L: keyrings@linux-nfs.org
4307S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004308F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004309F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004310F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004311
Jason Wessel5b778da2010-05-20 21:04:28 -05004312KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004313M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004314W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004315L: kgdb-bugreport@lists.sourceforge.net
4316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004317F: Documentation/DocBook/kgdb.tmpl
4318F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004319F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004320F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004321F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004322F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004323
Pekka Enberg456db8c2008-04-28 22:47:29 +03004324KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004325M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004326M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004327S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004328F: Documentation/kmemcheck.txt
4329F: arch/x86/include/asm/kmemcheck.h
4330F: arch/x86/mm/kmemcheck/
4331F: include/linux/kmemcheck.h
4332F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004333
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004334KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004335M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004336S: Maintained
4337F: Documentation/kmemleak.txt
4338F: include/linux/kmemleak.h
4339F: mm/kmemleak.c
4340F: mm/kmemleak-test.c
4341
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004342KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004343M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4344M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4345M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004346M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/kprobes.txt
4349F: include/linux/kprobes.h
4350F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004351
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004352KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004354W: http://miguelojeda.es/auxdisplay.htm
4355W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: Documentation/auxdisplay/ks0108
4358F: drivers/auxdisplay/ks0108.c
4359F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004363S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004364F: Documentation/networking/lapb-module.txt
4365F: include/*/lapb.h
4366F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
4368LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004369M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370L: linux-scsi@vger.kernel.org
4371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004372F: Documentation/scsi/53c700.txt
4373F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
Richard Purdie263de9b2006-05-15 09:44:16 -07004375LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004376M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004377M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004378L: linux-leds@vger.kernel.org
4379T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004381F: drivers/leds/
4382F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004383
Jean Delvareb0461a42011-06-15 15:08:46 -07004384LEGACY EEPROM DRIVER
4385M: Jean Delvare <khali@linux-fr.org>
4386S: Maintained
4387F: Documentation/misc-devices/eeprom
4388F: drivers/misc/eeprom/eeprom.c
4389
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004391M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392L: legousb-devel@lists.sourceforge.net
4393W: http://legousb.sourceforge.net/
4394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004395F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
Michael Krufky055616a2012-10-02 00:56:06 -03004397LG2160 MEDIA DRIVER
4398M: Michael Krufky <mkrufky@linuxtv.org>
4399L: linux-media@vger.kernel.org
4400W: http://linuxtv.org/
4401W: http://github.com/mkrufky
4402Q: http://patchwork.linuxtv.org/project/linux-media/list/
4403T: git git://linuxtv.org/mkrufky/tuners.git
4404S: Maintained
4405F: drivers/media/dvb-frontends/lg2160.*
4406
Michael Krufky6f0e7722012-10-02 00:56:00 -03004407LGDT3305 MEDIA DRIVER
4408M: Michael Krufky <mkrufky@linuxtv.org>
4409L: linux-media@vger.kernel.org
4410W: http://linuxtv.org/
4411W: http://github.com/mkrufky
4412Q: http://patchwork.linuxtv.org/project/linux-media/list/
4413T: git git://linuxtv.org/mkrufky/tuners.git
4414S: Maintained
4415F: drivers/media/dvb-frontends/lgdt3305.*
4416
Rusty Russell568a17f2007-10-25 14:12:24 +10004417LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004418M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004419L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004420W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004421S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004422F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004423F: arch/x86/lguest/
4424F: drivers/lguest/
4425F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004426F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004427
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004429M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430W: http://www.ibm.com/linux/ltc/projects/ppc
4431S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004432F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004434LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4436M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004438L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004439Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004440T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004442F: Documentation/powerpc/
4443F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
4445LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004446M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004448L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004450F: arch/powerpc/platforms/powermac/
4451F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
Grant Likely77a76362008-07-12 12:11:43 -06004453LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004454M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004455L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004456T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004458F: arch/powerpc/platforms/512x/
4459F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460
4461LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004462M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004463M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004465L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004466T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004468F: arch/powerpc/platforms/40x/
4469F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470
Grant Likely260c02a2007-10-02 12:15:34 +10004471LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004473W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004474L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004475T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004477F: arch/powerpc/*/*virtex*
4478F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Tom Rinie93adf12005-07-26 12:49:53 -07004480LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004481M: Vitaly Bordug <vitb@kernel.crashing.org>
4482M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004483W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004484L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004485S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004486F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004489M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004490W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004491L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004492S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004493F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004494F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
Olof Johanssonab06ff32006-09-06 14:44:54 -05004496LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004497M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004498L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004499S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004500F: arch/powerpc/platforms/pasemi/
4501F: drivers/*/*pasemi*
4502F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004505M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004506L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507S: Supported
4508
Harry Weia23ce6d2011-02-11 16:52:20 +01004509LIS3LV02D ACCELEROMETER DRIVER
4510M: Eric Piel <eric.piel@tremplin-utc.net>
4511S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004512F: Documentation/misc-devices/lis3lv02d
4513F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004514F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004515
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004516LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004517M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004519F: include/linux/llc.h
4520F: include/net/llc*
4521F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004522
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004523LM73 HARDWARE MONITOR DRIVER
4524M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4525L: lm-sensors@lm-sensors.org
4526S: Maintained
4527F: drivers/hwmon/lm73.c
4528
Jean Delvare156e2d12011-07-25 21:46:11 +02004529LM78 HARDWARE MONITOR DRIVER
4530M: Jean Delvare <khali@linux-fr.org>
4531L: lm-sensors@lm-sensors.org
4532S: Maintained
4533F: Documentation/hwmon/lm78
4534F: drivers/hwmon/lm78.c
4535
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004537M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004538L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004540F: Documentation/hwmon/lm83
4541F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
4543LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004544M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004545L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004547F: Documentation/hwmon/lm90
4548F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004550LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004551M: Peter Zijlstra <peterz@infradead.org>
4552M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004553T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: Documentation/lockdep*.txt
4556F: Documentation/lockstat.txt
4557F: include/linux/lockdep.h
4558F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004559
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004560LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004561M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004562L: linux-ntfs-dev@lists.sourceforge.net
4563W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004565F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004566F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Joern Engelef6ada32009-11-20 22:17:12 +01004568LogFS
4569M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304570M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004571L: logfs@logfs.org
4572W: logfs.org
4573S: Maintained
4574F: fs/logfs/
4575
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004576LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004577M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004578M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004579L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004580L: linux-scsi@vger.kernel.org
4581W: http://www.lsilogic.com/support
4582S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004583F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004586M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587L: linux-scsi@vger.kernel.org
4588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004589F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Guenter Roecke5f5c992010-06-25 11:59:54 -07004591LTC4261 HARDWARE MONITOR DRIVER
4592M: Guenter Roeck <linux@roeck-us.net>
4593L: lm-sensors@lm-sensors.org
4594S: Maintained
4595F: Documentation/hwmon/ltc4261
4596F: drivers/hwmon/ltc4261.c
4597
Mike Frysinger81365c32008-10-29 14:01:12 -07004598LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004599M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004600M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004601M: Cyril Hrubis <chrubis@suse.cz>
4602M: Caspar Zhang <caspar@casparzhang.com>
4603M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004604L: ltp-list@lists.sourceforge.net (subscribers-only)
4605W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004606T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004607T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004608S: Maintained
4609
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004610M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004612L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004613L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4614W: http://www.linux-m32r.org/
4615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004616F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004617
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004619M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620L: linux-m68k@lists.linux-m68k.org
4621W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004622T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004624F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004625F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
4627M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004630L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004632F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
4634M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636W: http://www.tazenda.demon.co.uk/phil/linux-hp
4637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004638F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639
Jiri Benc64a327a2007-05-05 11:47:08 -07004640MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004642L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004643W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004644T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4645T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004647F: Documentation/networking/mac80211-injection.txt
4648F: include/net/mac80211.h
4649F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004650
Stefano Brivio1036d862007-12-23 04:46:27 +01004651MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004652M: Stefano Brivio <stefano.brivio@polimi.it>
4653M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004654L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004655W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004656T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4657T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004659F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004660
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004661MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004662M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004663L: netdev@vger.kernel.org
4664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004665F: drivers/net/macvlan.c
4666F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004667
Michael Kerriskfaf16682005-07-31 22:34:47 -07004668MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004669M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004670W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004671L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004672S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004673
stephen hemminger44c14c12012-04-02 12:59:47 +00004674MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4675M: Mirko Lindner <mlindner@marvell.com>
4676M: Stephen Hemminger <shemminger@vyatta.com>
4677L: netdev@vger.kernel.org
4678S: Maintained
4679F: drivers/net/ethernet/marvell/sk*
4680
Stefano Brivio74cda162007-11-19 20:27:46 +01004681MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004682M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004683L: libertas-dev@lists.infradead.org
4684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004685F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004686
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004687MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004688M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004689L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004690S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004691F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004692F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Bing Zhaofcad5842011-07-13 13:11:58 -07004694MARVELL MWIFIEX WIRELESS DRIVER
4695M: Bing Zhao <bzhao@marvell.com>
4696L: linux-wireless@vger.kernel.org
4697S: Maintained
4698F: drivers/net/wireless/mwifiex/
4699
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004700MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004701M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004702L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004703S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004704F: drivers/net/wireless/mwl8k.c
4705
Pierre Ossman2a695672009-03-16 19:52:26 +01004706MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004707M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004708S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004709F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004712L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004713S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004714F: drivers/video/matrox/matroxfb_*
4715F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
Guenter Roeckca462082012-06-01 23:28:23 -07004717MAX16065 HARDWARE MONITOR DRIVER
4718M: Guenter Roeck <linux@roeck-us.net>
4719L: lm-sensors@lm-sensors.org
4720S: Maintained
4721F: Documentation/hwmon/max16065
4722F: drivers/hwmon/max16065.c
4723
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004724MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004725M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004726L: lm-sensors@lm-sensors.org
4727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004728F: Documentation/hwmon/max6650
4729F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004730
Joe Perches127c49a2009-04-08 08:34:04 -07004731MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004732M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004733P: LinuxTV.org Project
4734L: linux-media@vger.kernel.org
4735W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004736Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004737T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004738S: Maintained
4739F: Documentation/dvb/
4740F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004741F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004742F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004743F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004744F: include/media/
4745F: include/linux/dvb/
4746F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004747
4748MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004749M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004750L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004751W: http://megaraid.lsilogic.com
4752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004753F: Documentation/scsi/megaraid.txt
4754F: drivers/scsi/megaraid.*
4755F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004756
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004757MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759W: http://www.linux-mm.org
4760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004761F: include/linux/mm.h
4762F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004763
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004764MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004765M: Johannes Weiner <hannes@cmpxchg.org>
4766M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004767M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004769L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004770L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004773F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004774
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004778W: http://www.linux-mtd.infradead.org/
4779Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004780T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004782F: drivers/mtd/
4783F: include/linux/mtd/
4784F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785
Michal Simekc6375b02009-03-27 14:25:52 +01004786MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004787M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004788L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004789W: http://www.monstr.eu/fdt/
4790T: git git://git.monstr.eu/linux-2.6-microblaze.git
4791S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004792F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793
4794MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004795M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004797F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004802W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004803T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004804Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004805S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004806F: Documentation/mips/
4807F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004810M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: include/linux/module.h
4813F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
4815MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004817S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004818F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004819F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004820F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Pavel Pisac58ff042007-05-16 01:10:41 +02004822MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004823M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004826F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004827
Jiri Slabyb9705b62008-04-30 00:53:48 -07004828MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004829M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004831F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004832F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004833
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004834MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004835M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004836L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004838F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004839
Anisse Astier0f1006b2009-12-17 11:28:49 +01004840MSI WMI SUPPORT
4841M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004842L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004843S: Supported
4844F: drivers/platform/x86/msi-wmi.c
4845
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004846MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004848T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004850F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004851
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004852MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004853M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004854L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004855T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004857F: drivers/mmc/
4858F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004859
David Brownell15a05802007-08-08 09:12:54 -07004860MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004861S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004862F: drivers/mmc/host/mmc_spi.c
4863F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004864
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004866M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004868F: Documentation/sound/oss/MultiSound
4869F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
Jiri Slabyd7354102006-12-08 02:38:35 -08004871MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004872S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004873F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004874F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004875
Felipe Balbi550a7372008-07-24 12:27:36 +03004876MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004877M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004878L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004879T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004882
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004883MXL5007T MEDIA DRIVER
4884M: Michael Krufky <mkrufky@linuxtv.org>
4885L: linux-media@vger.kernel.org
4886W: http://linuxtv.org/
4887W: http://github.com/mkrufky
4888Q: http://patchwork.linuxtv.org/project/linux-media/list/
4889T: git git://linuxtv.org/mkrufky/tuners.git
4890S: Maintained
4891F: drivers/media/tuners/mxl5007t.*
4892
Brice Goglin2d3cf582008-05-17 12:45:36 +02004893MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004894M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004895L: netdev@vger.kernel.org
4896W: http://www.myri.com/scs/download-Myri10GE.html
4897S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004898F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004901S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004902F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
Daniel Mack23dc05a2011-05-18 11:28:38 +02004904NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4905M: Daniel Mack <zonque@gmail.com>
4906S: Maintained
4907L: alsa-devel@alsa-project.org
4908W: http://www.native-instruments.com
4909F: sound/usb/caiaq/
4910
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004912M: Petr Vandrovec <petr@vandrovec.name>
4913S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004914F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
4916NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004917M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918L: linux-scsi@vger.kernel.org
4919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004920F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004922NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004923M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004924L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004925W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004926S: Supported
4927F: drivers/infiniband/hw/nes/
4928
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004929NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004930M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004931L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004933F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004934
Jon Masonb2f5a052010-07-15 08:47:27 +00004935NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004936M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004937L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004939F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004940F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004941F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944P: Harald Welte
4945P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004946M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004947M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004948L: netfilter-devel@vger.kernel.org
4949L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004950L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951W: http://www.netfilter.org/
4952W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004953T: git git://1984.lsi.us.es/nf
4954T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004956F: include/linux/netfilter*
4957F: include/linux/netfilter/
4958F: include/net/netfilter/
4959F: net/*/netfilter.c
4960F: net/*/netfilter/
4961F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
Paul Moore4cc67732006-09-25 15:57:13 -07004963NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004964M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004965W: http://netlabel.sf.net
4966L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004967S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004968F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004969F: include/net/netlabel.h
4970F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004971
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004973M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004975W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004977F: include/linux/netrom.h
4978F: include/net/netrom.h
4979F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004981NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: Documentation/blockdev/nbd.txt
4985F: drivers/block/nbd.c
4986F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Neil Horman6e436502009-10-05 03:56:55 +00004988NETWORK DROP MONITOR
4989M: Neil Horman <nhorman@tuxdriver.com>
4990L: netdev@vger.kernel.org
4991S: Maintained
4992W: https://fedorahosted.org/dropwatch/
4993F: net/core/drop_monitor.c
4994
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004996M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004997L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004998W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004999W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005000T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5001T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005003F: net/
5004F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005005F: include/linux/in.h
5006F: include/linux/net.h
5007F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
5009NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: "David S. Miller" <davem@davemloft.net>
5011M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005012M: James Morris <jmorris@namei.org>
5013M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5014M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005015L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005016T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005018F: net/ipv4/
5019F: net/ipv6/
5020F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005021F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022
David S. Miller73b76562012-10-16 14:08:40 -04005023NETWORKING [IPSEC]
5024M: Steffen Klassert <steffen.klassert@secunet.com>
5025M: Herbert Xu <herbert@gondor.apana.org.au>
5026M: "David S. Miller" <davem@davemloft.net>
5027L: netdev@vger.kernel.org
5028T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5029S: Maintained
5030F: net/xfrm/
5031F: net/key/
5032F: net/ipv4/xfrm*
5033F: net/ipv6/xfrm*
5034F: include/uapi/linux/xfrm.h
5035F: include/net/xfrm.h
5036
James Morris10e2ff12007-08-25 14:41:28 -07005037NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005038M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005039L: netdev@vger.kernel.org
5040S: Maintained
5041
John W. Linville29f8f632006-01-18 14:52:48 -08005042NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005043M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005044L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005045Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005046T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005047S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005048F: net/mac80211/
5049F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005050F: net/wireless/
5051F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005052F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005053F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005054F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005055
Joe Perches788873a2009-04-16 09:38:45 +00005056NETWORKING DRIVERS
5057L: netdev@vger.kernel.org
5058W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005059T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5060T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005061S: Odd Fixes
5062F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005063F: include/linux/if_*
5064F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00005065
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005066NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005067M: Sony Chacko <sony.chacko@qlogic.com>
5068M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005069L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005070W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005071S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005072F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005073
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005074NFC SUBSYSTEM
5075M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5076M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5077M: Samuel Ortiz <sameo@linux.intel.com>
5078L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005079L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005080S: Maintained
5081F: net/nfc/
5082F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005083F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005084F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005086NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005087M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005088L: linux-nfs@vger.kernel.org
5089W: http://client.linux-nfs.org
5090T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005092F: fs/lockd/
5093F: fs/nfs/
5094F: fs/nfs_common/
5095F: net/sunrpc/
5096F: include/linux/lockd/
5097F: include/linux/nfs*
5098F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099
5100NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005101M: Jan-Pascal van Best <janpascal@vanbest.org>
5102M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005103L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005105F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005107NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005108M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005109L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005110W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005111T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005112S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005113F: Documentation/filesystems/nilfs2.txt
5114F: fs/nilfs2/
5115F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005116
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005118M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005121F: Documentation/scsi/NinjaSCSI.txt
5122F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123
5124NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005125M: GOTO Masanori <gotom@debian.or.jp>
5126M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005129F: Documentation/scsi/NinjaSCSI.txt
5130F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005133M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005135W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005136T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005138F: Documentation/filesystems/ntfs.txt
5139F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005141NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005142M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005143L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005145F: drivers/video/riva/
5146F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
Tony Lindgrenf5525782009-05-28 13:23:53 -07005148OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005149M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005150L: linux-omap@vger.kernel.org
5151W: http://www.muru.com/linux/omap/
5152W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005153Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005154T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005155S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005156F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005157F: drivers/i2c/busses/i2c-omap.c
5158F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005159
5160OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005161M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005162L: linux-omap@vger.kernel.org
5163S: Maintained
5164F: arch/arm/*omap*/*clock*
5165
5166OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005167M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005168L: linux-omap@vger.kernel.org
5169S: Maintained
5170F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005171F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005172
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005173OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5174M: Rajendra Nayak <rnayak@ti.com>
5175M: Paul Walmsley <paul@pwsan.com>
5176L: linux-omap@vger.kernel.org
5177S: Maintained
5178F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5179F: arch/arm/mach-omap2/powerdomain44xx.c
5180F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5181F: arch/arm/mach-omap2/clockdomain44xx.c
5182
Tony Lindgrenf5525782009-05-28 13:23:53 -07005183OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005184M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005185M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005186L: alsa-devel@alsa-project.org (subscribers-only)
5187L: linux-omap@vger.kernel.org
5188S: Maintained
5189F: sound/soc/omap/
5190
5191OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005192M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005193L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005194L: linux-omap@vger.kernel.org
5195S: Maintained
5196F: drivers/video/omap/
5197
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005198OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005199M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005200L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005201L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005202S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005203F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005204F: Documentation/arm/OMAP/DSS
5205
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005206OMAP HARDWARE SPINLOCK SUPPORT
5207M: Ohad Ben-Cohen <ohad@wizery.com>
5208L: linux-omap@vger.kernel.org
5209S: Maintained
5210F: drivers/hwspinlock/omap_hwspinlock.c
5211F: arch/arm/mach-omap2/hwspinlock.c
5212
Tony Lindgrenf5525782009-05-28 13:23:53 -07005213OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005214M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005215L: linux-omap@vger.kernel.org
5216S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005217F: drivers/mmc/host/omap.c
5218
5219OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305220M: Venkatraman S <svenkatr@ti.com>
5221L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005222L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305223S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005224F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005225
5226OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005227M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005228S: Maintained
5229F: drivers/char/hw_random/omap-rng.c
5230
Paul Walmsleyf400c822010-12-06 19:08:54 -07005231OMAP HWMOD SUPPORT
5232M: Benoît Cousson <b-cousson@ti.com>
5233M: Paul Walmsley <paul@pwsan.com>
5234L: linux-omap@vger.kernel.org
5235S: Maintained
5236F: arch/arm/mach-omap2/omap_hwmod.c
5237F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5238
5239OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5240M: Benoît Cousson <b-cousson@ti.com>
5241L: linux-omap@vger.kernel.org
5242S: Maintained
5243F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5244
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005245OMAP IMAGE SIGNAL PROCESSOR (ISP)
5246M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5247L: linux-media@vger.kernel.org
5248S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005249F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005250
Tony Lindgrenf5525782009-05-28 13:23:53 -07005251OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005252M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005253L: linux-usb@vger.kernel.org
5254L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005255T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005256S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005257F: drivers/usb/*/*omap*
5258F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005259
Kevin Hilman6d994712012-07-16 10:05:07 -07005260OMAP GPIO DRIVER
5261M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5262M: Kevin Hilman <khilman@ti.com>
5263L: linux-omap@vger.kernel.org
5264S: Maintained
5265F: drivers/gpio/gpio-omap.c
5266
Bob Copeland0ad122d2008-07-25 19:45:18 -07005267OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005269L: linux-karma-devel@lists.sourceforge.net
5270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005271F: Documentation/filesystems/omfs.txt
5272F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005273
Harald Weltec1986ee2005-11-13 16:06:29 -08005274OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005275M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005277F: drivers/char/pcmcia/cm4000_cs.c
5278F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005279
Harald Welte77c44ab2005-11-13 16:06:26 -08005280OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005281M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005283F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005284
Jonathan Corbet77d51402007-03-22 19:44:17 -03005285OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005286M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005287L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005288T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005289S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005290F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005291
Thomas Gleixner431bca72007-05-02 09:31:35 +02005292ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005293M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005294L: linux-mtd@lists.infradead.org
5295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005296F: drivers/mtd/onenand/
5297F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005298
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005300M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301L: osst-users@lists.sourceforge.net
5302L: linux-scsi@vger.kernel.org
5303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005304F: drivers/scsi/osst*
5305F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005307OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005308M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005309L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005311F: Documentation/i2c/busses/i2c-ocores
5312F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005313
Grant Likely860c44c2009-10-26 16:49:49 -07005314OPEN FIRMWARE AND FLATTENED DEVICE TREE
5315M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005316M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005317L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005318W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005319T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005320S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005321F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005322F: drivers/of
5323F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005324F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005325K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005326K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005327
Jonas Bonn19f9d392011-06-04 22:00:38 +03005328OPENRISC ARCHITECTURE
5329M: Jonas Bonn <jonas@southpole.se>
5330W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005331L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005332S: Maintained
5333T: git git://openrisc.net/~jonas/linux
5334F: arch/openrisc
5335
Jesse Grossccb13522011-10-25 19:26:31 -07005336OPENVSWITCH
5337M: Jesse Gross <jesse@nicira.com>
5338L: dev@openvswitch.org
5339W: http://openvswitch.org
5340T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5341S: Maintained
5342F: net/openvswitch/
5343
Clemens Ladischaf399172011-01-10 16:32:54 +01005344OPL4 DRIVER
5345M: Clemens Ladisch <clemens@ladisch.de>
5346L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5347T: git git://git.alsa-project.org/alsa-kernel.git
5348S: Maintained
5349F: sound/drivers/opl4/
5350
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005352M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353L: oprofile-list@lists.sf.net
5354S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005355F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005356F: arch/*/oprofile/
5357F: drivers/oprofile/
5358F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005360ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005361M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005362M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005363L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5364W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005365T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005367F: Documentation/filesystems/ocfs2.txt
5368F: Documentation/filesystems/dlmfs.txt
5369F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005370
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005372L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005373W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005374W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005375S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005376F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005378OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005379M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005380M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005381L: osd-dev@open-osd.org
5382W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005383T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005384S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005385F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005386F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005387F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005388
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005389P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005390M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005391L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005392W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005394F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005395
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005396PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005397M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005398L: netdev@vger.kernel.org
5399S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005400F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005401
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005402PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005403M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005404L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005406F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005407
Steffen Klassert48fc2672010-08-13 10:10:46 -04005408PADATA PARALLEL EXECUTION MECHANISM
5409M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005410L: linux-crypto@vger.kernel.org
5411S: Maintained
5412F: kernel/padata.c
5413F: include/linux/padata.h
5414F: Documentation/padata.txt
5415
Harald Welte709ee532008-09-23 17:46:57 +02005416PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005417M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005418L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005420F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005421
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005422PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005423M: David Howells <dhowells@redhat.com>
5424M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005425L: linux-am33-list@redhat.com (moderated for non-subscribers)
5426W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005428F: Documentation/mn10300/
5429F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005432L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005433S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005434F: drivers/parport/
5435F: include/linux/parport*.h
5436F: drivers/char/ppdev.c
5437F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005439PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005440M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005441M: Chris Wright <chrisw@sous-sol.org>
5442M: Alok Kataria <akataria@vmware.com>
5443M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005444L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005446F: Documentation/ia64/paravirt_ops.txt
5447F: arch/*/kernel/paravirt*
5448F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005449
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005451M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005452L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453W: http://www.torque.net/linux-pp.html
5454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005455F: Documentation/blockdev/paride.txt
5456F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457
5458PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005459M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005460M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005461L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005463Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005464T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005466F: arch/parisc/
5467F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
Jim Cromie1662d322006-10-06 00:43:59 -07005469PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005470M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005471L: lm-sensors@lm-sensors.org
5472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005473F: Documentation/hwmon/pc87360
5474F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005475
5476PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005477M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005480
Jean Delvare1ad107f2010-08-14 21:09:00 +02005481PC87427 HARDWARE MONITORING DRIVER
5482M: Jean Delvare <khali@linux-fr.org>
5483L: lm-sensors@lm-sensors.org
5484S: Maintained
5485F: Documentation/hwmon/pc87427
5486F: drivers/hwmon/pc87427.c
5487
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005488PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005489M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005490S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005491F: drivers/leds/leds-pca9532.c
5492F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005493
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005494PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005495M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005496L: linux-i2c@vger.kernel.org
5497S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005498F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005499
Wolfram Sanga1867d32009-09-18 22:45:51 +02005500PCA9564/PCA9665 I2C BUS DRIVER
5501M: Wolfram Sang <w.sang@pengutronix.de>
5502L: linux-i2c@vger.kernel.org
5503S: Maintained
5504F: drivers/i2c/algos/i2c-algo-pca.c
5505F: drivers/i2c/busses/i2c-pca-*
5506F: include/linux/i2c-algo-pca.h
5507F: include/linux/i2c-pca-platform.h
5508
Khalid Aziz3971dae2012-04-12 12:49:13 -07005509PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005510M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005511S: Maintained
5512F: drivers/firmware/pcdp.*
5513
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005514PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005515M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005516L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005518F: Documentation/PCI/pci-error-recovery.txt
5519F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005520
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005522M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005523L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005524Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005525T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005527F: Documentation/PCI/
5528F: drivers/pci/
5529F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005532P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005533L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005534W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005535T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005537F: Documentation/pcmcia/
5538F: drivers/pcmcia/
5539F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
5541PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005542M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005543L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005545F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546
Steffen Klassert48fc2672010-08-13 10:10:46 -04005547PCRYPT PARALLEL CRYPTO ENGINE
5548M: Steffen Klassert <steffen.klassert@secunet.com>
5549L: linux-crypto@vger.kernel.org
5550S: Maintained
5551F: crypto/pcrypt.c
5552F: include/crypto/pcrypt.h
5553
Tejun Heoe72df0b2010-12-10 17:02:49 +01005554PER-CPU MEMORY ALLOCATOR
5555M: Tejun Heo <tj@kernel.org>
5556M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005557T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5558S: Maintained
5559F: include/linux/percpu*.h
5560F: mm/percpu*.c
5561F: arch/*/include/asm/percpu.h
5562
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005563PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005564M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005566F: include/linux/delayacct.h
5567F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005568
Ingo Molnar57c0c152009-09-21 12:20:38 +02005569PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005570M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5571M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005572M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005573M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005574T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005575S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005576F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005577F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005578F: arch/*/kernel/perf_event*.c
5579F: arch/*/kernel/*/perf_event*.c
5580F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005581F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005582F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005583F: arch/*/kernel/perf_callchain.c
5584F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005585
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005586PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005587M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005588L: linux-abi-devel@lists.sourceforge.net
5589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005591
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005592PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005593M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005594S: Supported
5595F: Documentation/networking/phonet.txt
5596F: include/linux/phonet.h
5597F: include/net/phonet/
5598F: net/phonet/
5599
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005601M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602L: linux-mtd@lists.infradead.org
5603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005604F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
Bruno Prémontefdbb102012-07-30 21:39:03 +02005606PICOLCD HID DRIVER
5607M: Bruno Prémont <bonbons@linux-vserver.org>
5608L: linux-input@vger.kernel.org
5609S: Maintained
5610F: drivers/hid/hid-picolcd*
5611
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005612PICOXCELL SUPPORT
5613M: Jamie Iles <jamie@jamieiles.com>
5614L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5615T: git git://github.com/jamieiles/linux-2.6-ji.git
5616S: Supported
5617F: arch/arm/mach-picoxcell
5618F: drivers/*/picoxcell*
5619F: drivers/*/*/picoxcell*
5620
Linus Walleij2744e8a2011-05-02 20:50:54 +02005621PIN CONTROL SUBSYSTEM
5622M: Linus Walleij <linus.walleij@linaro.org>
5623S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005624F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005625F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005626
Viresh Kumardeda8282012-03-28 22:27:07 +05305627PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005628M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305629L: spear-devel@list.st.com
5630L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5631W: http://www.st.com/spear
5632S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005633F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305634
Peter Osterlund249a6772005-09-27 21:45:30 -07005635PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005636M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005638F: drivers/block/pktcdvd.c
5639F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005640
GuanXuetaob31d8272011-01-16 00:35:49 +08005641PKUNITY SOC DRIVERS
5642M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5643W: http://mprc.pku.edu.cn/~guanxuetao/linux
5644S: Maintained
5645T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5646F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005647F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005648F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005649F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005650
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005651PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005652M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005653L: lm-sensors@lm-sensors.org
5654W: http://www.lm-sensors.org/
5655W: http://www.roeck-us.net/linux/drivers/
5656T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5657S: Maintained
5658F: Documentation/hwmon/pmbus
5659F: drivers/hwmon/pmbus/
5660F: include/linux/i2c/pmbus.h
5661
Anil Ravindranath89a36812009-08-25 17:35:18 -07005662PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005663M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005664L: linux-scsi@vger.kernel.org
5665W: http://www.pmc-sierra.com/
5666S: Supported
5667F: drivers/scsi/pmcraid.*
5668
jack wangdbf9bfe2009-10-14 16:19:21 +08005669PMC SIERRA PM8001 DRIVER
5670M: jack_wang@usish.com
5671M: lindar_liu@usish.com
5672L: linux-scsi@vger.kernel.org
5673S: Supported
5674F: drivers/scsi/pm8001/
5675
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005677M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005678T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005680F: fs/timerfd.c
5681F: include/linux/timer*
5682F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683
Anton Vorontsov3be86142007-07-15 04:43:36 +04005684POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005685M: Anton Vorontsov <cbou@mail.ru>
5686M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005687T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005689F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005690F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005691
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005693M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005694M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005696F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697
Vitaly Wool999445d2007-01-04 13:07:03 +01005698PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005699M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005700L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005702F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005703
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005705M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706L: linux-ppp@vger.kernel.org
5707S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005708F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
5710PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005711M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005713F: net/atm/pppoatm.c
5714F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715
5716PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005717M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005719F: drivers/net/ppp/pppoe.c
5720F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
James Chapmana6d23702007-06-27 15:53:17 -07005722PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005723M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005724S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005725F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005726F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005727
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005728PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005729M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005730W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5731L: linuxpps@ml.enneenne.com (subscribers-only)
5732S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005733F: Documentation/pps/
5734F: drivers/pps/
5735F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005736
Harry Wei71a6d0a2011-05-11 15:13:33 -07005737PPTP DRIVER
5738M: Dmitry Kozlov <xeb@mail.ru>
5739L: netdev@vger.kernel.org
5740S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005741F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005742W: http://sourceforge.net/projects/accel-pptp
5743
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005745M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746L: kpreempt-tech@lists.sourceforge.net
5747W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005749F: Documentation/preempt-locking.txt
5750F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751
5752PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005753M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005754L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005755W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005756S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005757F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005759PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005761L: linux-ide@vger.kernel.org
5762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005764
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005765PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005766M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005767L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005768L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005769S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005770F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005771
Geoff Levandf58a9d12006-11-23 00:46:51 +01005772PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005773M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005774L: linuxppc-dev@lists.ozlabs.org
5775L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005777F: arch/powerpc/boot/ps3*
5778F: arch/powerpc/include/asm/lv1call.h
5779F: arch/powerpc/include/asm/ps3*.h
5780F: arch/powerpc/platforms/ps3/
5781F: drivers/*/ps3*
5782F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005783F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005784F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005785F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005786
Jim Pariscffb4add2009-01-06 11:32:10 +00005787PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005788M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005789L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005790S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005791F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005792
Anton Vorontsov8defe592012-08-03 18:07:20 -07005793PSTORE FILESYSTEM
5794M: Anton Vorontsov <cbouatmailru@gmail.com>
5795M: Colin Cross <ccross@android.com>
5796M: Kees Cook <keescook@chromium.org>
5797M: Tony Luck <tony.luck@intel.com>
5798S: Maintained
5799T: git git://git.infradead.org/users/cbou/linux-pstore.git
5800F: fs/pstore/
5801F: include/linux/pstore*
5802F: drivers/firmware/efivars.c
5803F: drivers/acpi/apei/erst.c
5804
Richard Cochran7fbc4152012-03-10 01:55:53 +00005805PTP HARDWARE CLOCK SUPPORT
5806M: Richard Cochran <richardcochran@gmail.com>
5807S: Maintained
5808W: http://linuxptp.sourceforge.net/
5809F: Documentation/ABI/testing/sysfs-ptp
5810F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005811F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005812F: drivers/net/phy/dp83640*
5813F: drivers/ptp/*
5814F: include/linux/ptp_cl*
5815
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005816PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005817M: Roland McGrath <roland@redhat.com>
5818M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005819S: Maintained
5820F: include/asm-generic/syscall.h
5821F: include/linux/ptrace.h
5822F: include/linux/regset.h
5823F: include/linux/tracehook.h
5824F: kernel/ptrace.c
5825
Michael Krufky83202042006-07-03 00:24:18 -07005826PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005827M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005828L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005829L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005830W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005831T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005833F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005834F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005835
Thierry Reding200efed2012-03-27 13:16:18 +02005836PWM SUBSYSTEM
5837M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005838L: linux-kernel@vger.kernel.org
5839S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005840W: http://gitorious.org/linux-pwm
5841T: git git://gitorious.org/linux-pwm/linux-pwm.git
5842F: Documentation/pwm.txt
5843F: Documentation/devicetree/bindings/pwm/
5844F: include/linux/pwm.h
5845F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005846F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005847F: drivers/video/backlight/pwm_bl.c
5848F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005849
Eric Miao30ec2612008-06-12 15:21:41 -07005850PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Eric Miao <eric.y.miao@gmail.com>
5852M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005853M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005854L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005855T: git git://github.com/hzhuang1/linux.git
5856T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005858F: arch/arm/mach-pxa/
5859F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005860F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005861F: drivers/usb/gadget/pxa2*
5862F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005863F: sound/arm/pxa*
5864F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005866MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005867M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005868M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005870T: git git://github.com/hzhuang1/linux.git
5871T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005872S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005873F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005874
Pierre Ossman272f1332007-05-14 21:25:26 +02005875PXA MMCI DRIVER
5876S: Orphan
5877
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005878PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005879M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005880L: rtc-linux@googlegroups.com
5881S: Maintained
5882
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005883QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005884M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005885L: linux-rdma@vger.kernel.org
5886S: Supported
5887F: drivers/infiniband/hw/qib/
5888
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005889QLOGIC QLA1280 SCSI DRIVER
5890M: Michael Reed <mdr@sgi.com>
5891L: linux-scsi@vger.kernel.org
5892S: Maintained
5893F: drivers/scsi/qla1280.[ch]
5894
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005896M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005897M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898L: linux-scsi@vger.kernel.org
5899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005900F: Documentation/scsi/LICENSE.qla2xxx
5901F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902
Ravi Anand883c98f2010-04-28 11:45:49 +05305903QLOGIC QLA4XXX iSCSI DRIVER
5904M: Ravi Anand <ravi.anand@qlogic.com>
5905M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5906M: iscsi-driver@qlogic.com
5907L: linux-scsi@vger.kernel.org
5908S: Supported
5909F: drivers/scsi/qla4xxx/
5910
Ron Mercer5a4faa872006-07-25 00:40:21 -07005911QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005912M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005913M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005914M: linux-driver@qlogic.com
5915L: netdev@vger.kernel.org
5916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005917F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005918F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005919
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005920QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005921M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005922M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005923M: linux-driver@qlogic.com
5924L: netdev@vger.kernel.org
5925S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005926F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005927
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005928QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005929M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005930M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005931M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005932L: netdev@vger.kernel.org
5933S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005934F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005935
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938W: http://www.alarsen.net/linux/qnx4fs/
5939S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005940F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005941F: include/linux/qnx4_fs.h
5942F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943
Antti Palosaari91952bc2012-10-01 12:28:46 -03005944QT1010 MEDIA DRIVER
5945M: Antti Palosaari <crope@iki.fi>
5946L: linux-media@vger.kernel.org
5947W: http://linuxtv.org/
5948W: http://palosaari.fi/linux/
5949Q: http://patchwork.linuxtv.org/project/linux-media/list/
5950T: git git://linuxtv.org/anttip/media_tree.git
5951S: Maintained
5952F: drivers/media/tuners/qt1010*
5953
Richard Kuo4f4567c2011-10-31 18:56:38 -05005954QUALCOMM HEXAGON ARCHITECTURE
5955M: Richard Kuo <rkuo@codeaurora.org>
5956L: linux-hexagon@vger.kernel.org
5957S: Supported
5958F: arch/hexagon/
5959
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005960RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005961M: Yehuda Sadeh <yehuda@inktank.com>
5962M: Sage Weil <sage@inktank.com>
5963M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005964M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005965W: http://ceph.com/
5966T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005967S: Supported
5968F: drivers/block/rbd.c
5969F: drivers/block/rbd_types.h
5970
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005972M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005973L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005975F: drivers/video/aty/radeon*
5976F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977
5978RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005979M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005980L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005982F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
Randy Dunlape7839f22008-10-12 16:11:45 -07005984RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005985P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005986M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005987M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005988M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005989L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005990L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005991W: http://rt2x00.serialmonkey.com/
5992S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005993T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005994F: drivers/net/wireless/rt2x00/
5995
Nick Piggin9db55792008-02-08 04:19:49 -08005996RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005997M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005999F: Documentation/blockdev/ramdisk.txt
6000F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006001
Matt Mackall9e95ce22005-04-16 15:25:56 -07006002RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006003M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006005F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006006
Matt Porter394b7012005-11-07 01:00:15 -08006007RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006009M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006011F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006012
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006013RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006014L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006015S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006016F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006017
6018RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006019M: Josh Triplett <josh@freedesktop.org>
6020M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006021S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006022T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006023F: Documentation/RCU/torture.txt
6024F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006025
Florian Fainellic1f766b2008-02-06 22:39:44 +01006026RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006027M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006028S: Maintained
6029
Florian Fainellidb17f392007-12-19 11:30:30 +01006030RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006031M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006032L: netdev@vger.kernel.org
6033S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006034F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006035
Andy Grovera09ed662009-02-24 15:30:41 +00006036RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006037M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006038L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006040F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006041
Josh Triplett595182b2006-10-04 02:17:21 -07006042READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006043M: Dipankar Sarma <dipankar@in.ibm.com>
6044M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006045W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006046S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006047T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006048F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006049X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006050F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006051F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006052X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006053
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006054REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006055M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006056L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006057Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006059F: Documentation/rtc.txt
6060F: drivers/rtc/
6061F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006062
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006064L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006066F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Mark Brownb83a3132011-05-11 19:59:58 +02006068REGISTER MAP ABSTRACTION
6069M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6070T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6071S: Supported
6072F: drivers/base/regmap/
6073F: include/linux/regmap.h
6074
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006075REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6076M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006077T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006078S: Maintained
6079F: drivers/remoteproc/
6080F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006081F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006082
Ivo van Doorne08976452008-04-12 19:23:55 +02006083RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006084M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006085L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006086W: http://wireless.kernel.org/
6087T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6088T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006089S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006090F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006091F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006092
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006093RICOH SMARTMEDIA/XD DRIVER
6094M: Maxim Levitsky <maximlevitsky@gmail.com>
6095S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006096F: drivers/mtd/nand/r852.c
6097F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006098
Maxim Levitsky92634122011-03-25 01:56:59 -07006099RICOH R5C592 MEMORYSTICK DRIVER
6100M: Maxim Levitsky <maximlevitsky@gmail.com>
6101S: Maintained
6102F: drivers/memstick/host/r592.*
6103
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104ROCKETPORT DRIVER
6105P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106W: http://www.comtrol.com
6107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006108F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006109F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110
6111ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006112M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006114W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006116F: include/linux/rose.h
6117F: include/net/rose.h
6118F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119
Antti Palosaari91952bc2012-10-01 12:28:46 -03006120RTL2830 MEDIA DRIVER
6121M: Antti Palosaari <crope@iki.fi>
6122L: linux-media@vger.kernel.org
6123W: http://linuxtv.org/
6124W: http://palosaari.fi/linux/
6125Q: http://patchwork.linuxtv.org/project/linux-media/list/
6126T: git git://linuxtv.org/anttip/media_tree.git
6127S: Maintained
6128F: drivers/media/dvb-frontends/rtl2830*
6129
Larry Finger59840482008-11-12 17:13:09 -06006130RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006131M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006132L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006133W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006134T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006135S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006136F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006137
Larry Finger59840482008-11-12 17:13:09 -06006138RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006139M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: Hin-Tak Leung <htl10@users.sourceforge.net>
6141M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006142L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006143W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006144T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006145S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006146F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006147
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006148RTL8192CE WIRELESS DRIVER
6149M: Larry Finger <Larry.Finger@lwfinger.net>
6150M: Chaoming Li <chaoming_li@realsil.com.cn>
6151L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006152W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006153T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6154S: Maintained
6155F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006156F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006157
6158S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006159M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006160L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006162F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006163
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164S390
Joe Perches8b58be82009-07-29 15:04:30 -07006165M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6166M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006168L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006169W: http://www.ibm.com/developerworks/linux/linux390/
6170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006171F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006172F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006173F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006174F: Documentation/s390/
6175F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006176
6177S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006178M: Ursula Braun <ursula.braun@de.ibm.com>
6179M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006180M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006181L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006182W: http://www.ibm.com/developerworks/linux/linux390/
6183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006184F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006185
Felix Beckfeed9b62009-03-26 15:24:23 +01006186S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006187M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006188M: linux390@de.ibm.com
6189L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006190W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006191S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006192F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006193
Heiko Carstens5238da42006-02-11 17:56:01 -08006194S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006195M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006196M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006197L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006198W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006200F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
Ursula Braundd96df22007-09-19 13:09:02 +02006202S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006203M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006204M: linux390@de.ibm.com
6205L: linux-s390@vger.kernel.org
6206W: http://www.ibm.com/developerworks/linux/linux390/
6207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006208F: drivers/s390/net/*iucv*
6209F: include/net/iucv/
6210F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006211
Ben Dooks4dde7f72008-06-30 22:40:38 +01006212S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006213M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006216F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006217
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006219M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006220L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006221T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222W: http://www.mihu.de/linux/saa7146
6223S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006224F: drivers/media/common/saa7146/
6225F: drivers/media/pci/saa7146/
6226F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227
Corentin Chary92304a42011-12-05 12:38:35 -05006228SAMSUNG LAPTOP DRIVER
6229M: Corentin Chary <corentincj@iksaif.net>
6230L: platform-driver-x86@vger.kernel.org
6231S: Maintained
6232F: drivers/platform/x86/samsung-laptop.c
6233
Mark Brown4a109cc2010-09-24 10:50:46 +01006234SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006235M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006236L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6237S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006238F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006239
Jingoo Han0d89a282011-12-19 11:09:35 +09006240SAMSUNG FRAMEBUFFER DRIVER
6241M: Jingoo Han <jg1.han@samsung.com>
6242L: linux-fbdev@vger.kernel.org
6243S: Maintained
6244F: drivers/video/s3c-fb.c
6245
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006246SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6247M: Sangbeom Kim <sbkim73@samsung.com>
6248L: linux-kernel@vger.kernel.org
6249S: Supported
6250F: drivers/mfd/sec*.c
6251F: drivers/regulator/s2m*.c
6252F: drivers/regulator/s5m*.c
6253F: drivers/rtc/rtc-sec.c
6254F: include/linux/mfd/samsung/
6255
Alan Coxca749e22011-03-18 13:56:14 +00006256SERIAL DRIVERS
6257M: Alan Cox <alan@linux.intel.com>
6258L: linux-serial@vger.kernel.org
6259S: Maintained
6260F: drivers/tty/serial
6261
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306262SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006263M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306264S: Maintained
6265F: include/linux/dw_dmac.h
6266F: drivers/dma/dw_dmac_regs.h
6267F: drivers/dma/dw_dmac.c
6268
Thomas Gleixner88606e82010-12-14 21:37:13 +01006269TIMEKEEPING, NTP
6270M: John Stultz <johnstul@us.ibm.com>
6271M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006272T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006273S: Supported
6274F: include/linux/clocksource.h
6275F: include/linux/time.h
6276F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006277F: kernel/time/clocksource.c
6278F: kernel/time/time*.c
6279F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006280F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006281
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006282TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006283M: Huang Shijie <shijie8@gmail.com>
6284M: Kang Yong <kangyong@telegent.com>
6285M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006286S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006287F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006288
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006290M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006292F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
6294SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006295M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006296M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006297T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006299F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006300F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301
Chen Liqin6bcf6732009-06-13 15:24:33 +08006302SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006303M: Chen Liqin <liqin.chen@sunplusct.com>
6304M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006305W: http://www.sunplusct.com
6306S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006307F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006308
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006310M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311L: linux-scsi@vger.kernel.org
6312W: http://www.kernel.dk
6313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006314F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315
Roland Dreierfb50a832010-10-07 09:54:53 -07006316SCSI RDMA PROTOCOL (SRP) INITIATOR
6317M: David Dillow <dillowda@ornl.gov>
6318L: linux-rdma@vger.kernel.org
6319S: Supported
6320W: http://www.openfabrics.org
6321Q: http://patchwork.kernel.org/project/linux-rdma/list/
6322T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6323F: drivers/infiniband/ulp/srp/
6324F: include/scsi/srp.h
6325
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006327M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328L: linux-scsi@vger.kernel.org
6329W: http://www.torque.net/sg
6330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006331F: drivers/scsi/sg.c
6332F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333
6334SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006335M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006337T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6338T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6339T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006341F: drivers/scsi/
6342F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343
6344SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006345M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346L: linux-scsi@vger.kernel.org
6347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006348F: Documentation/scsi/st.txt
6349F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
6351SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006352M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006353M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006354L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006355W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006357F: Documentation/networking/sctp.txt
6358F: include/linux/sctp.h
6359F: include/net/sctp/
6360F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361
6362SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006363M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006364S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006365F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006366F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006367F: drivers/watchdog/scx200_wdt.c
6368F: drivers/i2c/busses/scx200*
6369F: drivers/mtd/maps/scx200_docflash.c
6370F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006371
6372SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006373M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006375F: drivers/char/scx200_gpio.c
6376F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006377
6378SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006379M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006381F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382
Sascha Sommer6a369132008-07-15 14:21:29 +02006383SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006384M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006385L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006387F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006388
Randy Dunlape7839f22008-10-12 16:11:45 -07006389SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006390M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006391L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006392T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6393S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006394F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006395F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006396
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006397SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006398M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006399L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006400L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006402F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
Ben Dooks0d1bb412009-06-14 13:52:37 +01006404SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006405M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006406L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006407S: Maintained
6408F: drivers/mmc/host/sdhci-s3c.c
6409
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006410SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006411M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006412L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006413L: linux-mmc@vger.kernel.org
6414S: Maintained
6415F: drivers/mmc/host/sdhci-spear.c
6416
James Morris8711cca2008-12-04 03:19:45 +11006417SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006418M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006419L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006420T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006421W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006422S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006423F: security/
James Morris8711cca2008-12-04 03:19:45 +11006424
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006426M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427S: Supported
6428
6429SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006430M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006431M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006432M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006433L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006434W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006435T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006437F: include/linux/selinux*
6438F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006439F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440
John Johansenc1c124e2010-07-29 14:48:09 -07006441APPARMOR SECURITY MODULE
6442M: John Johansen <john.johansen@canonical.com>
6443L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6444W: apparmor.wiki.kernel.org
6445T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6446S: Supported
6447F: security/apparmor/
6448
Jiri Slabycef2cf02007-05-08 00:31:45 -07006449SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006450M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006452F: drivers/misc/phantom.c
6453F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006454
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006455SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006456M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006458T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006460F: drivers/ata/
6461F: include/linux/ata.h
6462F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306464SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006465M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006466L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006467W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006468S: Supported
6469F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306470
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006471SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006472M: Sathya Perla <sathya.perla@emulex.com>
6473M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6474M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006475L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006476W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006477S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006478F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006479
Ben Hutchings8ceee662008-04-27 12:55:59 +01006480SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006481M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006482M: Ben Hutchings <bhutchings@solarflare.com>
6483L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006484S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006485F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006486
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006487SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006488M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006490F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006491
6492SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006493M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006494L: linux-ia64@vger.kernel.org
6495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006496F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006497F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006498F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006499
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006501M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502L: linux-visws-devel@lists.sf.net
6503W: http://linux-visws.sf.net
6504S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006505F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506
Jack Steiner75312612008-08-15 00:40:42 -07006507SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006508M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006510F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006511
Len Brown6349d992009-08-14 15:07:14 -04006512SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006513M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006514L: sfi-devel@simplefirmware.org
6515W: http://simplefirmware.org/
6516T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006517S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006518F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006519F: drivers/sfi/
6520F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006521
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522SIMTEC EB110ATX (Chalice CATS)
6523P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006524P: Vincent Sanders <vince@simtec.co.uk>
6525M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526W: http://www.simtec.co.uk/products/EB110ATX/
6527S: Supported
6528
6529SIMTEC EB2410ITX (BAST)
6530P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006531P: Vincent Sanders <vince@simtec.co.uk>
6532M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533W: http://www.simtec.co.uk/products/EB2410ITX/
6534S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006535F: arch/arm/mach-s3c2410/mach-bast.c
6536F: arch/arm/mach-s3c2410/bast-ide.c
6537F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006539TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006540M: Sekhar Nori <nsekhar@ti.com>
6541M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306542L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306543T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006544Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006545S: Supported
6546F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006547F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006548
Francois Romieu92aab3c2005-07-30 13:11:18 +02006549SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006550M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006551L: netdev@vger.kernel.org
6552S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006553F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006554
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006556M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006558L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006560F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006562SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006563M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006564L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006566F: Documentation/i2c/busses/i2c-sis96x
6567F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006568
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006570M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006573F: Documentation/fb/sisfb.txt
6574F: drivers/video/sis/
6575F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576
6577SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006578M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579W: http://www.winischhofer.at/linuxsisusbvga.shtml
6580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006581F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006583SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006584M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006585M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006586M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006587L: linux-mm@kvack.org
6588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006589F: include/linux/sl?b*.h
6590F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006591
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006592SLEEPABLE READ-COPY UPDATE (SRCU)
6593M: Lai Jiangshan <laijs@cn.fujitsu.com>
6594M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6595W: http://www.rdrop.com/users/paulmck/RCU/
6596S: Supported
6597T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6598F: include/linux/srcu*
6599F: kernel/srcu*
6600
Casey Schaufler66372842012-05-23 18:34:52 -07006601SMACK SECURITY MODULE
6602M: Casey Schaufler <casey@schaufler-ca.com>
6603L: linux-security-module@vger.kernel.org
6604W: http://schaufler-ca.com
6605T: git git://git.gitorious.org/smack-next/kernel.git
6606S: Maintained
6607F: Documentation/security/Smack.txt
6608F: security/smack/
6609
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006611M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006612S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006613F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006615SMM665 HARDWARE MONITOR DRIVER
6616M: Guenter Roeck <linux@roeck-us.net>
6617L: lm-sensors@lm-sensors.org
6618S: Maintained
6619F: Documentation/hwmon/smm665
6620F: drivers/hwmon/smm665.c
6621
Steve Glendinning9df73052010-08-14 21:08:54 +02006622SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006623M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006624L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006625S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006626F: Documentation/hwmon/emc2103
6627F: drivers/hwmon/emc2103.c
6628
Hans de Goedea98d5062011-03-21 17:59:36 +01006629SMSC SCH5627 HARDWARE MONITOR DRIVER
6630M: Hans de Goede <hdegoede@redhat.com>
6631L: lm-sensors@lm-sensors.org
6632S: Supported
6633F: Documentation/hwmon/sch5627
6634F: drivers/hwmon/sch5627.c
6635
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006636SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006637M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006638L: lm-sensors@lm-sensors.org
6639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006640F: Documentation/hwmon/smsc47b397
6641F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006642
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006643SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006644M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006645L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006647F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006648F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006649
Steve Glendinning2cb37722008-12-11 20:54:30 -08006650SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006651M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006652L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006653S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006654F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006655
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006656SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006657M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006658L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006659S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006660F: drivers/video/smscufx.c
6661
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006662SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006663M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006664L: linux-altix@sgi.com
6665L: linux-ia64@vger.kernel.org
6666W: http://www.sgi.com/altix
6667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006668F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006669
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006670SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006671M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006672L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006673T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006674S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006675F: include/media/soc*
6676F: drivers/media/i2c/soc_camera/
6677F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006678
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006679SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006680M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006682F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006683
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006685M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006688F: drivers/md/
6689F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006692M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006693L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006695F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696
Michael Buesch61e115a2007-09-18 15:12:50 -04006697SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006698M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006699L: netdev@vger.kernel.org
6700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006701F: drivers/ssb/
6702F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006703
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006705M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006706L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006707W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006709F: Documentation/laptops/sony-laptop.txt
6710F: drivers/char/sonypi.c
6711F: drivers/platform/x86/sony-laptop.c
6712F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713
Alex Dubovbaf85322008-02-09 10:20:54 -08006714SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006715M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006716W: http://tifmxx.berlios.de/
6717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006718F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006719
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006721M: Jaroslav Kysela <perex@perex.cz>
6722M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006723L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006724W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006725T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006726T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006728F: Documentation/sound/
6729F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006730F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731
Mark Brownbd903bd2008-11-19 19:16:05 +00006732SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006733M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006734M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006735T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006736L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006737W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006739F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006740F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006741
Sam Ravnborg473321f2009-01-04 15:47:49 -08006742SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006743M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006745Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006746T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6747T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006749F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006750F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751
David S. Miller6404fcc2010-03-16 01:00:17 -07006752SPARC SERIAL DRIVERS
6753M: "David S. Miller" <davem@davemloft.net>
6754L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006755T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6756T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006757S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006758F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006759F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006760F: drivers/tty/serial/sunhv.c
6761F: drivers/tty/serial/sunsab.c
6762F: drivers/tty/serial/sunsab.h
6763F: drivers/tty/serial/sunsu.c
6764F: drivers/tty/serial/sunzilog.c
6765F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006766
Christopher Li389325b2012-04-05 14:25:14 -07006767SPARSE CHECKER
6768M: "Christopher Li" <sparse@chrisli.org>
6769L: linux-sparse@vger.kernel.org
6770W: https://sparse.wiki.kernel.org/
6771T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6772T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6773S: Maintained
6774F: include/linux/compiler.h
6775
viresh kumarfc0c1952010-04-01 12:31:21 +01006776SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006777M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306778M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006779L: spear-devel@list.st.com
6780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006781W: http://www.st.com/spear
6782S: Maintained
6783F: arch/arm/plat-spear/
6784
Viresh Kumar71e09a92012-04-20 22:39:48 +05306785SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006786M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306787M: Shiraz Hashim <shiraz.hashim@st.com>
6788L: spear-devel@list.st.com
6789L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6790W: http://www.st.com/spear
6791S: Maintained
6792F: arch/arm/mach-spear13xx/
6793
viresh kumarfc0c1952010-04-01 12:31:21 +01006794SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006795M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306796M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006797L: spear-devel@list.st.com
6798L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006799W: http://www.st.com/spear
6800S: Maintained
6801F: arch/arm/mach-spear3xx/
6802
6803SPEAR6XX MACHINE SUPPORT
6804M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306805M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006806M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006807L: spear-devel@list.st.com
6808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006809W: http://www.st.com/spear
6810S: Maintained
6811F: arch/arm/mach-spear6xx/
6812
6813SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006814M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006815L: spear-devel@list.st.com
6816L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006817W: http://www.st.com/spear
6818S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306819F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006821SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006822M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006823L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006824Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006825T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006827F: Documentation/spi/
6828F: drivers/spi/
6829F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006830
Jim Lewis2752e402006-09-29 02:01:19 -07006831SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006832M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6833M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006834L: netdev@vger.kernel.org
6835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006836F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006837F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006838
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006839SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006840M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006841L: linuxppc-dev@lists.ozlabs.org
6842L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006843W: http://www.ibm.com/developerworks/power/cell/
6844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006845F: Documentation/filesystems/spufs.txt
6846F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006847
Phillip Lougherfc555842009-01-05 08:46:29 +00006848SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006849M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006850L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6851W: http://squashfs.org.uk
6852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006853F: Documentation/filesystems/squashfs.txt
6854F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006855
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006857M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006859F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860
Linus Torvalds26e9a392008-10-17 09:50:12 -07006861STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006862M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006863L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006864S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006865
Linus Torvalds26e9a392008-10-17 09:50:12 -07006866STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006867M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006868T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006869L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006870S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006871F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006872
Joe Perchesc8c8b102011-07-05 09:42:12 -07006873STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6874M: Henk de Groot <pe1dnn@amsat.org>
6875S: Odd Fixes
6876F: drivers/staging/wlags49_h2/
6877F: drivers/staging/wlags49_h25/
6878
Joe Perchesc9555152011-07-05 09:42:01 -07006879STAGING - ASUS OLED
6880M: Jakub Schmidtke <sjakub@gmail.com>
6881S: Odd Fixes
6882F: drivers/staging/asus_oled/
6883
Joe Perchesebd3d012011-07-05 09:42:02 -07006884STAGING - COMEDI
6885M: Ian Abbott <abbotti@mev.co.uk>
6886M: Mori Hess <fmhess@users.sourceforge.net>
6887S: Odd Fixes
6888F: drivers/staging/comedi/
6889
Joe Perches8ca572c2011-07-05 09:42:03 -07006890STAGING - CRYSTAL HD VIDEO DECODER
6891M: Naren Sankar <nsankar@broadcom.com>
6892M: Jarod Wilson <jarod@wilsonet.com>
6893M: Scott Davilla <davilla@4pi.com>
6894M: Manu Abraham <abraham.manu@gmail.com>
6895S: Odd Fixes
6896F: drivers/staging/crystalhd/
6897
Joe Perches0f16ffc2011-07-05 09:42:04 -07006898STAGING - ECHO CANCELLER
6899M: Steve Underwood <steveu@coppice.org>
6900M: David Rowe <david@rowetel.com>
6901S: Odd Fixes
6902F: drivers/staging/echo/
6903
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006904STAGING - ET131X NETWORK DRIVER
6905M: Mark Einon <mark.einon@gmail.com>
6906S: Odd Fixes
6907F: drivers/staging/et131x/
6908
Joe Perchesa0138162011-07-05 15:21:34 -07006909STAGING - FLARION FT1000 DRIVERS
6910M: Marek Belisko <marek.belisko@gmail.com>
6911S: Odd Fixes
6912F: drivers/staging/ft1000/
6913
Joe Perchesec3fab92011-07-05 09:42:05 -07006914STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6915M: David Täht <d@teklibre.com>
6916S: Odd Fixes
6917F: drivers/staging/frontier/
6918
Joe Perches6c1bb422011-07-05 09:42:07 -07006919STAGING - INDUSTRIAL IO
6920M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006921L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006922S: Odd Fixes
6923F: drivers/staging/iio/
6924
Joe Perchesa0138162011-07-05 15:21:34 -07006925STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6926M: Jarod Wilson <jarod@wilsonet.com>
6927W: http://www.lirc.org/
6928S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006929F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006930
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006931STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006932M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006933M: Marc Dietrich <marvin24@gmx.de>
6934L: ac100@lists.launchpad.net (moderated for non-subscribers)
6935S: Maintained
6936F: drivers/staging/nvec/
6937
Joe Perchesa0138162011-07-05 15:21:34 -07006938STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6939M: Andres Salomon <dilinger@queued.net>
6940M: Chris Ball <cjb@laptop.org>
6941M: Jon Nettleton <jon.nettleton@gmail.com>
6942W: http://wiki.laptop.org/go/DCON
6943S: Odd Fixes
6944F: drivers/staging/olpc_dcon/
6945
Chris Kelly94cfdd12012-03-14 10:55:42 +00006946STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006947M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006948M: Chris Kelly <ckelly@ozmodevices.com>
6949S: Maintained
6950F: drivers/staging/ozwpan/
6951
Joe Perchesa0138162011-07-05 15:21:34 -07006952STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006953M: Willy Tarreau <willy@meta-x.org>
6954S: Odd Fixes
6955F: drivers/staging/panel/
6956
Joe Perchesa0138162011-07-05 15:21:34 -07006957STAGING - REALTEK RTL8712U DRIVERS
6958M: Larry Finger <Larry.Finger@lwfinger.net>
6959M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6960S: Odd Fixes
6961F: drivers/staging/rtl8712/
6962
Joe Perches9629fa82011-07-05 09:42:09 -07006963STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6964M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6965S: Odd Fixes
6966F: drivers/staging/sm7xx/
6967
Joe Perchesa0138162011-07-05 15:21:34 -07006968STAGING - SOFTLOGIC 6x10 MPEG CODEC
6969M: Ben Collins <bcollins@bluecherry.net>
6970S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006971F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006972
6973STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6974M: William Hubbs <w.d.hubbs@gmail.com>
6975M: Chris Brannon <chris@the-brannons.com>
6976M: Kirk Reiser <kirk@braille.uwo.ca>
6977M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6978L: speakup@braille.uwo.ca
6979W: http://www.linux-speakup.org/
6980S: Odd Fixes
6981F: drivers/staging/speakup/
6982
6983STAGING - TI DSP BRIDGE DRIVERS
6984M: Omar Ramirez Luna <omar.ramirez@ti.com>
6985S: Odd Fixes
6986F: drivers/staging/tidspbridge/
6987
Joe Perchesa0138162011-07-05 15:21:34 -07006988STAGING - USB ENE SM/MS CARD READER DRIVER
6989M: Al Cho <acho@novell.com>
6990S: Odd Fixes
6991F: drivers/staging/keucr/
6992
Joe Perchesb3e871c2011-07-05 09:42:10 -07006993STAGING - VIA VT665X DRIVERS
6994M: Forest Bond <forest@alittletooquiet.net>
6995S: Odd Fixes
6996F: drivers/staging/vt665?/
6997
Joe Perches81a9a522011-07-05 09:42:11 -07006998STAGING - WINBOND IS89C35 WLAN USB DRIVER
6999M: Pavel Machek <pavel@ucw.cz>
7000S: Odd Fixes
7001F: drivers/staging/winbond/
7002
Joe Perches709bcb02011-07-05 09:42:13 -07007003STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007004M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007005S: Odd Fixes
7006F: drivers/staging/xgifb/
7007
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007009M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007010S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007011F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007013SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007014M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007015W: http://sammy.net/sun3/
7016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007017F: arch/m68k/kernel/*sun3*
7018F: arch/m68k/sun3*/
7019F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007020F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007021
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007022SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007023M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007024L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007026Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007027T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007028S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007029F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007030F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007031F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007033SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007034M: Len Brown <len.brown@intel.com>
7035M: Pavel Machek <pavel@ucw.cz>
7036M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007037L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007039F: Documentation/power/
7040F: arch/x86/kernel/acpi/
7041F: drivers/base/power/
7042F: kernel/power/
7043F: include/linux/suspend.h
7044F: include/linux/freezer.h
7045F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046
7047SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007048M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049L: linux-video@atrey.karlin.mff.cuni.cz
7050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007051F: Documentation/svga.txt
7052F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007054SWIOTLB SUBSYSTEM
7055M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7056L: linux-kernel@vger.kernel.org
7057S: Supported
7058F: lib/swiotlb.c
7059F: arch/*/kernel/pci-swiotlb.c
7060F: include/linux/swiotlb.h
7061
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007063M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007065F: Documentation/filesystems/sysv-fs.txt
7066F: fs/sysv/
7067F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007069TARGET SUBSYSTEM
7070M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7071L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007072L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007073L: http://groups.google.com/group/linux-iscsi-target-dev
7074W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007075T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007076S: Supported
7077F: drivers/target/
7078F: include/target/
7079F: Documentation/target/
7080
Alan Cox4e688522008-04-30 00:52:11 -07007081TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007082M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007084F: Documentation/accounting/taskstats*
7085F: include/linux/taskstats*
7086F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007087
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007088TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007089M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007090L: netdev@vger.kernel.org
7091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007092F: include/linux/pkt_cls.h
7093F: include/net/pkt_cls.h
7094F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007095
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007096TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007097M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7098M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007099W: http://tcp-lp-mod.sourceforge.net/
7100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007101F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007102
Antti Palosaari91952bc2012-10-01 12:28:46 -03007103TDA10071 MEDIA DRIVER
7104M: Antti Palosaari <crope@iki.fi>
7105L: linux-media@vger.kernel.org
7106W: http://linuxtv.org/
7107W: http://palosaari.fi/linux/
7108Q: http://patchwork.linuxtv.org/project/linux-media/list/
7109T: git git://linuxtv.org/anttip/media_tree.git
7110S: Maintained
7111F: drivers/media/dvb-frontends/tda10071*
7112
7113TDA18212 MEDIA DRIVER
7114M: Antti Palosaari <crope@iki.fi>
7115L: linux-media@vger.kernel.org
7116W: http://linuxtv.org/
7117W: http://palosaari.fi/linux/
7118Q: http://patchwork.linuxtv.org/project/linux-media/list/
7119T: git git://linuxtv.org/anttip/media_tree.git
7120S: Maintained
7121F: drivers/media/tuners/tda18212*
7122
7123TDA18218 MEDIA DRIVER
7124M: Antti Palosaari <crope@iki.fi>
7125L: linux-media@vger.kernel.org
7126W: http://linuxtv.org/
7127W: http://palosaari.fi/linux/
7128Q: http://patchwork.linuxtv.org/project/linux-media/list/
7129T: git git://linuxtv.org/anttip/media_tree.git
7130S: Maintained
7131F: drivers/media/tuners/tda18218*
7132
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007133TDA18271 MEDIA DRIVER
7134M: Michael Krufky <mkrufky@linuxtv.org>
7135L: linux-media@vger.kernel.org
7136W: http://linuxtv.org/
7137W: http://github.com/mkrufky
7138Q: http://patchwork.linuxtv.org/project/linux-media/list/
7139T: git git://linuxtv.org/mkrufky/tuners.git
7140S: Maintained
7141F: drivers/media/tuners/tda18271*
7142
Michael Krufkye48307a2012-10-02 00:56:33 -03007143TDA827x MEDIA DRIVER
7144M: Michael Krufky <mkrufky@linuxtv.org>
7145L: linux-media@vger.kernel.org
7146W: http://linuxtv.org/
7147W: http://github.com/mkrufky
7148Q: http://patchwork.linuxtv.org/project/linux-media/list/
7149T: git git://linuxtv.org/mkrufky/tuners.git
7150S: Maintained
7151F: drivers/media/tuners/tda8290.*
7152
Michael Krufky66cf9212012-10-02 00:56:28 -03007153TDA8290 MEDIA DRIVER
7154M: Michael Krufky <mkrufky@linuxtv.org>
7155L: linux-media@vger.kernel.org
7156W: http://linuxtv.org/
7157W: http://github.com/mkrufky
7158Q: http://patchwork.linuxtv.org/project/linux-media/list/
7159T: git git://linuxtv.org/mkrufky/tuners.git
7160S: Maintained
7161F: drivers/media/tuners/tda8290.*
7162
Jiri Pirko3d249d42011-11-11 22:16:48 +00007163TEAM DRIVER
7164M: Jiri Pirko <jpirko@redhat.com>
7165L: netdev@vger.kernel.org
7166S: Supported
7167F: drivers/net/team/
7168F: include/linux/if_team.h
7169
Erik Gilling84b94142010-06-09 15:35:53 -07007170TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007171M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007172L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007173Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7174T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007175S: Supported
7176F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007177F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007178F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007179
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007180TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007181M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007182L: netdev@vger.kernel.org
7183S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007184F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007185
Alan Cox4e688522008-04-30 00:52:11 -07007186Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007187M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007189F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007190
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007191TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007192M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007193M: Max Filippov <jcmvbkbc@gmail.com>
7194L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007196F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007197
7198THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007199M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007200L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007201L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007202W: http://ibm-acpi.sourceforge.net
7203W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007204T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007206F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007207
Alex Dubov4020f2d2006-10-04 02:15:37 -07007208TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007209M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007211F: drivers/misc/tifm*
7212F: drivers/mmc/host/tifm_sd.c
7213F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007214
M R Swami Reddy152ad442012-04-02 20:02:31 +05307215TI LM49xxx FAMILY ASoC CODEC DRIVERS
7216M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307217M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307218L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7219S: Maintained
7220F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307221F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307222
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007223TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007224M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007225L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7226S: Maintained
7227F: sound/soc/codecs/twl4030*
7228
Luciano Coelho90921012011-11-20 21:40:41 +02007229TI WILINK WIRELESS DRIVERS
7230M: Luciano Coelho <coelho@ti.com>
7231L: linux-wireless@vger.kernel.org
7232W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7233W: http://wireless.kernel.org/en/users/Drivers/wl1251
7234T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7235S: Maintained
7236F: drivers/net/wireless/ti/
7237F: include/linux/wl12xx.h
7238
Per Lidene86eaa32006-01-12 16:45:18 +01007239TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007240M: Jon Maloy <jon.maloy@ericsson.com>
7241M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007242L: netdev@vger.kernel.org (core kernel code)
7243L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007244W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007246F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007247F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007248
Chris Metcalf867e3592010-05-28 23:09:12 -04007249TILE ARCHITECTURE
7250M: Chris Metcalf <cmetcalf@tilera.com>
7251W: http://www.tilera.com/scm/
7252S: Supported
7253F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007254F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007255F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007256F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007257
Linus Torvalds1da177e2005-04-16 15:20:36 -07007258TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007259M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007260L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261W: http://sourceforge.net/projects/tlan/
7262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007263F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007264F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007266TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007267M: Kentaro Takeda <takedakn@nttdata.co.jp>
7268M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007269L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7270L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007271L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7272L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7273W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007274T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007276F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007277
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007278TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007279M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007280L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007281S: Maintained
7282F: drivers/platform/x86/topstar-laptop.c
7283
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007285L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007286S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007287F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288
7289TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007291L: tlinux-users@tce.toshiba-dme.co.jp
7292W: http://www.buzzard.org.uk/toshiba/
7293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007294F: drivers/char/toshiba.c
7295F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296
Pierre Ossmand719f902009-03-24 21:06:09 +01007297TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007298M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007299M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007300L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007301S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007302F: drivers/mmc/host/tmio_mmc*
7303F: drivers/mmc/host/sh_mobile_sdhi.c
7304F: include/linux/mmc/tmio.h
7305F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007306
Hugh Dickins98f32602009-05-21 20:33:58 +01007307TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007308M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007309L: linux-mm@kvack.org
7310S: Maintained
7311F: include/linux/shmem_fs.h
7312F: mm/shmem.c
7313
Alan Cox4e688522008-04-30 00:52:11 -07007314TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007315M: Kent Yoder <key@linux.vnet.ibm.com>
7316M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007317W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007318M: Marcel Selhorst <tpmdd@selhorst.net>
7319M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007320W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007321L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007323F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007324
Joe Perchesd6f005a2009-10-26 16:49:40 -07007325TRACING
7326M: Steven Rostedt <rostedt@goodmis.org>
7327M: Frederic Weisbecker <fweisbec@gmail.com>
7328M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007329T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007330S: Maintained
7331F: Documentation/trace/ftrace.txt
7332F: arch/*/*/*/ftrace.h
7333F: arch/*/kernel/ftrace.c
7334F: include/*/ftrace.h
7335F: include/linux/trace*.h
7336F: include/trace/
7337F: kernel/trace/
7338
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007340M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007341T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007343K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344
Alan Cox4e688522008-04-30 00:52:11 -07007345TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007346M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7347S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007348T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007349F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007350F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007351F: include/linux/serial_core.h
7352F: include/linux/serial.h
7353F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007354
Antti Palosaari91952bc2012-10-01 12:28:46 -03007355TUA9001 MEDIA DRIVER
7356M: Antti Palosaari <crope@iki.fi>
7357L: linux-media@vger.kernel.org
7358W: http://linuxtv.org/
7359W: http://palosaari.fi/linux/
7360Q: http://patchwork.linuxtv.org/project/linux-media/list/
7361T: git git://linuxtv.org/anttip/media_tree.git
7362S: Maintained
7363F: drivers/media/tuners/tua9001*
7364
Grant Grundler740db6d2008-02-17 11:53:49 -07007365TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007366M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007367L: netdev@vger.kernel.org
7368S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007369F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370
7371TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007372M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373L: vtun@office.satix.net
7374W: http://vtun.sourceforge.net/tun
7375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007376F: Documentation/networking/tuntap.txt
7377F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007379TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007380M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007382F: drivers/tc/
7383F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007384
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007386M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387L: linux-scsi@vger.kernel.org
7388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007389F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007391UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007392M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007393M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007394L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007395T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007396W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007398F: Documentation/filesystems/ubifs.txt
7399F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007400
Alan Coxcc2020e2008-05-19 14:21:51 +01007401UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007402M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007403W: http://www.uclinux.org/
7404L: uclinux-dev@uclinux.org (subscribers-only)
7405S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007406F: arch/m68k/*/*_no.*
7407F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007408
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007409UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007410M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007411W: http://uclinux-h8.sourceforge.jp/
7412S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007413F: arch/h8300/
7414F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007415F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007416
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007418M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007420F: Documentation/filesystems/udf.txt
7421F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007422
Alan Coxcc2020e2008-05-19 14:21:51 +01007423UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007424M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007426F: Documentation/filesystems/ufs.txt
7427F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007428
David Herrmann0a09d3a2012-06-10 15:16:28 +02007429UHID USERSPACE HID IO DRIVER:
7430M: David Herrmann <dh.herrmann@googlemail.com>
7431L: linux-input@vger.kernel.org
7432S: Maintained
7433F: drivers/hid/uhid.c
7434F: include/linux/uhid.h
7435
David Vrabel18332a82008-09-17 16:34:44 +01007436ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007437L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007438S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007439F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007440F: include/linux/uwb.h
7441F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007442
GuanXuetaob31d8272011-01-16 00:35:49 +08007443UNICORE32 ARCHITECTURE:
7444M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7445W: http://mprc.pku.edu.cn/~guanxuetao/linux
7446S: Maintained
7447T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7448F: arch/unicore32/
7449
Tony Finchd8379ab2009-11-27 15:50:30 +00007450UNIFDEF
7451M: Tony Finch <dot@dotat.at>
7452W: http://dotat.at/prog/unifdef
7453S: Maintained
7454F: scripts/unifdef.c
7455
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007457M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458W: http://www.kernel.dk
7459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007460F: Documentation/cdrom/
7461F: drivers/cdrom/cdrom.c
7462F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307464UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7465M: Vinayak Holikatti <vinholikatti@gmail.com>
7466M: Santosh Y <santoshsy@gmail.com>
7467L: linux-scsi@vger.kernel.org
7468S: Supported
7469F: Documentation/scsi/ufs.txt
7470F: drivers/scsi/ufs/
7471
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007472UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007473M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007474W: http://www.linux-mtd.infradead.org/
7475L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007476T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007477S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007478F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007479F: include/linux/mtd/ubi.h
7480F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007481
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007482UNSORTED BLOCK IMAGES (UBI) Fastmap
7483M: Richard Weinberger <richard@nod.at>
7484L: linux-mtd@lists.infradead.org
7485S: Maintained
7486F: drivers/mtd/ubi/fastmap.c
7487
Linus Torvalds1da177e2005-04-16 15:20:36 -07007488USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007489M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007490L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007492F: Documentation/usb/acm.txt
7493F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007495USB ATTACHED SCSI
7496M: Matthew Wilcox <willy@linux.intel.com>
7497M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7498L: linux-usb@vger.kernel.org
7499L: linux-scsi@vger.kernel.org
7500S: Supported
7501F: drivers/usb/storage/uas.c
7502
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007504M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007505L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007507F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007510M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007511L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007513F: drivers/net/usb/cdc_*.c
7514F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007516USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007517M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007518L: linux-usb@vger.kernel.org
7519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007520F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007521
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007522USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007523M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007524L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007525W: http://www.linux-usb.org/usbnet
7526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007527F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007528
Alan Coxcc2020e2008-05-19 14:21:51 +01007529USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007530M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007531L: rio500-users@lists.sourceforge.net
7532W: http://rio500.sourceforge.net
7533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007534F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007535
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007537M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007538L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007540F: Documentation/usb/ehci.txt
7541F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007542
David Brownell69ae9e32006-11-14 02:03:31 -08007543USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007544M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007545L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007546W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007547T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007549F: drivers/usb/gadget/
7550F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007551
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007552USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007553M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007554L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007555T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007557F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007558F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
matt mooney857aab32011-06-17 15:50:46 -07007560USB/IP DRIVERS
7561M: Matt Mooney <mfm@muteddisk.com>
7562L: linux-usb@vger.kernel.org
7563S: Maintained
7564F: drivers/staging/usbip/
7565
Olav Kongas959eea22005-11-03 17:38:14 +02007566USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007567M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007568L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007570F: drivers/usb/host/isp116x*
7571F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007572
Linus Torvalds1da177e2005-04-16 15:20:36 -07007573USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007574M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007575L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007577F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007578
7579USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007580M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007581L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007582L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007583S: Maintained
7584W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007585F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586
Clemens Ladischaf399172011-01-10 16:32:54 +01007587USB MIDI DRIVER
7588M: Clemens Ladisch <clemens@ladisch.de>
7589L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7590T: git git://git.alsa-project.org/alsa-kernel.git
7591S: Maintained
7592F: sound/usb/midi.*
7593
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007595M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007596L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007598F: Documentation/usb/ohci.txt
7599F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600
Matthias Urlichsba460e42005-07-14 00:33:47 -07007601USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007602M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007603L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007605F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007606
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007608M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007609L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007610L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611W: http://pegasus2.sourceforge.net/
7612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007613F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614
Felipe Balbid3ad5582012-05-21 16:24:49 +03007615USB PHY LAYER
7616M: Felipe Balbi <balbi@ti.com>
7617L: linux-usb@vger.kernel.org
7618T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7619S: Maintained
7620F: drivers/usb/phy/
7621F: drivers/usb/otg/
7622
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007623USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007624M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007625L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007627F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628
7629USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007630M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007631L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007632L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633W: http://pegasus2.sourceforge.net/
7634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007635F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636
Alan Cox4e688522008-04-30 00:52:11 -07007637USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007638M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007639L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007641F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007642
7643USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007644M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007645L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007646S: Maintained
7647W: http://geocities.com/i0xox0i
7648W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007649F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007650
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007652M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007655F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656
7657USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007658M: Peter Berger <pberger@brimson.com>
7659M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007660L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007662F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663
7664USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007665M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007666L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007668F: Documentation/usb/usb-serial.txt
7669F: drivers/usb/serial/generic.c
7670F: drivers/usb/serial/usb-serial.c
7671F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007674M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007675L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007677F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007678
7679USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007680M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007681L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007683F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
7685USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007686M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007687L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688W: http://www.connecttech.com
7689S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007690F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007692USB SMSC75XX ETHERNET DRIVER
7693M: Steve Glendinning <steve.glendinning@shawell.net>
7694L: netdev@vger.kernel.org
7695S: Maintained
7696F: drivers/net/usb/smsc75xx.*
7697
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007698USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007699M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007700L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007702F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007703
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007704USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007705M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007706L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007707L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007708T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007709W: http://www.linux-projects.org
7710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007711F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007712F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713
7714USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007715M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007716L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007718T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007719S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007720F: Documentation/usb/
7721F: drivers/net/usb/
7722F: drivers/usb/
7723F: include/linux/usb.h
7724F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725
7726USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007727M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007728L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007730F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731
David Brownell69ae9e32006-11-14 02:03:31 -08007732USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007733M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007734L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007735W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007737F: drivers/net/usb/usbnet.c
7738F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007740USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007741M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007742L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007743L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007744T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007745W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007746S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007747F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
Laurent Pinchart8282da42012-10-04 02:32:42 +02007749USB WEBCAM GADGET
7750M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7751L: linux-usb@vger.kernel.org
7752S: Maintained
7753F: drivers/usb/gadget/*uvc*.c
7754F: drivers/usb/gadget/webcam.c
7755
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007756USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007757M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007758L: linux-wireless@vger.kernel.org
7759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007760F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007761
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007762USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007763M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007764L: linux-usb@vger.kernel.org
7765S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007766F: drivers/usb/host/xhci*
7767F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007768
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007770L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007772S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007773F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007774
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007775USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007776M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007777L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007778L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007779T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007780W: http://royale.zerezo.com/zr364xx/
7781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007782F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007783F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007784
Randy Dunlape7839f22008-10-12 16:11:45 -07007785USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007786M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007787M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788L: user-mode-linux-devel@lists.sourceforge.net
7789L: user-mode-linux-user@lists.sourceforge.net
7790W: http://user-mode-linux.sourceforge.net
7791S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007792F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007793F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007794F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007795F: fs/hostfs/
7796F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007797
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007798USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007799M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007800M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007802F: Documentation/DocBook/uio-howto.tmpl
7803F: drivers/uio/
7804F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007805
Karel Zak256cccb2012-06-01 10:13:09 +02007806UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007807M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007808L: util-linux@vger.kernel.org
7809W: http://en.wikipedia.org/wiki/Util-linux
7810T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007811S: Maintained
7812
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007813UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007814M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007815L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007816W: http://dev.gentoo.org/~spock/projects/uvesafb/
7817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007818F: Documentation/fb/uvesafb.txt
7819F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007820
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007821VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007822M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007824F: Documentation/filesystems/vfat.txt
7825F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826
Alex Williamsoncba33452012-07-31 08:16:22 -06007827VFIO DRIVER
7828M: Alex Williamson <alex.williamson@redhat.com>
7829L: kvm@vger.kernel.org
7830S: Maintained
7831F: Documentation/vfio.txt
7832F: drivers/vfio/
7833F: include/linux/vfio.h
7834
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007835VIDEOBUF2 FRAMEWORK
7836M: Pawel Osciak <pawel@osciak.com>
7837M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007838M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007839L: linux-media@vger.kernel.org
7840S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007841F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007842F: include/media/videobuf2-*
7843
Amit Shah9a824462010-03-23 18:23:09 +05307844VIRTIO CONSOLE DRIVER
7845M: Amit Shah <amit.shah@redhat.com>
7846L: virtualization@lists.linux-foundation.org
7847S: Maintained
7848F: drivers/char/virtio_console.c
7849F: include/linux/virtio_console.h
7850
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307851VIRTIO CORE, NET AND BLOCK DRIVERS
7852M: Rusty Russell <rusty@rustcorp.com.au>
7853M: "Michael S. Tsirkin" <mst@redhat.com>
7854L: virtualization@lists.linux-foundation.org
7855S: Maintained
7856F: drivers/virtio/
7857F: drivers/net/virtio_net.c
7858F: drivers/block/virtio_blk.c
7859F: include/linux/virtio_*.h
7860
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007861VIRTIO HOST (VHOST)
7862M: "Michael S. Tsirkin" <mst@redhat.com>
7863L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007864L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007865L: netdev@vger.kernel.org
7866S: Maintained
7867F: drivers/vhost/
7868F: include/linux/vhost.h
7869
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007871M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007873F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874
Jean Delvare32c0a522005-09-22 21:47:58 +02007875VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007876M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007877L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007879F: Documentation/i2c/busses/i2c-viapro
7880F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007881
Harald Weltef0bf7f62009-06-17 20:22:39 +02007882VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007883M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007884M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007885S: Maintained
7886F: drivers/mmc/host/via-sdmmc.c
7887
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007888VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007889M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007890L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007891S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007892F: include/linux/via-core.h
7893F: include/linux/via-gpio.h
7894F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007895F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007896
Francois Romieu01f20732007-01-26 00:57:17 -08007897VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007898M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007899L: netdev@vger.kernel.org
7900S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007901F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902
Patrick McHardybe7f8272007-10-23 20:26:36 -07007903VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007904M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007905L: netdev@vger.kernel.org
7906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007907F: drivers/net/macvlan.c
7908F: include/linux/if_*vlan.h
7909F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007910
Florian Fainelli55e331c2009-06-16 15:33:53 -07007911VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007912M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007913L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007914S: Maintained
7915F: drivers/vlynq/vlynq.c
7916F: include/linux/vlynq.h
7917
Martyn Welch390beae2012-05-03 17:52:36 +01007918VME SUBSYSTEM
7919M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007920M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007921M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7922L: devel@driverdev.osuosl.org
7923S: Maintained
7924T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7925F: Documentation/vme_api.txt
7926F: drivers/staging/vme/
7927F: drivers/vme/
7928F: include/linux/vme*
7929
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007930VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007931M: Shreyas Bhatewara <sbhatewara@vmware.com>
7932M: "VMware, Inc." <pv-drivers@vmware.com>
7933L: netdev@vger.kernel.org
7934S: Maintained
7935F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007936
Alok Kataria851b1642009-10-13 14:51:05 -07007937VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007938M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007939M: VMware PV-Drivers <pv-drivers@vmware.com>
7940L: linux-scsi@vger.kernel.org
7941S: Maintained
7942F: drivers/scsi/vmw_pvscsi.c
7943F: drivers/scsi/vmw_pvscsi.h
7944
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007945VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007946M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007947M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007948W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007949W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007950T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007951S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007952F: drivers/regulator/
7953F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007954
Juerg Haefligerab413192006-09-24 20:54:04 +02007955VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007956M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007957L: lm-sensors@lm-sensors.org
7958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007959F: Documentation/hwmon/vt1211
7960F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007961
Roger Lucas1de9e372005-11-26 20:20:05 +01007962VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007963M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007964L: lm-sensors@lm-sensors.org
7965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007966F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007967
Tony Olech88095e72011-05-14 16:48:13 -04007968VUB300 USB to SDIO/SD/MMC bridge chip
7969M: Tony Olech <tony.olech@elandigitalsystems.com>
7970L: linux-mmc@vger.kernel.org
7971L: linux-usb@vger.kernel.org
7972S: Supported
7973F: drivers/mmc/host/vub300.c
7974
Linus Torvalds1da177e2005-04-16 15:20:36 -07007975W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007976M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007978F: Documentation/w1/
7979F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980
Charles Spirakis13927072006-07-05 18:05:15 +02007981W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007982M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007983L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007985F: Documentation/hwmon/w83791d
7986F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007987
Rudolf Marek61db0112006-12-12 18:18:30 +01007988W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007989M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007990L: lm-sensors@lm-sensors.org
7991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007992F: Documentation/hwmon/w83793
7993F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007994
Jean Delvaree3760b42010-10-28 20:31:49 +02007995W83795 HARDWARE MONITORING DRIVER
7996M: Jean Delvare <khali@linux-fr.org>
7997L: lm-sensors@lm-sensors.org
7998S: Maintained
7999F: drivers/hwmon/w83795.c
8000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008002M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008004F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008006WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008007M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008008L: linux-watchdog@vger.kernel.org
8009W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008010T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008012F: Documentation/watchdog/
8013F: drivers/watchdog/
8014F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008015
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008017M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008018L: linux-scsi@vger.kernel.org
8019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008020F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021
David Herrmannb22e00f2011-09-06 13:50:40 +02008022WIIMOTE HID DRIVER
8023M: David Herrmann <dh.herrmann@googlemail.com>
8024L: linux-input@vger.kernel.org
8025S: Maintained
8026F: drivers/hid/hid-wiimote*
8027
David Härdemane258b802009-09-21 17:04:53 -07008028WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008029M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008030S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008031F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008032
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008033WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008034M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008035M: linux-wimax@intel.com
8036L: wimax@linuxwimax.org
8037S: Supported
8038W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008039F: Documentation/wimax/README.wimax
8040F: include/linux/wimax.h
8041F: include/linux/wimax/debug.h
8042F: include/net/wimax.h
8043F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008044
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008045WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008046M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008048F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008049
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008051M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008052L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008053W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008055F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056
Mark Brownfebf1df2008-04-02 00:51:09 -04008057WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008058M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8059M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008060L: linux-input@vger.kernel.org
8061T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8062W: http://opensource.wolfsonmicro.com/node/7
8063S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008064F: drivers/input/touchscreen/*wm97*
8065F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008066
Mark Brown055bcbc2010-08-13 14:18:12 +01008067WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008068M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008069L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008070T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008071T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008072W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008073S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008074F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008075F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008076F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008077F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008078F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008079F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008080F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008081F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008082F: drivers/input/misc/wm831x-on.c
8083F: drivers/input/touchscreen/wm831x-ts.c
8084F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008085F: drivers/mfd/arizona*
8086F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008087F: drivers/power/wm83*.c
8088F: drivers/rtc/rtc-wm83*.c
8089F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008090F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008091F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008092F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008093F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008094F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008095F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008096F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008097F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008098F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008099F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008100
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008101WORKQUEUE
8102M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008103T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8104S: Maintained
8105F: include/linux/workqueue.h
8106F: kernel/workqueue.c
8107F: Documentation/workqueue.txt
8108
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008110M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008112S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008113F: Documentation/networking/x25*
8114F: include/net/x25*
8115F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008116
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008117X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008118M: Thomas Gleixner <tglx@linutronix.de>
8119M: Ingo Molnar <mingo@redhat.com>
8120M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008121M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008122T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008124F: Documentation/x86/
8125F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008126
Matthew Garrettd0944852010-02-11 10:40:13 -05008127X86 PLATFORM DRIVERS
8128M: Matthew Garrett <mjg@redhat.com>
8129L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008130T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008131S: Maintained
8132F: drivers/platform/x86
8133
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008134X86 MCE INFRASTRUCTURE
8135M: Tony Luck <tony.luck@intel.com>
8136M: Borislav Petkov <bp@amd64.org>
8137L: linux-edac@vger.kernel.org
8138S: Maintained
8139F: arch/x86/kernel/cpu/mcheck/*
8140
Ian Campbellc4468082011-04-27 15:26:46 -07008141XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008142M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008143M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008144L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8145L: virtualization@lists.linux-foundation.org
8146S: Supported
8147F: arch/x86/xen/
8148F: drivers/*/xen-*front.c
8149F: drivers/xen/
8150F: arch/x86/include/asm/xen/
8151F: include/xen/
8152
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008153XEN HYPERVISOR ARM
8154M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8155L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8156S: Supported
8157F: arch/arm/xen/
8158F: arch/arm/include/asm/xen/
8159
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008160XEN NETWORK BACKEND DRIVER
8161M: Ian Campbell <ian.campbell@citrix.com>
8162L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8163L: netdev@vger.kernel.org
8164S: Supported
8165F: drivers/net/xen-netback/*
8166
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008167XEN PCI SUBSYSTEM
8168M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008169L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008170S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008171F: arch/x86/pci/*xen*
8172F: drivers/pci/*xen*
8173
8174XEN SWIOTLB SUBSYSTEM
8175M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008176L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008177S: Supported
8178F: arch/x86/xen/*swiotlb*
8179F: drivers/xen/*swiotlb*
8180
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181XFS FILESYSTEM
8182P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008183M: Ben Myers <bpm@sgi.com>
8184M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008185M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008186L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008188T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008190F: Documentation/filesystems/xfs.txt
8191F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008193XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008194M: Anirudha Sarangi <anirudh@xilinx.com>
8195M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008196S: Maintained
8197F: drivers/net/ethernet/xilinx/xilinx_axienet*
8198
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008199XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008200M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008201W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008203F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008204
Peter Korsgaard238b8722006-12-06 20:35:17 -08008205XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008206M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008207L: linux-serial@vger.kernel.org
8208S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008209F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008210
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008212M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213L: linux-hams@vger.kernel.org
8214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008215F: drivers/net/hamradio/yam*
8216F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217
Henkaf64a5e2005-10-12 15:02:56 +02008218YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008219M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008220L: usbb2k-api-dev@nongnu.org
8221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008222F: Documentation/input/yealink.txt
8223F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008224
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008226M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227W: http://yaina.de/jreuter/
8228W: http://www.qsl.net/dl1bke/
8229L: linux-hams@vger.kernel.org
8230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008231F: Documentation/networking/z8530drv.txt
8232F: drivers/net/hamradio/*scc.c
8233F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008235ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008236M: Daniel Drake <dsd@gentoo.org>
8237M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008238W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008239L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008240L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008242F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008243
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008245L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008246L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008248T: Mercurial http://linuxtv.org/hg/v4l-dvb
8249S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008250F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008252ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008253M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008254S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008255F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008256
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008258M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008259L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008260Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008261T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008262S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008263F: *
8264F: */