blob: 322db3ae83cfc49f8c7336019129daa2c7b986b9 [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
Matt Fleming78bef242012-10-08 11:33:05 +01002805T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002806S: Maintained
2807F: Documentation/x86/efi-stub.txt
2808F: arch/ia64/kernel/efi.c
2809F: arch/x86/boot/compressed/eboot.[ch]
2810F: arch/x86/include/asm/efi.h
2811F: arch/x86/platform/efi/*
2812F: drivers/firmware/efivars.c
2813F: include/linux/efi*.h
2814
Peter Jones85a00d92010-09-22 13:05:04 -07002815EFIFB FRAMEBUFFER DRIVER
2816L: linux-fbdev@vger.kernel.org
2817M: Peter Jones <pjones@redhat.com>
2818S: Maintained
2819F: drivers/video/efifb.c
2820
Josh Triplett0bee8d22006-07-30 03:03:58 -07002821EFS FILESYSTEM
2822W: http://aeschi.ch.eu.org/efs/
2823S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002824F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002825
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002826EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002827M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2828M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002829L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002831F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002832
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002833EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002834M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002835L: netdev@vger.kernel.org
2836S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002837F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002838
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002839EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002840M: Paul Gortmaker <paul.gortmaker@windriver.com>
2841M: Matt Mackall <mpm@selenic.com>
2842M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002843L: linux-embedded@vger.kernel.org
2844S: Maintained
2845
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002846EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002847M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002848L: linux-scsi@vger.kernel.org
2849W: http://sourceforge.net/projects/lpfcxxxx
2850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002851F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002852
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002853ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002854M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002855S: Maintained
2856F: drivers/misc/cb710/
2857F: drivers/mmc/host/cb710-mmc.*
2858F: include/linux/cb710.h
2859
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002860ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2861M: Maxim Levitsky <maximlevitsky@gmail.com>
2862S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002863F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002864
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002866M: Christopher Hoover <ch@murgatroid.com>
2867M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002871EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002872M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002873S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002874T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002875F: drivers/video/s1d13xxxfb.c
2876F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002879M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002880L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002882F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
2884ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002885M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002886L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002887L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002888W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002890F: include/linux/netfilter_bridge/
2891F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002894M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002896F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
2898EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002899M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002900L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002902F: Documentation/filesystems/ext2.txt
2903F: fs/ext2/
2904F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002907M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002908M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002909M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002910L: linux-ext4@vger.kernel.org
2911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002912F: Documentation/filesystems/ext3.txt
2913F: fs/ext3/
2914F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002915
2916EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002917M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002918M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002919L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002920W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002921Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002923F: Documentation/filesystems/ext4.txt
2924F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
Mimi Zoharc5532b02011-08-17 18:52:24 -04002926Extended Verification Module (EVM)
2927M: Mimi Zohar <zohar@us.ibm.com>
2928S: Supported
2929F: security/integrity/evm/
2930
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002931EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2932M: MyungJoo Ham <myungjoo.ham@samsung.com>
2933M: Chanwoo Choi <cw00.choi@samsung.com>
2934L: linux-kernel@vger.kernel.org
2935S: Maintained
2936F: drivers/extcon/
2937F: Documentation/extcon/
2938
Jingoo Han0a799512012-02-06 11:30:39 +09002939EXYNOS DP DRIVER
2940M: Jingoo Han <jg1.han@samsung.com>
2941L: linux-fbdev@vger.kernel.org
2942S: Maintained
2943F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002944F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002945
Donghwa Lee33ad3912012-03-06 11:44:58 +09002946EXYNOS MIPI DISPLAY DRIVERS
2947M: Inki Dae <inki.dae@samsung.com>
2948M: Donghwa Lee <dh09.lee@samsung.com>
2949M: Kyungmin Park <kyungmin.park@samsung.com>
2950L: linux-fbdev@vger.kernel.org
2951S: Maintained
2952F: drivers/video/exynos/exynos_mipi*
2953F: include/video/exynos_mipi*
2954
Jean Delvaree53004e2006-01-09 23:26:14 +01002955F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002957L: lm-sensors@lm-sensors.org
2958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002959F: Documentation/hwmon/f71805f
2960F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002961
Michael Büscheea977e2012-04-02 12:14:32 -03002962FC0011 TUNER DRIVER
2963M: Michael Buesch <m@bues.ch>
2964L: linux-media@vger.kernel.org
2965S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002966F: drivers/media/tuners/fc0011.h
2967F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002968
Antti Palosaari91952bc2012-10-01 12:28:46 -03002969FC2580 MEDIA DRIVER
2970M: Antti Palosaari <crope@iki.fi>
2971L: linux-media@vger.kernel.org
2972W: http://linuxtv.org/
2973W: http://palosaari.fi/linux/
2974Q: http://patchwork.linuxtv.org/project/linux-media/list/
2975T: git git://linuxtv.org/anttip/media_tree.git
2976S: Maintained
2977F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Eric Paris88b2dbd2010-08-18 12:25:50 -04002979FANOTIFY
2980M: Eric Paris <eparis@redhat.com>
2981S: Maintained
2982F: fs/notify/fanotify/
2983F: include/linux/fanotify.h
2984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002986M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987W: http://www.farsite.co.uk/
2988S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002989F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Akinobu Mitac5408b82007-04-23 14:41:20 -07002991FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002992M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002994F: Documentation/fault-injection/
2995F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002996
Robert Lovecae727d2010-02-16 12:16:00 -08002997FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2998M: Robert Love <robert.w.love@intel.com>
2999L: devel@open-fcoe.org
3000W: www.Open-FCoE.org
3001S: Supported
3002F: drivers/scsi/libfc/
3003F: drivers/scsi/fcoe/
3004F: include/scsi/fc/
3005F: include/scsi/libfc.h
3006F: include/scsi/libfcoe.h
3007
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003008FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003009M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003010L: linux-fsdevel@vger.kernel.org
3011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003012F: include/linux/fcntl.h
3013F: include/linux/fs.h
3014F: fs/fcntl.c
3015F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003016
3017FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003018M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003019L: linux-fsdevel@vger.kernel.org
3020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003021F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003022
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003023FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003024M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003025L: lm-sensors@lm-sensors.org
3026S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003027F: drivers/hwmon/f75375s.c
3028F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003029
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003030FIREWIRE AUDIO DRIVERS
3031M: Clemens Ladisch <clemens@ladisch.de>
3032L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3033T: git git://git.alsa-project.org/alsa-kernel.git
3034S: Maintained
3035F: sound/firewire/
3036
Chris Boota511ce32012-04-14 17:50:35 -07003037FIREWIRE SBP-2 TARGET
3038M: Chris Boot <bootc@bootc.net>
3039L: linux-scsi@vger.kernel.org
3040L: target-devel@vger.kernel.org
3041L: linux1394-devel@lists.sourceforge.net
3042T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3043S: Maintained
3044F: drivers/target/sbp/
3045
Joe Perches7d2c86b2009-04-07 20:59:01 -07003046FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003047M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003048L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003049W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003050T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003052F: drivers/firewire/
3053F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003054F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003055
3056FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003057M: Ming Lei <ming.lei@canonical.com>
3058L: linux-kernel@vger.kernel.org
3059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003060F: Documentation/firmware_class/
3061F: drivers/base/firmware*.c
3062F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003063
Jiri Kosina8206f662012-05-18 13:52:29 +02003064FLOPPY DRIVER
3065M: Jiri Kosina <jkosina@suse.cz>
3066T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3067S: Odd fixes
3068F: drivers/block/floppy.c
3069
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003070FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003071M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003072W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003074F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003075
3076FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003077L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003078S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003079F: drivers/net/wan/dlci.c
3080F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003083M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003084L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003086Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003087T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003089F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003090F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003091F: drivers/video/
3092F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003093F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Zhang Wei173acc72008-03-01 07:42:48 -07003095FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003096M: Li Yang <leoli@freescale.com>
3097M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003098L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003100F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003101
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003102FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003104L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003105L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003107F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003108
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003109FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003110M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003111L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003112L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003114F: arch/arm/plat-mxc/include/mach/imxfb.h
3115F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003116
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003117FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003118M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3119M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003120L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003121L: netdev@vger.kernel.org
3122S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003123F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003124F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003125
Timur Tabid9e9d822008-04-24 08:45:26 +10003126FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003127M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003128L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003130F: arch/powerpc/sysdev/qe_lib/
3131F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003132
Joe Perchesb55ef9292009-10-26 16:49:46 -07003133FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003134M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003135L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003136L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003137S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003138F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003139
Li Yangbeaf53b2007-05-25 13:54:02 +08003140FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003141M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003142L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003143L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003144S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003145F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003146
Timur Tabid9e9d822008-04-24 08:45:26 +10003147FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003148M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003149L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003150S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003151F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003152
3153FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003154M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003155L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003156L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003157S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003158F: sound/soc/fsl/fsl*
3159F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003165F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Pavel Machek71038f52009-01-15 13:51:02 -08003167FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003168M: Pavel Machek <pavel@ucw.cz>
3169M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003170L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003172F: Documentation/power/freezing-of-tasks.txt
3173F: include/linux/freezer.h
3174F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003175
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003176FRONTSWAP API
3177M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3178L: linux-kernel@vger.kernel.org
3179S: Maintained
3180F: mm/frontswap.c
3181F: include/linux/frontswap.h
3182
David Howellsa5432f52009-04-20 15:46:45 +01003183FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003184M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003185L: linux-cachefs@redhat.com
3186S: Supported
3187F: Documentation/filesystems/caching/
3188F: fs/fscache/
3189F: include/linux/fscache*.h
3190
David Howells5ab7ffe2007-04-10 15:10:45 +01003191FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003192M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003194F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Jonathan Woithe20b93732008-06-11 10:14:56 +09303196FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303197M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003198L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003200F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303201
Heungjun Kim4da621b2011-11-11 08:05:33 -03003202FUJITSU M-5MO LS CAMERA ISP DRIVER
3203M: Kyungmin Park <kyungmin.park@samsung.com>
3204M: Heungjun Kim <riverful.kim@samsung.com>
3205L: linux-media@vger.kernel.org
3206S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003207F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003208F: include/media/m5mols.h
3209
Robert Gerlach2d24c492012-01-18 14:26:22 +01003210FUJITSU TABLET EXTRAS
3211M: Robert Gerlach <khnz@gmx.de>
3212L: platform-driver-x86@vger.kernel.org
3213S: Maintained
3214F: drivers/platform/x86/fujitsu-tablet.c
3215
Miklos Szeredi04578f12005-09-09 13:10:22 -07003216FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003217M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003218L: fuse-devel@lists.sourceforge.net
3219W: http://fuse.sourceforge.net/
3220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003221F: fs/fuse/
3222F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003223
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003225M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003227S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003228F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003231M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232L: linux-scsi@vger.kernel.org
3233W: http://www.icp-vortex.com/
3234S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003235F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003237GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003238M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003240F: drivers/i2c/busses/i2c-gpio.c
3241F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003242
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003243GENERIC GPIO I2C MULTIPLEXER DRIVER
3244M: Peter Korsgaard <peter.korsgaard@barco.com>
3245L: linux-i2c@vger.kernel.org
3246S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003247F: drivers/i2c/muxes/i2c-mux-gpio.c
3248F: include/linux/i2c-mux-gpio.h
3249F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003250
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003251GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003252M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003255F: drivers/net/wan/c101.c
3256F: drivers/net/wan/hd6457*
3257F: drivers/net/wan/hdlc*
3258F: drivers/net/wan/n2.c
3259F: drivers/net/wan/pc300too.c
3260F: drivers/net/wan/pci200syn.c
3261F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003263GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003264M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003265L: linux-arch@vger.kernel.org
3266T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3267S: Maintained
3268F: include/asm-generic
3269
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003270GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003271M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003272L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003273S: Supported
3274F: drivers/uio/uio_pci_generic.c
3275
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003276GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003277M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003278L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003279W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003280T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3281T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003283F: Documentation/filesystems/gfs2*.txt
3284F: fs/gfs2/
3285F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003286
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003287GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003288M: Hansjoerg Lipp <hjlipp@web.de>
3289M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003290L: gigaset307x-common@lists.sourceforge.net
3291W: http://gigaset307x.sourceforge.net/
3292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003293F: Documentation/isdn/README.gigaset
3294F: drivers/isdn/gigaset/
3295F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003296
Grant Likelya0dc00b2011-02-12 01:48:14 -07003297GPIO SUBSYSTEM
3298M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003299M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003300S: Maintained
3301T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003302F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003303F: drivers/gpio/
3304F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003305F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003306
Harry Wei71a6d0a2011-05-11 15:13:33 -07003307GRE DEMULTIPLEXER DRIVER
3308M: Dmitry Kozlov <xeb@mail.ru>
3309L: netdev@vger.kernel.org
3310S: Maintained
3311F: net/ipv4/gre.c
3312F: include/net/gre.h
3313
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003314GRETH 10/100/1G Ethernet MAC device driver
3315M: Kristoffer Glembo <kristoffer@gaisler.com>
3316L: netdev@vger.kernel.org
3317S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003318F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003319
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003320GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003321M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003322L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003323T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003324S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003325F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003326
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003327GSPCA GL860 SUBDRIVER
3328M: Olivier Lorin <o.lorin@laposte.net>
3329L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003330T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003331S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003332F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003333
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003334GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003335M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003336L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003337T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003338S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003339F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003340
3341GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003342M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003343L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003344T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003345S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003346F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003347
Brian Johnson261982f2009-07-19 15:58:56 -03003348GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003349M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003350L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003351T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003352S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003353F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003354
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003355GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003356M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003357L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003358T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003359S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003360F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003361
3362GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003363M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003364L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003365T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003366S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003367F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003368
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003369STK1160 USB VIDEO CAPTURE DRIVER
3370M: Ezequiel Garcia <elezegarcia@gmail.com>
3371L: linux-media@vger.kernel.org
3372T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3373S: Maintained
3374F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003375
Harry Wei71a6d0a2011-05-11 15:13:33 -07003376HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3377M: Frank Seidel <frank@f-seidel.de>
3378L: platform-driver-x86@vger.kernel.org
3379W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3380S: Maintained
3381F: drivers/platform/x86/hdaps.c
3382
3383HWPOISON MEMORY FAILURE HANDLING
3384M: Andi Kleen <andi@firstfloor.org>
3385L: linux-mm@kvack.org
3386T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3387S: Maintained
3388F: mm/memory-failure.c
3389F: mm/hwpoison-inject.c
3390
3391HYPERVISOR VIRTUAL CONSOLE DRIVER
3392L: linuxppc-dev@lists.ozlabs.org
3393S: Odd Fixes
3394F: drivers/tty/hvc/
3395
Michael Buesch844dd052006-06-26 00:24:59 -07003396HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003397M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003398M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003399L: lm-sensors@lm-sensors.org
3400W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003401T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003402T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003403S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003404F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003405F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003406F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003407
3408HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003409M: Matt Mackall <mpm@selenic.com>
3410M: Herbert Xu <herbert@gondor.apana.org.au>
3411S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003412F: Documentation/hw_random.txt
3413F: drivers/char/hw_random/
3414F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003415
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003416HARDWARE SPINLOCK CORE
3417M: Ohad Ben-Cohen <ohad@wizery.com>
3418S: Maintained
3419F: Documentation/hwspinlock.txt
3420F: drivers/hwspinlock/hwspinlock_*
3421F: include/linux/hwspinlock.h
3422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003424L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003426F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Antti Palosaari91952bc2012-10-01 12:28:46 -03003428HD29L2 MEDIA DRIVER
3429M: Antti Palosaari <crope@iki.fi>
3430L: linux-media@vger.kernel.org
3431W: http://linuxtv.org/
3432W: http://palosaari.fi/linux/
3433Q: http://patchwork.linuxtv.org/project/linux-media/list/
3434T: git git://linuxtv.org/anttip/media_tree.git
3435S: Maintained
3436F: drivers/media/dvb-frontends/hd29l2*
3437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003438HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003439M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003440L: iss_storagedev@hp.com
3441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003442F: Documentation/blockdev/cpqarray.txt
3443F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003444
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003445HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003446M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003447L: iss_storagedev@hp.com
3448S: Supported
3449F: Documentation/scsi/hpsa.txt
3450F: drivers/scsi/hpsa*.[ch]
3451F: include/linux/cciss*.h
3452
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003453HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003454M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003455L: iss_storagedev@hp.com
3456S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003457F: Documentation/blockdev/cciss.txt
3458F: drivers/block/cciss*
3459F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003460
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003462L: linux-fsdevel@vger.kernel.org
3463S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003464F: Documentation/filesystems/hfs.txt
3465F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
3467HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003468M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469L: linux-nvidia@lists.surfsouth.com
3470W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003472F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003474HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003475M: Pavel Machek <pavel@ucw.cz>
3476M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003477L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003479F: arch/x86/power/
3480F: drivers/base/power/
3481F: kernel/power/
3482F: include/linux/suspend.h
3483F: include/linux/freezer.h
3484F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003485F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003486
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003487HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003488M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003489L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003490T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003492F: drivers/hid/
3493F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003494
Ingo Molnar38bed542007-02-22 09:09:34 +01003495HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003496M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003497T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003499F: Documentation/timers/
3500F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003501F: kernel/time/clockevents.c
3502F: kernel/time/tick*.*
3503F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003504F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003505F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003506
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003509S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003510F: drivers/net/hamradio/dmascc.c
3511F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003513HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003514M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003515W: http://www.highpoint-tech.com
3516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003517F: Documentation/scsi/hptiop.txt
3518F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003519
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003521M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522L: linux-hippi@sunsite.dk
3523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003524F: include/linux/hippidevice.h
3525F: include/linux/if_hippi.h
3526F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003527F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Jouni Malinenff1d2762005-05-12 22:54:16 -04003529HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003530M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003531L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003532L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003533W: http://hostap.epitest.fi/
3534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003535F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003536
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003537HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003538L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003539S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003540F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003541
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003542HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003543M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003544S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003545F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003546
Joe Perches7d2c86b2009-04-07 20:59:01 -07003547HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003550F: Documentation/timers/hpet.txt
3551F: drivers/char/hpet.c
3552F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003553
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003554HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003555M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: arch/x86/kernel/hpet.c
3558F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003561M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Joe Perches7d2c86b2009-04-07 20:59:01 -07003566HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003567M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003568W: http://www.pharscape.org
3569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003570F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003571
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003572HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003573M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003574L: linux-input@vger.kernel.org
3575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003576F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003579M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003581F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003583Hyper-V CORE AND DRIVERS
3584M: K. Y. Srinivasan <kys@microsoft.com>
3585M: Haiyang Zhang <haiyangz@microsoft.com>
3586L: devel@linuxdriverproject.org
3587S: Maintained
3588F: drivers/hv/
3589F: drivers/hid/hid-hyperv.c
3590F: drivers/net/hyperv/
3591F: drivers/staging/hv/
3592
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003593I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003594M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003595L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003597F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003598
Jean Delvare5b543962005-08-15 19:51:02 +02003599I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003600M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3601M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003602M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003603L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003604W: http://i2c.wiki.kernel.org/
3605T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003606T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003608F: Documentation/i2c/
3609F: drivers/i2c/
3610F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003611F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Till Harbaume8c76ee2007-05-01 23:26:35 +02003613I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003614M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003615L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003616W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003618F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003619
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003623F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
3625i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003626M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003627T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628S: Maintained
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003631M: Tony Luck <tony.luck@intel.com>
3632M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003634T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003636F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
Kent Yoder956c2032012-09-07 04:17:01 +08003638IBM Power in-Nest Crypto Acceleration
3639M: Kent Yoder <key@linux.vnet.ibm.com>
3640L: linux-crypto@vger.kernel.org
3641S: Supported
3642F: drivers/crypto/nx/
3643
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003644IBM Power 842 compression accelerator
3645M: Robert Jennings <rcj@linux.vnet.ibm.com>
3646S: Supported
3647F: drivers/crypto/nx/nx-842.c
3648F: include/linux/nx842.h
3649
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003651M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003653F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Santiago Leon9d348af2010-09-03 18:29:53 +00003655IBM Power Virtual Ethernet Device Driver
3656M: Santiago Leon <santil@linux.vnet.ibm.com>
3657L: netdev@vger.kernel.org
3658S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003659F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003660
Robert Jennings4b7652c2012-07-31 12:34:36 -05003661IBM Power Virtual SCSI/FC Device Drivers
3662M: Robert Jennings <rcj@linux.vnet.ibm.com>
3663L: linux-scsi@vger.kernel.org
3664S: Supported
3665F: drivers/scsi/ibmvscsi/
3666X: drivers/scsi/ibmvscsi/ibmvstgt.c
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668IBM ServeRAID RAID DRIVER
3669P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003670M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003673F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003675ICH LPC AND GPIO DRIVER
3676M: Peter Tyser <ptyser@xes-inc.com>
3677S: Maintained
3678F: drivers/mfd/lpc_ich.c
3679F: drivers/gpio/gpio-ich.c
3680
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003681IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003682M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003684Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003685T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003687F: Documentation/ide/
3688F: drivers/ide/
3689F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
Ike Panhc6cb8c132011-08-25 22:28:45 +08003691IDEAPAD LAPTOP EXTRAS DRIVER
3692M: Ike Panhc <ike.pan@canonical.com>
3693L: platform-driver-x86@vger.kernel.org
3694W: http://launchpad.net/ideapad-laptop
3695S: Maintained
3696F: drivers/platform/x86/ideapad-laptop.c
3697
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003698IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003699M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003700L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003702F: Documentation/cdrom/ide-cd
3703F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Andy Henroid27471fd2008-10-09 11:45:22 -07003705IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003706M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003707L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003709F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003710
Sergey Lapin02cf2282009-06-08 12:18:50 +00003711IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003712M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003713M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003714L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003715W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003716T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003717S: Maintained
3718F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003719F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003720F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003721
Ameya Palande9545f862012-01-10 09:00:58 -08003722IIO SUBSYSTEM AND DRIVERS
3723M: Jonathan Cameron <jic23@cam.ac.uk>
3724L: linux-iio@vger.kernel.org
3725S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003726F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003727F: drivers/staging/iio/
3728
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003729IKANOS/ADI EAGLE ADSL USB DRIVER
3730M: Matthieu Castet <castet.matthieu@free.fr>
3731M: Stanislaw Gruszka <stf_xl@wp.pl>
3732S: Maintained
3733F: drivers/usb/atm/ueagle-atm.c
3734
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003735INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003736M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003737S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003738F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003741L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003742S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003743F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
3745INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003746M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003747M: Sean Hefty <sean.hefty@intel.com>
3748M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003749L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003750W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003751Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003752T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003754F: Documentation/infiniband/
3755F: drivers/infiniband/
3756F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
Robert Lovec9f04f52005-07-15 12:21:07 -04003758INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003759M: John McCutchan <john@johnmccutchan.com>
3760M: Robert Love <rlove@rlove.org>
3761M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003763F: Documentation/filesystems/inotify.txt
3764F: fs/notify/inotify/
3765F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003766
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003767INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003768M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3769M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003770L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003771Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003772T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003774F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003775F: include/linux/input.h
3776F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003777
Henrik Rydberg3267a872010-06-24 19:10:40 -07003778INPUT MULTITOUCH (MT) PROTOCOL
3779M: Henrik Rydberg <rydberg@euromail.se>
3780L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003781T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003782S: Maintained
3783F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003784F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003785K: \b(ABS|SYN)_MT_
3786
Dave Jiang4ac13e12011-07-29 17:16:55 -07003787INTEL C600 SERIES SAS CONTROLLER DRIVER
3788M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003789M: Lukasz Dorau <lukasz.dorau@intel.com>
3790M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003791M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003792L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003793T: git git://git.code.sf.net/p/intel-sas/isci
3794S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003795F: drivers/scsi/isci/
3796F: firmware/isci/
3797
Len Brown26717172010-03-08 14:07:30 -05003798INTEL IDLE DRIVER
3799M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003800L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003801T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003802S: Supported
3803F: drivers/idle/intel_idle.c
3804
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003805INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003806M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003807L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003809F: Documentation/fb/intelfb.txt
3810F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003811
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003813M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003814L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003816F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303818INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003819M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003820L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303821W: http://www.lesswatts.org/projects/acpi/
3822S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003823F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303824
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003826M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003828F: arch/x86/kernel/microcode_core.c
3829F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003831INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003832M: Dan Williams <djbw@fb.com>
3833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003834F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003835
David Woodhouse6c8909b2008-10-18 16:12:17 +01003836INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003837M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003838L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003839T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003840S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003841F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003842F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003843
Dan Williamsb3e5f262007-08-07 10:26:35 -07003844INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003845M: Dan Williams <djbw@fb.com>
3846S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003847F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003848
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003849INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003850M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003852F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3853F: arch/arm/mach-ixp4xx/include/mach/npe.h
3854F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3855F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003856F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003857F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003858
Michael Buesch844dd052006-06-26 00:24:59 -07003859INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003860M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003862F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003863
Jeff Kirsher0d164402010-10-05 01:15:17 +00003864INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003865M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3866M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3867M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003868M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3869M: Don Skidmore <donald.c.skidmore@intel.com>
3870M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003871M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003872M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003873M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003874L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003875W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003876T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3877T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003879F: Documentation/networking/e100.txt
3880F: Documentation/networking/e1000.txt
3881F: Documentation/networking/e1000e.txt
3882F: Documentation/networking/igb.txt
3883F: Documentation/networking/igbvf.txt
3884F: Documentation/networking/ixgb.txt
3885F: Documentation/networking/ixgbe.txt
3886F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003887F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Len Brown6dccf9c2011-07-12 22:29:32 -04003889INTEL MRST PMU DRIVER
3890M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003891L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003892S: Supported
3893F: arch/x86/platform/mrst/pmu.*
3894
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003895INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3896M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003897L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003899F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003900F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003901F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003902
Shane Wang4bd96a72010-03-10 14:36:10 +08003903INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003904M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3905M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003906M: Shane Wang <shane.wang@intel.com>
3907L: tboot-devel@lists.sourceforge.net
3908W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003909T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003910S: Supported
3911F: Documentation/intel_txt.txt
3912F: include/linux/tboot.h
3913F: arch/x86/kernel/tboot.c
3914
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003915INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003917M: linux-wimax@intel.com
3918L: wimax@linuxwimax.org
3919S: Supported
3920W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003921F: Documentation/wimax/README.i2400m
3922F: drivers/net/wimax/i2400m/
3923F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003924
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003925INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3926M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003927L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003928S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003929F: drivers/net/wireless/iwlegacy/
3930
Zhu Yib481de92007-09-25 17:54:57 -07003931INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003932M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003933M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003934M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003935L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003936W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003937T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003939F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003940
Tomas Winklerde8fe022012-05-09 16:39:02 +03003941INTEL MANAGEMENT ENGINE (mei)
3942M: Tomas Winkler <tomas.winkler@intel.com>
3943L: linux-kernel@vger.kernel.org
3944S: Supported
3945F: include/linux/mei.h
3946F: drivers/misc/mei/*
3947F: Documentation/mei/*
3948
Ralf Baechlecb109a02007-08-30 23:56:30 -07003949IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951L: linux-mips@linux-mips.org
3952S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003953F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Ralf Baechlecb109a02007-08-30 23:56:30 -07003955IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003956M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003957L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003958S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003959F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003960
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003961IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003962M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003964F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Francois Romieu1202d6f2007-09-17 17:13:55 -07003966IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: Francois Romieu <romieu@fr.zoreil.com>
3968M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003969L: netdev@vger.kernel.org
3970S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003971F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003972
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003973IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003974M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003975L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003977F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003978
Corey Minyard4409ebe2006-04-20 02:43:12 -07003979IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003980M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003981L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003982W: http://openipmi.sourceforge.net/
3983S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003984F: Documentation/IPMI.txt
3985F: drivers/char/ipmi/
3986F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003987
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003988IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003989M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003990L: linux-scsi@vger.kernel.org
3991W: http://www.adaptec.com/
3992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003993F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003994
3995IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003996M: Wensong Zhang <wensong@linux-vs.org>
3997M: Simon Horman <horms@verge.net.au>
3998M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003999L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004000L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004002F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004003F: include/net/ip_vs.h
4004F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004005F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Randy Dunlape7839f22008-10-12 16:11:45 -07004007IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004008M: Jiri Kosina <jkosina@suse.cz>
4009M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004010S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004011F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004012
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004013IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004014M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004015L: netdev@vger.kernel.org
4016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004017F: include/linux/ipx.h
4018F: include/net/ipx.h
4019F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004023L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004024L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004026S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004027T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004028F: Documentation/networking/irda.txt
4029F: drivers/net/irda/
4030F: include/net/irda/
4031F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004033IRQ SUBSYSTEM
4034M: Thomas Gleixner <tglx@linutronix.de>
4035S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004036T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004037F: kernel/irq/
4038
Grant Likely7ab3a832012-02-14 14:06:47 -07004039IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4040M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4041M: Grant Likely <grant.likely@secretlab.ca>
4042T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4043S: Maintained
4044F: Documentation/IRQ-domain.txt
4045F: include/linux/irqdomain.h
4046F: kernel/irq/irqdomain.c
4047
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004048ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004049M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004051F: Documentation/isapnp.txt
4052F: drivers/pnp/isapnp/
4053F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004054
Harry Wei71a6d0a2011-05-11 15:13:33 -07004055iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4056M: Peter Jones <pjones@redhat.com>
4057M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4058S: Maintained
4059F: drivers/firmware/iscsi_ibft*
4060
Mike Christie14816b1e2007-11-28 16:22:06 -08004061ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004062M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004063L: open-iscsi@googlegroups.com
4064W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004065T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004067F: drivers/scsi/*iscsi*
4068F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004069
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004071M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004072L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004073L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004075T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004077F: Documentation/isdn/
4078F: drivers/isdn/
4079F: include/linux/isdn.h
4080F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
4082ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004083M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004084L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085W: http://www.melware.de
4086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004087F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
Jean Delvared6248702010-03-05 22:17:20 +01004089IT87 HARDWARE MONITORING DRIVER
4090M: Jean Delvare <khali@linux-fr.org>
4091L: lm-sensors@lm-sensors.org
4092S: Maintained
4093F: Documentation/hwmon/it87
4094F: drivers/hwmon/it87.c
4095
Hans Verkuil91821ff2007-12-02 09:35:33 -03004096IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004097M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004098L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004099L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004100T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004101W: http://www.ivtvdriver.org
4102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004103F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004104F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004105F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004106
Guenter Roeck4453d732010-08-09 17:21:08 -07004107JC42.4 TEMPERATURE SENSOR DRIVER
4108M: Guenter Roeck <linux@roeck-us.net>
4109L: lm-sensors@lm-sensors.org
4110S: Maintained
4111F: drivers/hwmon/jc42.c
4112F: Documentation/hwmon/jc42
4113
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004114JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004115M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004116L: jfs-discussion@lists.sourceforge.net
4117W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004118T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004120F: Documentation/filesystems/jfs.txt
4121F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004122
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004123JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004125L: netdev@vger.kernel.org
4126S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004127F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004128
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004130M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004131L: linux-mtd@lists.infradead.org
4132W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004134F: fs/jffs2/
4135F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
Josh Triplettde456d32006-07-30 03:04:00 -07004137JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004138M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004139M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004140L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004141S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004142F: fs/jbd/
4143F: include/linux/ext3_jbd.h
4144F: include/linux/jbd.h
4145
4146JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4147M: "Theodore Ts'o" <tytso@mit.edu>
4148L: linux-ext4@vger.kernel.org
4149S: Maintained
4150F: fs/jbd2/
4151F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004152
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004153JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004154M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004155L: linux-serial@vger.kernel.org
4156S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004157F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004158
Clemens Ladischaf399172011-01-10 16:32:54 +01004159K10TEMP HARDWARE MONITORING DRIVER
4160M: Clemens Ladisch <clemens@ladisch.de>
4161L: lm-sensors@lm-sensors.org
4162S: Maintained
4163F: Documentation/hwmon/k10temp
4164F: drivers/hwmon/k10temp.c
4165
Rudolf Marek4660cb32006-10-08 22:01:26 +02004166K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004167M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004168L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004170F: Documentation/hwmon/k8temp
4171F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
4173KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004174M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004175L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004176S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004177F: Documentation/kbuild/kconfig-language.txt
4178F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
Vivek Goyalea6c2082006-05-20 14:59:55 -07004180KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004181M: Vivek Goyal <vgoyal@redhat.com>
4182M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004183L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004184W: http://lse.sourceforge.net/kdump/
4185S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004186F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004187
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004189M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004190L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004192F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Michal Marek70fb7ba2010-01-29 14:22:43 +01004194KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004195M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004196T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4197T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004198L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: Documentation/kbuild/
4201F: Makefile
4202F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004203F: scripts/basic/
4204F: scripts/mk*
4205F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
4207KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004208L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004209W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004210S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004212KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004213M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004214L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004217F: fs/nfsd/
4218F: include/linux/nfsd/
4219F: fs/lockd/
4220F: fs/nfs_common/
4221F: net/sunrpc/
4222F: include/linux/lockd/
4223F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
Avi Kivity426d62e2006-12-13 00:34:03 -08004225KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004226M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004227M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004228L: kvm@vger.kernel.org
4229W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004231F: Documentation/*/kvm.txt
4232F: arch/*/kvm/
4233F: arch/*/include/asm/kvm*
4234F: include/linux/kvm*
4235F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004236
Joerg Roedelad8003d2008-09-10 20:01:07 +02004237KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004238M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004239L: kvm@vger.kernel.org
4240W: http://kvm.qumranet.com
4241S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004242F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004243F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004244
Hollis Blanchard513014b2008-04-16 23:28:08 -05004245KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004246M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004247L: kvm-ppc@vger.kernel.org
4248W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004250F: arch/powerpc/include/asm/kvm*
4251F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004252
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004253KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004254M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004255L: kvm-ia64@vger.kernel.org
4256W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004258F: Documentation/ia64/kvm.txt
4259F: arch/ia64/include/asm/kvm*
4260F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004261
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004262KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004264M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004265M: linux390@de.ibm.com
4266L: linux-s390@vger.kernel.org
4267W: http://www.ibm.com/developerworks/linux/linux390/
4268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004269F: Documentation/s390/kvm.txt
4270F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004271F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004272F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004273
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004274KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004275M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004276W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004277L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: include/linux/kexec.h
4280F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004281
David Howellse9714612010-03-29 23:42:09 +01004282KEYS/KEYRINGS:
4283M: David Howells <dhowells@redhat.com>
4284L: keyrings@linux-nfs.org
4285S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004286F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004287F: include/linux/key.h
4288F: include/linux/key-type.h
4289F: include/keys/
4290F: security/keys/
4291
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004292KEYS-TRUSTED
4293M: David Safford <safford@watson.ibm.com>
4294M: Mimi Zohar <zohar@us.ibm.com>
4295L: linux-security-module@vger.kernel.org
4296L: keyrings@linux-nfs.org
4297S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004298F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004299F: include/keys/trusted-type.h
4300F: security/keys/trusted.c
4301F: security/keys/trusted.h
4302
4303KEYS-ENCRYPTED
4304M: Mimi Zohar <zohar@us.ibm.com>
4305M: David Safford <safford@watson.ibm.com>
4306L: linux-security-module@vger.kernel.org
4307L: keyrings@linux-nfs.org
4308S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004309F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004310F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004311F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004312
Jason Wessel5b778da2010-05-20 21:04:28 -05004313KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004314M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004315W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004316L: kgdb-bugreport@lists.sourceforge.net
4317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004318F: Documentation/DocBook/kgdb.tmpl
4319F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004320F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004321F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004322F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004323F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004324
Pekka Enberg456db8c2008-04-28 22:47:29 +03004325KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004326M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004327M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004328S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004329F: Documentation/kmemcheck.txt
4330F: arch/x86/include/asm/kmemcheck.h
4331F: arch/x86/mm/kmemcheck/
4332F: include/linux/kmemcheck.h
4333F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004334
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004335KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004336M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004337S: Maintained
4338F: Documentation/kmemleak.txt
4339F: include/linux/kmemleak.h
4340F: mm/kmemleak.c
4341F: mm/kmemleak-test.c
4342
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004343KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004344M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4345M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4346M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004347M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004349F: Documentation/kprobes.txt
4350F: include/linux/kprobes.h
4351F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004352
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004353KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004354M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004355W: http://miguelojeda.es/auxdisplay.htm
4356W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004358F: Documentation/auxdisplay/ks0108
4359F: drivers/auxdisplay/ks0108.c
4360F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004361
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004364S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004365F: Documentation/networking/lapb-module.txt
4366F: include/*/lapb.h
4367F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
4369LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004370M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371L: linux-scsi@vger.kernel.org
4372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004373F: Documentation/scsi/53c700.txt
4374F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
Richard Purdie263de9b2006-05-15 09:44:16 -07004376LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004377M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004379L: linux-leds@vger.kernel.org
4380T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004382F: drivers/leds/
4383F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004384
Jean Delvareb0461a42011-06-15 15:08:46 -07004385LEGACY EEPROM DRIVER
4386M: Jean Delvare <khali@linux-fr.org>
4387S: Maintained
4388F: Documentation/misc-devices/eeprom
4389F: drivers/misc/eeprom/eeprom.c
4390
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393L: legousb-devel@lists.sourceforge.net
4394W: http://legousb.sourceforge.net/
4395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004396F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
Michael Krufky055616a2012-10-02 00:56:06 -03004398LG2160 MEDIA DRIVER
4399M: Michael Krufky <mkrufky@linuxtv.org>
4400L: linux-media@vger.kernel.org
4401W: http://linuxtv.org/
4402W: http://github.com/mkrufky
4403Q: http://patchwork.linuxtv.org/project/linux-media/list/
4404T: git git://linuxtv.org/mkrufky/tuners.git
4405S: Maintained
4406F: drivers/media/dvb-frontends/lg2160.*
4407
Michael Krufky6f0e7722012-10-02 00:56:00 -03004408LGDT3305 MEDIA DRIVER
4409M: Michael Krufky <mkrufky@linuxtv.org>
4410L: linux-media@vger.kernel.org
4411W: http://linuxtv.org/
4412W: http://github.com/mkrufky
4413Q: http://patchwork.linuxtv.org/project/linux-media/list/
4414T: git git://linuxtv.org/mkrufky/tuners.git
4415S: Maintained
4416F: drivers/media/dvb-frontends/lgdt3305.*
4417
Rusty Russell568a17f2007-10-25 14:12:24 +10004418LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004419M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004420L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004421W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004422S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004423F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004424F: arch/x86/lguest/
4425F: drivers/lguest/
4426F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004427F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004428
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004430M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431W: http://www.ibm.com/linux/ltc/projects/ppc
4432S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004433F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004435LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4437M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004439L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004440Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004441T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004443F: Documentation/powerpc/
4444F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
4446LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004447M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004449L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004451F: arch/powerpc/platforms/powermac/
4452F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
Grant Likely77a76362008-07-12 12:11:43 -06004454LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004455M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004456L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004457T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004459F: arch/powerpc/platforms/512x/
4460F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461
4462LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004463M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004464M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004466L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004467T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004469F: arch/powerpc/platforms/40x/
4470F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
Grant Likely260c02a2007-10-02 12:15:34 +10004472LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004473M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004474W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004475L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004476T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004478F: arch/powerpc/*/*virtex*
4479F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480
Tom Rinie93adf12005-07-26 12:49:53 -07004481LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004482M: Vitaly Bordug <vitb@kernel.crashing.org>
4483M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004484W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004485L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004486S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004487F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004488
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004490M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004491W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004492L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004493S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004494F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004495F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
Olof Johanssonab06ff32006-09-06 14:44:54 -05004497LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004498M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004499L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004500S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004501F: arch/powerpc/platforms/pasemi/
4502F: drivers/*/*pasemi*
4503F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004504
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004506M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004507L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508S: Supported
4509
Harry Weia23ce6d2011-02-11 16:52:20 +01004510LIS3LV02D ACCELEROMETER DRIVER
4511M: Eric Piel <eric.piel@tremplin-utc.net>
4512S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004513F: Documentation/misc-devices/lis3lv02d
4514F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004515F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004516
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004517LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004518M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004520F: include/linux/llc.h
4521F: include/net/llc*
4522F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004523
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004524LM73 HARDWARE MONITOR DRIVER
4525M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4526L: lm-sensors@lm-sensors.org
4527S: Maintained
4528F: drivers/hwmon/lm73.c
4529
Jean Delvare156e2d12011-07-25 21:46:11 +02004530LM78 HARDWARE MONITOR DRIVER
4531M: Jean Delvare <khali@linux-fr.org>
4532L: lm-sensors@lm-sensors.org
4533S: Maintained
4534F: Documentation/hwmon/lm78
4535F: drivers/hwmon/lm78.c
4536
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004539L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004541F: Documentation/hwmon/lm83
4542F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
4544LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004545M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004546L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004548F: Documentation/hwmon/lm90
4549F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004551LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004552M: Peter Zijlstra <peterz@infradead.org>
4553M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004554T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004556F: Documentation/lockdep*.txt
4557F: Documentation/lockstat.txt
4558F: include/linux/lockdep.h
4559F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004560
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004561LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004562M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004563L: linux-ntfs-dev@lists.sourceforge.net
4564W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004566F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004567F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568
Joern Engelef6ada32009-11-20 22:17:12 +01004569LogFS
4570M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304571M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004572L: logfs@logfs.org
4573W: logfs.org
4574S: Maintained
4575F: fs/logfs/
4576
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004577LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004578M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004579M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004580L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004581L: linux-scsi@vger.kernel.org
4582W: http://www.lsilogic.com/support
4583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004584F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004585
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004587M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588L: linux-scsi@vger.kernel.org
4589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004590F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591
Guenter Roecke5f5c992010-06-25 11:59:54 -07004592LTC4261 HARDWARE MONITOR DRIVER
4593M: Guenter Roeck <linux@roeck-us.net>
4594L: lm-sensors@lm-sensors.org
4595S: Maintained
4596F: Documentation/hwmon/ltc4261
4597F: drivers/hwmon/ltc4261.c
4598
Mike Frysinger81365c32008-10-29 14:01:12 -07004599LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004600M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004601M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004602M: Cyril Hrubis <chrubis@suse.cz>
4603M: Caspar Zhang <caspar@casparzhang.com>
4604M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004605L: ltp-list@lists.sourceforge.net (subscribers-only)
4606W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004607T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004608T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004609S: Maintained
4610
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004611M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004612M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004613L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004614L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4615W: http://www.linux-m32r.org/
4616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004617F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004618
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004620M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621L: linux-m68k@lists.linux-m68k.org
4622W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004623T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004625F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004626F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
4628M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004629M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004631L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004633F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
4635M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004636M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637W: http://www.tazenda.demon.co.uk/phil/linux-hp
4638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004639F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640
Jiri Benc64a327a2007-05-05 11:47:08 -07004641MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004643L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004644W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004645T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4646T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004648F: Documentation/networking/mac80211-injection.txt
4649F: include/net/mac80211.h
4650F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004651
Stefano Brivio1036d862007-12-23 04:46:27 +01004652MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Stefano Brivio <stefano.brivio@polimi.it>
4654M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004655L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004656W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004657T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4658T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004660F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004661
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004662MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004663M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004664L: netdev@vger.kernel.org
4665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004666F: drivers/net/macvlan.c
4667F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004668
Michael Kerriskfaf16682005-07-31 22:34:47 -07004669MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004671W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004672L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004673S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004674
stephen hemminger44c14c12012-04-02 12:59:47 +00004675MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4676M: Mirko Lindner <mlindner@marvell.com>
4677M: Stephen Hemminger <shemminger@vyatta.com>
4678L: netdev@vger.kernel.org
4679S: Maintained
4680F: drivers/net/ethernet/marvell/sk*
4681
Stefano Brivio74cda162007-11-19 20:27:46 +01004682MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004683M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004684L: libertas-dev@lists.infradead.org
4685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004686F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004687
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004688MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004689M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004690L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004691S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004692F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004693F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Bing Zhaofcad5842011-07-13 13:11:58 -07004695MARVELL MWIFIEX WIRELESS DRIVER
4696M: Bing Zhao <bzhao@marvell.com>
4697L: linux-wireless@vger.kernel.org
4698S: Maintained
4699F: drivers/net/wireless/mwifiex/
4700
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004701MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004702M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004703L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004704S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004705F: drivers/net/wireless/mwl8k.c
4706
Pierre Ossman2a695672009-03-16 19:52:26 +01004707MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004708M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004709S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004710F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004711
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004713L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004714S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004715F: drivers/video/matrox/matroxfb_*
4716F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717
Guenter Roeckca462082012-06-01 23:28:23 -07004718MAX16065 HARDWARE MONITOR DRIVER
4719M: Guenter Roeck <linux@roeck-us.net>
4720L: lm-sensors@lm-sensors.org
4721S: Maintained
4722F: Documentation/hwmon/max16065
4723F: drivers/hwmon/max16065.c
4724
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004725MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004726M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004727L: lm-sensors@lm-sensors.org
4728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004729F: Documentation/hwmon/max6650
4730F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004731
Joe Perches127c49a2009-04-08 08:34:04 -07004732MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004733M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004734P: LinuxTV.org Project
4735L: linux-media@vger.kernel.org
4736W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004737Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004738T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004739S: Maintained
4740F: Documentation/dvb/
4741F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004742F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004743F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004744F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004745F: include/media/
4746F: include/linux/dvb/
4747F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004748
4749MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004751L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004752W: http://megaraid.lsilogic.com
4753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004754F: Documentation/scsi/megaraid.txt
4755F: drivers/scsi/megaraid.*
4756F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004757
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004758MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760W: http://www.linux-mm.org
4761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004762F: include/linux/mm.h
4763F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004764
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004765MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004766M: Johannes Weiner <hannes@cmpxchg.org>
4767M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004768M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004769M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004770L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004771L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004773F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004774F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004775
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004779W: http://www.linux-mtd.infradead.org/
4780Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004781T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004783F: drivers/mtd/
4784F: include/linux/mtd/
4785F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
Michal Simekc6375b02009-03-27 14:25:52 +01004787MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004788M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004789L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004790W: http://www.monstr.eu/fdt/
4791T: git git://git.monstr.eu/linux-2.6-microblaze.git
4792S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004793F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
4795MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004796M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004798F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
4800MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004801M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004803W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004804T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004805Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004806S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004807F: Documentation/mips/
4808F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004811M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004813F: include/linux/module.h
4814F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
4816MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004818S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004819F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004820F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004821F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
Pavel Pisac58ff042007-05-16 01:10:41 +02004823MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004824M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004828
Jiri Slabyb9705b62008-04-30 00:53:48 -07004829MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004830M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004832F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004833F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004834
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004835MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004836M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004837L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004839F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004840
Anisse Astier0f1006b2009-12-17 11:28:49 +01004841MSI WMI SUPPORT
4842M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004843L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004844S: Supported
4845F: drivers/platform/x86/msi-wmi.c
4846
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004847MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004848M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004849T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004851F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004852
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004853MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004854M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004855L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004856T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004858F: drivers/mmc/
4859F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004860
David Brownell15a05802007-08-08 09:12:54 -07004861MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004862S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004863F: drivers/mmc/host/mmc_spi.c
4864F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004865
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004867M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: Documentation/sound/oss/MultiSound
4870F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871
Jiri Slabyd7354102006-12-08 02:38:35 -08004872MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004873S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004874F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004875F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004876
Felipe Balbi550a7372008-07-24 12:27:36 +03004877MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004878M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004879L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004880T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004882F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004883
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004884MXL5007T MEDIA DRIVER
4885M: Michael Krufky <mkrufky@linuxtv.org>
4886L: linux-media@vger.kernel.org
4887W: http://linuxtv.org/
4888W: http://github.com/mkrufky
4889Q: http://patchwork.linuxtv.org/project/linux-media/list/
4890T: git git://linuxtv.org/mkrufky/tuners.git
4891S: Maintained
4892F: drivers/media/tuners/mxl5007t.*
4893
Brice Goglin2d3cf582008-05-17 12:45:36 +02004894MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004895M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004896L: netdev@vger.kernel.org
4897W: http://www.myri.com/scs/download-Myri10GE.html
4898S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004899F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004902S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004903F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
Daniel Mack23dc05a2011-05-18 11:28:38 +02004905NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4906M: Daniel Mack <zonque@gmail.com>
4907S: Maintained
4908L: alsa-devel@alsa-project.org
4909W: http://www.native-instruments.com
4910F: sound/usb/caiaq/
4911
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004913M: Petr Vandrovec <petr@vandrovec.name>
4914S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004915F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916
4917NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004918M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919L: linux-scsi@vger.kernel.org
4920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004921F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004923NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004924M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004925L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004926W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004927S: Supported
4928F: drivers/infiniband/hw/nes/
4929
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004930NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004931M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004932L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004934F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004935
Jon Masonb2f5a052010-07-15 08:47:27 +00004936NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004937M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004938L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004940F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004941F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004942F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945P: Harald Welte
4946P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004947M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004948M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004949L: netfilter-devel@vger.kernel.org
4950L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004951L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952W: http://www.netfilter.org/
4953W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004954T: git git://1984.lsi.us.es/nf
4955T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004957F: include/linux/netfilter*
4958F: include/linux/netfilter/
4959F: include/net/netfilter/
4960F: net/*/netfilter.c
4961F: net/*/netfilter/
4962F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
Paul Moore4cc67732006-09-25 15:57:13 -07004964NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004965M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004966W: http://netlabel.sf.net
4967L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004968S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004969F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004970F: include/net/netlabel.h
4971F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004974M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004976W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004978F: include/linux/netrom.h
4979F: include/net/netrom.h
4980F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004982NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004983M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004985F: Documentation/blockdev/nbd.txt
4986F: drivers/block/nbd.c
4987F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
Neil Horman6e436502009-10-05 03:56:55 +00004989NETWORK DROP MONITOR
4990M: Neil Horman <nhorman@tuxdriver.com>
4991L: netdev@vger.kernel.org
4992S: Maintained
4993W: https://fedorahosted.org/dropwatch/
4994F: net/core/drop_monitor.c
4995
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004997M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004998L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004999W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005000W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005001T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5002T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005004F: net/
5005F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005006F: include/linux/in.h
5007F: include/linux/net.h
5008F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
5010NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005011M: "David S. Miller" <davem@davemloft.net>
5012M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005013M: James Morris <jmorris@namei.org>
5014M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5015M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005016L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005017T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005019F: net/ipv4/
5020F: net/ipv6/
5021F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005022F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
David S. Miller73b76562012-10-16 14:08:40 -04005024NETWORKING [IPSEC]
5025M: Steffen Klassert <steffen.klassert@secunet.com>
5026M: Herbert Xu <herbert@gondor.apana.org.au>
5027M: "David S. Miller" <davem@davemloft.net>
5028L: netdev@vger.kernel.org
5029T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5030S: Maintained
5031F: net/xfrm/
5032F: net/key/
5033F: net/ipv4/xfrm*
5034F: net/ipv6/xfrm*
5035F: include/uapi/linux/xfrm.h
5036F: include/net/xfrm.h
5037
James Morris10e2ff12007-08-25 14:41:28 -07005038NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005039M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005040L: netdev@vger.kernel.org
5041S: Maintained
5042
John W. Linville29f8f632006-01-18 14:52:48 -08005043NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005044M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005045L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005046Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005047T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005048S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005049F: net/mac80211/
5050F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005051F: net/wireless/
5052F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005053F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005054F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005055F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005056
Joe Perches788873a2009-04-16 09:38:45 +00005057NETWORKING DRIVERS
5058L: netdev@vger.kernel.org
5059W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005060T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5061T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005062S: Odd Fixes
5063F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005064F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005065F: include/linux/netdevice.h
5066F: include/linux/arcdevice.h
5067F: include/linux/etherdevice.h
5068F: include/linux/fcdevice.h
5069F: include/linux/fddidevice.h
5070F: include/linux/hippidevice.h
5071F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005072
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005073NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005074M: Sony Chacko <sony.chacko@qlogic.com>
5075M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005076L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005077W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005078S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005079F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005080
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005081NFC SUBSYSTEM
5082M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5083M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5084M: Samuel Ortiz <sameo@linux.intel.com>
5085L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005086L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005087S: Maintained
5088F: net/nfc/
5089F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005090F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005091F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005093NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005094M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005095L: linux-nfs@vger.kernel.org
5096W: http://client.linux-nfs.org
5097T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005099F: fs/lockd/
5100F: fs/nfs/
5101F: fs/nfs_common/
5102F: net/sunrpc/
5103F: include/linux/lockd/
5104F: include/linux/nfs*
5105F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106
5107NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005108M: Jan-Pascal van Best <janpascal@vanbest.org>
5109M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005110L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005112F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005114NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005115M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005116L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005117W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005118T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005120F: Documentation/filesystems/nilfs2.txt
5121F: fs/nilfs2/
5122F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005123
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005125M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005128F: Documentation/scsi/NinjaSCSI.txt
5129F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
5131NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005132M: GOTO Masanori <gotom@debian.or.jp>
5133M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005136F: Documentation/scsi/NinjaSCSI.txt
5137F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005140M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005142W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005143T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005145F: Documentation/filesystems/ntfs.txt
5146F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005148NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005149M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005150L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005152F: drivers/video/riva/
5153F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154
Tony Lindgrenf5525782009-05-28 13:23:53 -07005155OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005156M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005157L: linux-omap@vger.kernel.org
5158W: http://www.muru.com/linux/omap/
5159W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005160Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005161T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005162S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005163F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005164F: drivers/i2c/busses/i2c-omap.c
5165F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005166
5167OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005168M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005169L: linux-omap@vger.kernel.org
5170S: Maintained
5171F: arch/arm/*omap*/*clock*
5172
5173OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005174M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005175L: linux-omap@vger.kernel.org
5176S: Maintained
5177F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005178F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005179
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005180OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5181M: Rajendra Nayak <rnayak@ti.com>
5182M: Paul Walmsley <paul@pwsan.com>
5183L: linux-omap@vger.kernel.org
5184S: Maintained
5185F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5186F: arch/arm/mach-omap2/powerdomain44xx.c
5187F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5188F: arch/arm/mach-omap2/clockdomain44xx.c
5189
Tony Lindgrenf5525782009-05-28 13:23:53 -07005190OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005191M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005192M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005193L: alsa-devel@alsa-project.org (subscribers-only)
5194L: linux-omap@vger.kernel.org
5195S: Maintained
5196F: sound/soc/omap/
5197
5198OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005199M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005200L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005201L: linux-omap@vger.kernel.org
5202S: Maintained
5203F: drivers/video/omap/
5204
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005205OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005206M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005207L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005208L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005209S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005210F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005211F: Documentation/arm/OMAP/DSS
5212
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005213OMAP HARDWARE SPINLOCK SUPPORT
5214M: Ohad Ben-Cohen <ohad@wizery.com>
5215L: linux-omap@vger.kernel.org
5216S: Maintained
5217F: drivers/hwspinlock/omap_hwspinlock.c
5218F: arch/arm/mach-omap2/hwspinlock.c
5219
Tony Lindgrenf5525782009-05-28 13:23:53 -07005220OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005221M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005222L: linux-omap@vger.kernel.org
5223S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005224F: drivers/mmc/host/omap.c
5225
5226OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305227M: Venkatraman S <svenkatr@ti.com>
5228L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005229L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305230S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005231F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005232
5233OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005234M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005235S: Maintained
5236F: drivers/char/hw_random/omap-rng.c
5237
Paul Walmsleyf400c822010-12-06 19:08:54 -07005238OMAP HWMOD SUPPORT
5239M: Benoît Cousson <b-cousson@ti.com>
5240M: Paul Walmsley <paul@pwsan.com>
5241L: linux-omap@vger.kernel.org
5242S: Maintained
5243F: arch/arm/mach-omap2/omap_hwmod.c
5244F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5245
5246OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5247M: Benoît Cousson <b-cousson@ti.com>
5248L: linux-omap@vger.kernel.org
5249S: Maintained
5250F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5251
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005252OMAP IMAGE SIGNAL PROCESSOR (ISP)
5253M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5254L: linux-media@vger.kernel.org
5255S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005256F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005257
Tony Lindgrenf5525782009-05-28 13:23:53 -07005258OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005259M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005260L: linux-usb@vger.kernel.org
5261L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005262T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005263S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005264F: drivers/usb/*/*omap*
5265F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005266
Kevin Hilman6d994712012-07-16 10:05:07 -07005267OMAP GPIO DRIVER
5268M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5269M: Kevin Hilman <khilman@ti.com>
5270L: linux-omap@vger.kernel.org
5271S: Maintained
5272F: drivers/gpio/gpio-omap.c
5273
Bob Copeland0ad122d2008-07-25 19:45:18 -07005274OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005275M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005276L: linux-karma-devel@lists.sourceforge.net
5277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005278F: Documentation/filesystems/omfs.txt
5279F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005280
Harald Weltec1986ee2005-11-13 16:06:29 -08005281OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005282M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005284F: drivers/char/pcmcia/cm4000_cs.c
5285F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005286
Harald Welte77c44ab2005-11-13 16:06:26 -08005287OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005288M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005290F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005291
Jonathan Corbet77d51402007-03-22 19:44:17 -03005292OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005293M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005294L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005295T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005296S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005297F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005298
Thomas Gleixner431bca72007-05-02 09:31:35 +02005299ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005300M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005301L: linux-mtd@lists.infradead.org
5302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005303F: drivers/mtd/onenand/
5304F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005305
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005307M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308L: osst-users@lists.sourceforge.net
5309L: linux-scsi@vger.kernel.org
5310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005311F: drivers/scsi/osst*
5312F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005314OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005315M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005316L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005318F: Documentation/i2c/busses/i2c-ocores
5319F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005320
Grant Likely860c44c2009-10-26 16:49:49 -07005321OPEN FIRMWARE AND FLATTENED DEVICE TREE
5322M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005323M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005324L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005325W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005326T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005327S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005328F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005329F: drivers/of
5330F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005331F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005332K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005333K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005334
Jonas Bonn19f9d392011-06-04 22:00:38 +03005335OPENRISC ARCHITECTURE
5336M: Jonas Bonn <jonas@southpole.se>
5337W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005338L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005339S: Maintained
5340T: git git://openrisc.net/~jonas/linux
5341F: arch/openrisc
5342
Jesse Grossccb13522011-10-25 19:26:31 -07005343OPENVSWITCH
5344M: Jesse Gross <jesse@nicira.com>
5345L: dev@openvswitch.org
5346W: http://openvswitch.org
5347T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5348S: Maintained
5349F: net/openvswitch/
5350
Clemens Ladischaf399172011-01-10 16:32:54 +01005351OPL4 DRIVER
5352M: Clemens Ladisch <clemens@ladisch.de>
5353L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5354T: git git://git.alsa-project.org/alsa-kernel.git
5355S: Maintained
5356F: sound/drivers/opl4/
5357
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005359M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360L: oprofile-list@lists.sf.net
5361S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005362F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005363F: arch/*/oprofile/
5364F: drivers/oprofile/
5365F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005367ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005368M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005369M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005370L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5371W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005372T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005373S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005374F: Documentation/filesystems/ocfs2.txt
5375F: Documentation/filesystems/dlmfs.txt
5376F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005377
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005379L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005380W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005381W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005382S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005383F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005385OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005386M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005387M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005388L: osd-dev@open-osd.org
5389W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005390T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005391S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005392F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005393F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005394F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005395
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005396P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005397M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005398L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005399W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005401F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005402
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005403PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005404M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005405L: netdev@vger.kernel.org
5406S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005407F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005408
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005409PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005410M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005411L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005413F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005414
Steffen Klassert48fc2672010-08-13 10:10:46 -04005415PADATA PARALLEL EXECUTION MECHANISM
5416M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005417L: linux-crypto@vger.kernel.org
5418S: Maintained
5419F: kernel/padata.c
5420F: include/linux/padata.h
5421F: Documentation/padata.txt
5422
Harald Welte709ee532008-09-23 17:46:57 +02005423PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005424M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005425L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005428
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005429PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005430M: David Howells <dhowells@redhat.com>
5431M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005432L: linux-am33-list@redhat.com (moderated for non-subscribers)
5433W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005435F: Documentation/mn10300/
5436F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005437
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005439L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005440S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005441F: drivers/parport/
5442F: include/linux/parport*.h
5443F: drivers/char/ppdev.c
5444F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005446PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005447M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005448M: Chris Wright <chrisw@sous-sol.org>
5449M: Alok Kataria <akataria@vmware.com>
5450M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005451L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005452S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005453F: Documentation/ia64/paravirt_ops.txt
5454F: arch/*/kernel/paravirt*
5455F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005456
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005458M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005459L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460W: http://www.torque.net/linux-pp.html
5461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005462F: Documentation/blockdev/paride.txt
5463F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
5465PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005466M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005467M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005468L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005470Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005471T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005473F: arch/parisc/
5474F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Jim Cromie1662d322006-10-06 00:43:59 -07005476PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005477M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005478L: lm-sensors@lm-sensors.org
5479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005480F: Documentation/hwmon/pc87360
5481F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005482
5483PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005484M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005486F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005487
Jean Delvare1ad107f2010-08-14 21:09:00 +02005488PC87427 HARDWARE MONITORING DRIVER
5489M: Jean Delvare <khali@linux-fr.org>
5490L: lm-sensors@lm-sensors.org
5491S: Maintained
5492F: Documentation/hwmon/pc87427
5493F: drivers/hwmon/pc87427.c
5494
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005495PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005496M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005497S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005498F: drivers/leds/leds-pca9532.c
5499F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005500
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005501PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005502M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005503L: linux-i2c@vger.kernel.org
5504S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005505F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005506
Wolfram Sanga1867d32009-09-18 22:45:51 +02005507PCA9564/PCA9665 I2C BUS DRIVER
5508M: Wolfram Sang <w.sang@pengutronix.de>
5509L: linux-i2c@vger.kernel.org
5510S: Maintained
5511F: drivers/i2c/algos/i2c-algo-pca.c
5512F: drivers/i2c/busses/i2c-pca-*
5513F: include/linux/i2c-algo-pca.h
5514F: include/linux/i2c-pca-platform.h
5515
Khalid Aziz3971dae2012-04-12 12:49:13 -07005516PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005517M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005518S: Maintained
5519F: drivers/firmware/pcdp.*
5520
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005521PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005522M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005523L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005525F: Documentation/PCI/pci-error-recovery.txt
5526F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005527
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005529M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005530L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005531Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005532T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005534F: Documentation/PCI/
5535F: drivers/pci/
5536F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005539P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005540L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005541W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005542T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005544F: Documentation/pcmcia/
5545F: drivers/pcmcia/
5546F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
5548PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005549M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005550L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005552F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
Steffen Klassert48fc2672010-08-13 10:10:46 -04005554PCRYPT PARALLEL CRYPTO ENGINE
5555M: Steffen Klassert <steffen.klassert@secunet.com>
5556L: linux-crypto@vger.kernel.org
5557S: Maintained
5558F: crypto/pcrypt.c
5559F: include/crypto/pcrypt.h
5560
Tejun Heoe72df0b2010-12-10 17:02:49 +01005561PER-CPU MEMORY ALLOCATOR
5562M: Tejun Heo <tj@kernel.org>
5563M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005564T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5565S: Maintained
5566F: include/linux/percpu*.h
5567F: mm/percpu*.c
5568F: arch/*/include/asm/percpu.h
5569
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005570PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005571M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005573F: include/linux/delayacct.h
5574F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005575
Ingo Molnar57c0c152009-09-21 12:20:38 +02005576PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005577M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5578M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005579M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005580M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005581T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005582S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005583F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005584F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005585F: arch/*/kernel/perf_event*.c
5586F: arch/*/kernel/*/perf_event*.c
5587F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005588F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005589F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005590F: arch/*/kernel/perf_callchain.c
5591F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005592
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005593PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005594M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005595L: linux-abi-devel@lists.sourceforge.net
5596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005597F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005598
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005599PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005600M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005601S: Supported
5602F: Documentation/networking/phonet.txt
5603F: include/linux/phonet.h
5604F: include/net/phonet/
5605F: net/phonet/
5606
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005608M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609L: linux-mtd@lists.infradead.org
5610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005611F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Bruno Prémontefdbb102012-07-30 21:39:03 +02005613PICOLCD HID DRIVER
5614M: Bruno Prémont <bonbons@linux-vserver.org>
5615L: linux-input@vger.kernel.org
5616S: Maintained
5617F: drivers/hid/hid-picolcd*
5618
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005619PICOXCELL SUPPORT
5620M: Jamie Iles <jamie@jamieiles.com>
5621L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5622T: git git://github.com/jamieiles/linux-2.6-ji.git
5623S: Supported
5624F: arch/arm/mach-picoxcell
5625F: drivers/*/picoxcell*
5626F: drivers/*/*/picoxcell*
5627
Linus Walleij2744e8a2011-05-02 20:50:54 +02005628PIN CONTROL SUBSYSTEM
5629M: Linus Walleij <linus.walleij@linaro.org>
5630S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005631F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005632F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005633
Viresh Kumardeda8282012-03-28 22:27:07 +05305634PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005635M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305636L: spear-devel@list.st.com
5637L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5638W: http://www.st.com/spear
5639S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005640F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305641
Peter Osterlund249a6772005-09-27 21:45:30 -07005642PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005645F: drivers/block/pktcdvd.c
5646F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005647
GuanXuetaob31d8272011-01-16 00:35:49 +08005648PKUNITY SOC DRIVERS
5649M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5650W: http://mprc.pku.edu.cn/~guanxuetao/linux
5651S: Maintained
5652T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5653F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005654F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005655F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005656F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005657
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005658PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005659M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005660L: lm-sensors@lm-sensors.org
5661W: http://www.lm-sensors.org/
5662W: http://www.roeck-us.net/linux/drivers/
5663T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5664S: Maintained
5665F: Documentation/hwmon/pmbus
5666F: drivers/hwmon/pmbus/
5667F: include/linux/i2c/pmbus.h
5668
Anil Ravindranath89a36812009-08-25 17:35:18 -07005669PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005670M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005671L: linux-scsi@vger.kernel.org
5672W: http://www.pmc-sierra.com/
5673S: Supported
5674F: drivers/scsi/pmcraid.*
5675
jack wangdbf9bfe2009-10-14 16:19:21 +08005676PMC SIERRA PM8001 DRIVER
5677M: jack_wang@usish.com
5678M: lindar_liu@usish.com
5679L: linux-scsi@vger.kernel.org
5680S: Supported
5681F: drivers/scsi/pm8001/
5682
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005685T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005687F: fs/timerfd.c
5688F: include/linux/timer*
5689F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
Anton Vorontsov3be86142007-07-15 04:43:36 +04005691POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: Anton Vorontsov <cbou@mail.ru>
5693M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005694T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005696F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005697F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005698
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005700M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005701M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005703F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704
Vitaly Wool999445d2007-01-04 13:07:03 +01005705PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005706M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005707L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005709F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005710
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005712M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713L: linux-ppp@vger.kernel.org
5714S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005715F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716
5717PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005718M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005720F: net/atm/pppoatm.c
5721F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722
5723PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005724M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005726F: drivers/net/ppp/pppoe.c
5727F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728
James Chapmana6d23702007-06-27 15:53:17 -07005729PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005730M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005731S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005732F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005733F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005734
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005735PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005736M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005737W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5738L: linuxpps@ml.enneenne.com (subscribers-only)
5739S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005740F: Documentation/pps/
5741F: drivers/pps/
5742F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005743
Harry Wei71a6d0a2011-05-11 15:13:33 -07005744PPTP DRIVER
5745M: Dmitry Kozlov <xeb@mail.ru>
5746L: netdev@vger.kernel.org
5747S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005748F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005749W: http://sourceforge.net/projects/accel-pptp
5750
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005752M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753L: kpreempt-tech@lists.sourceforge.net
5754W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005756F: Documentation/preempt-locking.txt
5757F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758
5759PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005761L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005762W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005763S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005764F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005766PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005767M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005768L: linux-ide@vger.kernel.org
5769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005770F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005771
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005772PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005773M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005774L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005775L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005776S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005777F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005778
Geoff Levandf58a9d12006-11-23 00:46:51 +01005779PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005780M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005781L: linuxppc-dev@lists.ozlabs.org
5782L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005784F: arch/powerpc/boot/ps3*
5785F: arch/powerpc/include/asm/lv1call.h
5786F: arch/powerpc/include/asm/ps3*.h
5787F: arch/powerpc/platforms/ps3/
5788F: drivers/*/ps3*
5789F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005790F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005791F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005792F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005793
Jim Pariscffb4add2009-01-06 11:32:10 +00005794PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005795M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005796L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005797S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005798F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005799
Anton Vorontsov8defe592012-08-03 18:07:20 -07005800PSTORE FILESYSTEM
5801M: Anton Vorontsov <cbouatmailru@gmail.com>
5802M: Colin Cross <ccross@android.com>
5803M: Kees Cook <keescook@chromium.org>
5804M: Tony Luck <tony.luck@intel.com>
5805S: Maintained
5806T: git git://git.infradead.org/users/cbou/linux-pstore.git
5807F: fs/pstore/
5808F: include/linux/pstore*
5809F: drivers/firmware/efivars.c
5810F: drivers/acpi/apei/erst.c
5811
Richard Cochran7fbc4152012-03-10 01:55:53 +00005812PTP HARDWARE CLOCK SUPPORT
5813M: Richard Cochran <richardcochran@gmail.com>
5814S: Maintained
5815W: http://linuxptp.sourceforge.net/
5816F: Documentation/ABI/testing/sysfs-ptp
5817F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005818F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005819F: drivers/net/phy/dp83640*
5820F: drivers/ptp/*
5821F: include/linux/ptp_cl*
5822
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005823PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005824M: Roland McGrath <roland@redhat.com>
5825M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005826S: Maintained
5827F: include/asm-generic/syscall.h
5828F: include/linux/ptrace.h
5829F: include/linux/regset.h
5830F: include/linux/tracehook.h
5831F: kernel/ptrace.c
5832
Michael Krufky83202042006-07-03 00:24:18 -07005833PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005834M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005835L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005836L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005837W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005838T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005841F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005842
Thierry Reding200efed2012-03-27 13:16:18 +02005843PWM SUBSYSTEM
5844M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005845L: linux-kernel@vger.kernel.org
5846S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005847W: http://gitorious.org/linux-pwm
5848T: git git://gitorious.org/linux-pwm/linux-pwm.git
5849F: Documentation/pwm.txt
5850F: Documentation/devicetree/bindings/pwm/
5851F: include/linux/pwm.h
5852F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005853F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005854F: drivers/video/backlight/pwm_bl.c
5855F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005856
Eric Miao30ec2612008-06-12 15:21:41 -07005857PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005858M: Eric Miao <eric.y.miao@gmail.com>
5859M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005860M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005861L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005862T: git git://github.com/hzhuang1/linux.git
5863T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005865F: arch/arm/mach-pxa/
5866F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005867F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005868F: drivers/usb/gadget/pxa2*
5869F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005870F: sound/arm/pxa*
5871F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005873MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005874M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005875M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005877T: git git://github.com/hzhuang1/linux.git
5878T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005879S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005880F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005881
Pierre Ossman272f1332007-05-14 21:25:26 +02005882PXA MMCI DRIVER
5883S: Orphan
5884
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005885PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005886M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005887L: rtc-linux@googlegroups.com
5888S: Maintained
5889
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005890QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005891M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005892L: linux-rdma@vger.kernel.org
5893S: Supported
5894F: drivers/infiniband/hw/qib/
5895
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005896QLOGIC QLA1280 SCSI DRIVER
5897M: Michael Reed <mdr@sgi.com>
5898L: linux-scsi@vger.kernel.org
5899S: Maintained
5900F: drivers/scsi/qla1280.[ch]
5901
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005903M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005904M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905L: linux-scsi@vger.kernel.org
5906S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005907F: Documentation/scsi/LICENSE.qla2xxx
5908F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
Ravi Anand883c98f2010-04-28 11:45:49 +05305910QLOGIC QLA4XXX iSCSI DRIVER
5911M: Ravi Anand <ravi.anand@qlogic.com>
5912M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5913M: iscsi-driver@qlogic.com
5914L: linux-scsi@vger.kernel.org
5915S: Supported
5916F: drivers/scsi/qla4xxx/
5917
Ron Mercer5a4faa872006-07-25 00:40:21 -07005918QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005919M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005920M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005921M: linux-driver@qlogic.com
5922L: netdev@vger.kernel.org
5923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005924F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005925F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005926
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005927QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005928M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005929M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005930M: linux-driver@qlogic.com
5931L: netdev@vger.kernel.org
5932S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005933F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005934
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005935QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005936M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005938M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005939L: netdev@vger.kernel.org
5940S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005941F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005942
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005944M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945W: http://www.alarsen.net/linux/qnx4fs/
5946S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005947F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005948F: include/linux/qnx4_fs.h
5949F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950
Antti Palosaari91952bc2012-10-01 12:28:46 -03005951QT1010 MEDIA DRIVER
5952M: Antti Palosaari <crope@iki.fi>
5953L: linux-media@vger.kernel.org
5954W: http://linuxtv.org/
5955W: http://palosaari.fi/linux/
5956Q: http://patchwork.linuxtv.org/project/linux-media/list/
5957T: git git://linuxtv.org/anttip/media_tree.git
5958S: Maintained
5959F: drivers/media/tuners/qt1010*
5960
Richard Kuo4f4567c2011-10-31 18:56:38 -05005961QUALCOMM HEXAGON ARCHITECTURE
5962M: Richard Kuo <rkuo@codeaurora.org>
5963L: linux-hexagon@vger.kernel.org
5964S: Supported
5965F: arch/hexagon/
5966
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005967RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005968M: Yehuda Sadeh <yehuda@inktank.com>
5969M: Sage Weil <sage@inktank.com>
5970M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005971M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005972W: http://ceph.com/
5973T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005974S: Supported
5975F: drivers/block/rbd.c
5976F: drivers/block/rbd_types.h
5977
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005979M: Benjamin Herrenschmidt <benh@kernel.crashing.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/radeon*
5983F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984
5985RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005986M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005987L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005989F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990
Randy Dunlape7839f22008-10-12 16:11:45 -07005991RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005992P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005993M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005994M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005995M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005996L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005997L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005998W: http://rt2x00.serialmonkey.com/
5999S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006000T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006001F: drivers/net/wireless/rt2x00/
6002
Nick Piggin9db55792008-02-08 04:19:49 -08006003RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006004M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006006F: Documentation/blockdev/ramdisk.txt
6007F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006008
Matt Mackall9e95ce22005-04-16 15:25:56 -07006009RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006010M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006013
Matt Porter394b7012005-11-07 01:00:15 -08006014RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006015M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006016M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006018F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006019
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006020RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006021L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006022S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006023F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006024
6025RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006026M: Josh Triplett <josh@freedesktop.org>
6027M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006028S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006029T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006030F: Documentation/RCU/torture.txt
6031F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006032
Florian Fainellic1f766b2008-02-06 22:39:44 +01006033RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006034M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006035S: Maintained
6036
Florian Fainellidb17f392007-12-19 11:30:30 +01006037RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006038M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006039L: netdev@vger.kernel.org
6040S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006041F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006042
Andy Grovera09ed662009-02-24 15:30:41 +00006043RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006044M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006045L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006047F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006048
Josh Triplett595182b2006-10-04 02:17:21 -07006049READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006050M: Dipankar Sarma <dipankar@in.ibm.com>
6051M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006052W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006053S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006054T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006055F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006056X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006057F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006058F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006059X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006060
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006061REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006062M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006063L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006064Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006066F: Documentation/rtc.txt
6067F: drivers/rtc/
6068F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006069
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006071L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006073F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074
Mark Brownb83a3132011-05-11 19:59:58 +02006075REGISTER MAP ABSTRACTION
6076M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6077T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6078S: Supported
6079F: drivers/base/regmap/
6080F: include/linux/regmap.h
6081
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006082REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6083M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006084T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006085S: Maintained
6086F: drivers/remoteproc/
6087F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006088F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006089
Ivo van Doorne08976452008-04-12 19:23:55 +02006090RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006091M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006092L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006093W: http://wireless.kernel.org/
6094T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6095T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006096S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006097F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006098F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006099
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006100RICOH SMARTMEDIA/XD DRIVER
6101M: Maxim Levitsky <maximlevitsky@gmail.com>
6102S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006103F: drivers/mtd/nand/r852.c
6104F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006105
Maxim Levitsky92634122011-03-25 01:56:59 -07006106RICOH R5C592 MEMORYSTICK DRIVER
6107M: Maxim Levitsky <maximlevitsky@gmail.com>
6108S: Maintained
6109F: drivers/memstick/host/r592.*
6110
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111ROCKETPORT DRIVER
6112P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113W: http://www.comtrol.com
6114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006115F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006116F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117
6118ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006119M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006121W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006123F: include/linux/rose.h
6124F: include/net/rose.h
6125F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126
Antti Palosaari91952bc2012-10-01 12:28:46 -03006127RTL2830 MEDIA DRIVER
6128M: Antti Palosaari <crope@iki.fi>
6129L: linux-media@vger.kernel.org
6130W: http://linuxtv.org/
6131W: http://palosaari.fi/linux/
6132Q: http://patchwork.linuxtv.org/project/linux-media/list/
6133T: git git://linuxtv.org/anttip/media_tree.git
6134S: Maintained
6135F: drivers/media/dvb-frontends/rtl2830*
6136
Larry Finger59840482008-11-12 17:13:09 -06006137RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006138M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006139L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006140W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006141T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006142S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006143F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006144
Larry Finger59840482008-11-12 17:13:09 -06006145RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006146M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006147M: Hin-Tak Leung <htl10@users.sourceforge.net>
6148M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006149L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006150W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006151T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006152S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006153F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006154
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006155RTL8192CE WIRELESS DRIVER
6156M: Larry Finger <Larry.Finger@lwfinger.net>
6157M: Chaoming Li <chaoming_li@realsil.com.cn>
6158L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006159W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006160T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6161S: Maintained
6162F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006163F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006164
6165S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006166M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006167L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006169F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006170
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171S390
Joe Perches8b58be82009-07-29 15:04:30 -07006172M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6173M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006175L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006176W: http://www.ibm.com/developerworks/linux/linux390/
6177S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006178F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006179F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006180F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006181F: Documentation/s390/
6182F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006183
6184S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006185M: Ursula Braun <ursula.braun@de.ibm.com>
6186M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006187M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006188L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006189W: http://www.ibm.com/developerworks/linux/linux390/
6190S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006191F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006192
Felix Beckfeed9b62009-03-26 15:24:23 +01006193S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006194M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006195M: linux390@de.ibm.com
6196L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006197W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006198S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006199F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006200
Heiko Carstens5238da42006-02-11 17:56:01 -08006201S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006202M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006203M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006204L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006205W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006207F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208
Ursula Braundd96df22007-09-19 13:09:02 +02006209S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006210M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006211M: linux390@de.ibm.com
6212L: linux-s390@vger.kernel.org
6213W: http://www.ibm.com/developerworks/linux/linux390/
6214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006215F: drivers/s390/net/*iucv*
6216F: include/net/iucv/
6217F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006218
Ben Dooks4dde7f72008-06-30 22:40:38 +01006219S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006220M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006222S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006223F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006224
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006226M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006227L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006228T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229W: http://www.mihu.de/linux/saa7146
6230S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006231F: drivers/media/common/saa7146/
6232F: drivers/media/pci/saa7146/
6233F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234
Corentin Chary92304a42011-12-05 12:38:35 -05006235SAMSUNG LAPTOP DRIVER
6236M: Corentin Chary <corentincj@iksaif.net>
6237L: platform-driver-x86@vger.kernel.org
6238S: Maintained
6239F: drivers/platform/x86/samsung-laptop.c
6240
Mark Brown4a109cc2010-09-24 10:50:46 +01006241SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006242M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006243L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6244S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006245F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006246
Jingoo Han0d89a282011-12-19 11:09:35 +09006247SAMSUNG FRAMEBUFFER DRIVER
6248M: Jingoo Han <jg1.han@samsung.com>
6249L: linux-fbdev@vger.kernel.org
6250S: Maintained
6251F: drivers/video/s3c-fb.c
6252
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006253SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6254M: Sangbeom Kim <sbkim73@samsung.com>
6255L: linux-kernel@vger.kernel.org
6256S: Supported
6257F: drivers/mfd/sec*.c
6258F: drivers/regulator/s2m*.c
6259F: drivers/regulator/s5m*.c
6260F: drivers/rtc/rtc-sec.c
6261F: include/linux/mfd/samsung/
6262
Alan Coxca749e22011-03-18 13:56:14 +00006263SERIAL DRIVERS
6264M: Alan Cox <alan@linux.intel.com>
6265L: linux-serial@vger.kernel.org
6266S: Maintained
6267F: drivers/tty/serial
6268
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306269SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006270M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306271S: Maintained
6272F: include/linux/dw_dmac.h
6273F: drivers/dma/dw_dmac_regs.h
6274F: drivers/dma/dw_dmac.c
6275
Thomas Gleixner88606e82010-12-14 21:37:13 +01006276TIMEKEEPING, NTP
6277M: John Stultz <johnstul@us.ibm.com>
6278M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006279T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006280S: Supported
6281F: include/linux/clocksource.h
6282F: include/linux/time.h
6283F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006284F: kernel/time/clocksource.c
6285F: kernel/time/time*.c
6286F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006287F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006288
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006289TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006290M: Huang Shijie <shijie8@gmail.com>
6291M: Kang Yong <kangyong@telegent.com>
6292M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006293S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006294F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006295
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006297M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006299F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
6301SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006302M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006303M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006304T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006306F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006307F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308
Chen Liqin6bcf6732009-06-13 15:24:33 +08006309SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006310M: Chen Liqin <liqin.chen@sunplusct.com>
6311M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006312W: http://www.sunplusct.com
6313S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006314F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006315
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006317M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318L: linux-scsi@vger.kernel.org
6319W: http://www.kernel.dk
6320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006321F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
Roland Dreierfb50a832010-10-07 09:54:53 -07006323SCSI RDMA PROTOCOL (SRP) INITIATOR
6324M: David Dillow <dillowda@ornl.gov>
6325L: linux-rdma@vger.kernel.org
6326S: Supported
6327W: http://www.openfabrics.org
6328Q: http://patchwork.kernel.org/project/linux-rdma/list/
6329T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6330F: drivers/infiniband/ulp/srp/
6331F: include/scsi/srp.h
6332
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006334M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335L: linux-scsi@vger.kernel.org
6336W: http://www.torque.net/sg
6337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006338F: drivers/scsi/sg.c
6339F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340
6341SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006342M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006344T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6345T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6346T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006348F: drivers/scsi/
6349F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
6351SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006352M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353L: linux-scsi@vger.kernel.org
6354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006355F: Documentation/scsi/st.txt
6356F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357
6358SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006359M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006361L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006362W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006364F: Documentation/networking/sctp.txt
6365F: include/linux/sctp.h
6366F: include/net/sctp/
6367F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368
6369SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006370M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006371S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006372F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006373F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006374F: drivers/watchdog/scx200_wdt.c
6375F: drivers/i2c/busses/scx200*
6376F: drivers/mtd/maps/scx200_docflash.c
6377F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006378
6379SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006380M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006382F: drivers/char/scx200_gpio.c
6383F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006384
6385SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006386M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006388F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389
Sascha Sommer6a369132008-07-15 14:21:29 +02006390SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006391M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006392L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006394F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006395
Randy Dunlape7839f22008-10-12 16:11:45 -07006396SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006397M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006398L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006399T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6400S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006401F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006402F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006403
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006404SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006405M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006406L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006407L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006409F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410
Ben Dooks0d1bb412009-06-14 13:52:37 +01006411SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006412M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006413L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006414S: Maintained
6415F: drivers/mmc/host/sdhci-s3c.c
6416
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006417SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006418M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006419L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006420L: linux-mmc@vger.kernel.org
6421S: Maintained
6422F: drivers/mmc/host/sdhci-spear.c
6423
James Morris8711cca2008-12-04 03:19:45 +11006424SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006425M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006426L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006427T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006428W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006429S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006430F: security/
James Morris8711cca2008-12-04 03:19:45 +11006431
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006433M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434S: Supported
6435
6436SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006437M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006438M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006439M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006440L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006441W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006442T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006444F: include/linux/selinux*
6445F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006446F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447
John Johansenc1c124e2010-07-29 14:48:09 -07006448APPARMOR SECURITY MODULE
6449M: John Johansen <john.johansen@canonical.com>
6450L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6451W: apparmor.wiki.kernel.org
6452T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6453S: Supported
6454F: security/apparmor/
6455
Jiri Slabycef2cf02007-05-08 00:31:45 -07006456SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006457M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006459F: drivers/misc/phantom.c
6460F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006461
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006462SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006463M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006465T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006467F: drivers/ata/
6468F: include/linux/ata.h
6469F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306471SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006472M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006473L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006474W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006475S: Supported
6476F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306477
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006478SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006479M: Sathya Perla <sathya.perla@emulex.com>
6480M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6481M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006482L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006483W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006484S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006485F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006486
Ben Hutchings8ceee662008-04-27 12:55:59 +01006487SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006488M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006489M: Ben Hutchings <bhutchings@solarflare.com>
6490L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006491S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006492F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006493
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006494SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006495M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006497F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006498
6499SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006501L: linux-ia64@vger.kernel.org
6502S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006503F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006504F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006505F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006506
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006508M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509L: linux-visws-devel@lists.sf.net
6510W: http://linux-visws.sf.net
6511S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006512F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513
Jack Steiner75312612008-08-15 00:40:42 -07006514SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006515M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006517F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006518
Len Brown6349d992009-08-14 15:07:14 -04006519SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006520M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006521L: sfi-devel@simplefirmware.org
6522W: http://simplefirmware.org/
6523T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006524S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006525F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006526F: drivers/sfi/
6527F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006528
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529SIMTEC EB110ATX (Chalice CATS)
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/EB110ATX/
6534S: Supported
6535
6536SIMTEC EB2410ITX (BAST)
6537P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006538P: Vincent Sanders <vince@simtec.co.uk>
6539M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540W: http://www.simtec.co.uk/products/EB2410ITX/
6541S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006542F: arch/arm/mach-s3c2410/mach-bast.c
6543F: arch/arm/mach-s3c2410/bast-ide.c
6544F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006546TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006547M: Sekhar Nori <nsekhar@ti.com>
6548M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306549L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306550T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006551Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006552S: Supported
6553F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006554F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006555
Francois Romieu92aab3c2005-07-30 13:11:18 +02006556SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006557M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006558L: netdev@vger.kernel.org
6559S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006560F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006561
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006563M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006565L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006567F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006569SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006570M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006571L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006573F: Documentation/i2c/busses/i2c-sis96x
6574F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006575
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006580F: Documentation/fb/sisfb.txt
6581F: drivers/video/sis/
6582F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583
6584SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586W: http://www.winischhofer.at/linuxsisusbvga.shtml
6587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006588F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006590SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006592M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006593M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006594L: linux-mm@kvack.org
6595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006596F: include/linux/sl?b*.h
6597F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006598
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006599SLEEPABLE READ-COPY UPDATE (SRCU)
6600M: Lai Jiangshan <laijs@cn.fujitsu.com>
6601M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6602W: http://www.rdrop.com/users/paulmck/RCU/
6603S: Supported
6604T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6605F: include/linux/srcu*
6606F: kernel/srcu*
6607
Casey Schaufler66372842012-05-23 18:34:52 -07006608SMACK SECURITY MODULE
6609M: Casey Schaufler <casey@schaufler-ca.com>
6610L: linux-security-module@vger.kernel.org
6611W: http://schaufler-ca.com
6612T: git git://git.gitorious.org/smack-next/kernel.git
6613S: Maintained
6614F: Documentation/security/Smack.txt
6615F: security/smack/
6616
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006618M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006619S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006620F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006622SMM665 HARDWARE MONITOR DRIVER
6623M: Guenter Roeck <linux@roeck-us.net>
6624L: lm-sensors@lm-sensors.org
6625S: Maintained
6626F: Documentation/hwmon/smm665
6627F: drivers/hwmon/smm665.c
6628
Steve Glendinning9df73052010-08-14 21:08:54 +02006629SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006630M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006631L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006632S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006633F: Documentation/hwmon/emc2103
6634F: drivers/hwmon/emc2103.c
6635
Hans de Goedea98d5062011-03-21 17:59:36 +01006636SMSC SCH5627 HARDWARE MONITOR DRIVER
6637M: Hans de Goede <hdegoede@redhat.com>
6638L: lm-sensors@lm-sensors.org
6639S: Supported
6640F: Documentation/hwmon/sch5627
6641F: drivers/hwmon/sch5627.c
6642
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006643SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006644M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006645L: lm-sensors@lm-sensors.org
6646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006647F: Documentation/hwmon/smsc47b397
6648F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006649
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006650SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006651M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006652L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006654F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006655F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006656
Steve Glendinning2cb37722008-12-11 20:54:30 -08006657SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006658M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006659L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006660S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006661F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006662
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006663SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006664M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006665L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006666S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006667F: drivers/video/smscufx.c
6668
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006669SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006670M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006671L: linux-altix@sgi.com
6672L: linux-ia64@vger.kernel.org
6673W: http://www.sgi.com/altix
6674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006675F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006676
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006677SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006679L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006680T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006681S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006682F: include/media/soc*
6683F: drivers/media/i2c/soc_camera/
6684F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006685
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006686SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006687M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006689F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006690
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006692M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006694S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006695F: drivers/md/
6696F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006699M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006700L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006702F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703
Michael Buesch61e115a2007-09-18 15:12:50 -04006704SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006705M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006706L: netdev@vger.kernel.org
6707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006708F: drivers/ssb/
6709F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006710
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006712M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006713L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006714W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006716F: Documentation/laptops/sony-laptop.txt
6717F: drivers/char/sonypi.c
6718F: drivers/platform/x86/sony-laptop.c
6719F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720
Alex Dubovbaf85322008-02-09 10:20:54 -08006721SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006722M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006723W: http://tifmxx.berlios.de/
6724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006725F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006726
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006728M: Jaroslav Kysela <perex@perex.cz>
6729M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006730L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006731W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006732T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006733T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006735F: Documentation/sound/
6736F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006737F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738
Mark Brownbd903bd2008-11-19 19:16:05 +00006739SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006740M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006741M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006742T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006743L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006744W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006746F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006747F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006748
Sam Ravnborg473321f2009-01-04 15:47:49 -08006749SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006750M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006752Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006753T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6754T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006756F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006757F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758
David S. Miller6404fcc2010-03-16 01:00:17 -07006759SPARC SERIAL DRIVERS
6760M: "David S. Miller" <davem@davemloft.net>
6761L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006762T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6763T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006764S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006765F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006766F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006767F: drivers/tty/serial/sunhv.c
6768F: drivers/tty/serial/sunsab.c
6769F: drivers/tty/serial/sunsab.h
6770F: drivers/tty/serial/sunsu.c
6771F: drivers/tty/serial/sunzilog.c
6772F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006773
Christopher Li389325b2012-04-05 14:25:14 -07006774SPARSE CHECKER
6775M: "Christopher Li" <sparse@chrisli.org>
6776L: linux-sparse@vger.kernel.org
6777W: https://sparse.wiki.kernel.org/
6778T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6779T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6780S: Maintained
6781F: include/linux/compiler.h
6782
viresh kumarfc0c1952010-04-01 12:31:21 +01006783SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006784M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306785M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006786L: spear-devel@list.st.com
6787L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006788W: http://www.st.com/spear
6789S: Maintained
6790F: arch/arm/plat-spear/
6791
Viresh Kumar71e09a92012-04-20 22:39:48 +05306792SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006793M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306794M: Shiraz Hashim <shiraz.hashim@st.com>
6795L: spear-devel@list.st.com
6796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6797W: http://www.st.com/spear
6798S: Maintained
6799F: arch/arm/mach-spear13xx/
6800
viresh kumarfc0c1952010-04-01 12:31:21 +01006801SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006802M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306803M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006804L: spear-devel@list.st.com
6805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006806W: http://www.st.com/spear
6807S: Maintained
6808F: arch/arm/mach-spear3xx/
6809
6810SPEAR6XX MACHINE SUPPORT
6811M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306812M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006813M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006814L: spear-devel@list.st.com
6815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006816W: http://www.st.com/spear
6817S: Maintained
6818F: arch/arm/mach-spear6xx/
6819
6820SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006821M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006822L: spear-devel@list.st.com
6823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006824W: http://www.st.com/spear
6825S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306826F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006827
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006828SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006829M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006830L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006831Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006832T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006834F: Documentation/spi/
6835F: drivers/spi/
6836F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006837
Jim Lewis2752e402006-09-29 02:01:19 -07006838SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006839M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6840M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006841L: netdev@vger.kernel.org
6842S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006843F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006844F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006845
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006846SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006847M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006848L: linuxppc-dev@lists.ozlabs.org
6849L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006850W: http://www.ibm.com/developerworks/power/cell/
6851S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006852F: Documentation/filesystems/spufs.txt
6853F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006854
Phillip Lougherfc555842009-01-05 08:46:29 +00006855SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006856M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006857L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6858W: http://squashfs.org.uk
6859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006860F: Documentation/filesystems/squashfs.txt
6861F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006862
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006864M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006866F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867
Linus Torvalds26e9a392008-10-17 09:50:12 -07006868STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006869M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006870L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006871S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006872
Linus Torvalds26e9a392008-10-17 09:50:12 -07006873STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006874M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006875T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006876L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006877S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006878F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006879
Joe Perchesc8c8b102011-07-05 09:42:12 -07006880STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6881M: Henk de Groot <pe1dnn@amsat.org>
6882S: Odd Fixes
6883F: drivers/staging/wlags49_h2/
6884F: drivers/staging/wlags49_h25/
6885
Joe Perchesc9555152011-07-05 09:42:01 -07006886STAGING - ASUS OLED
6887M: Jakub Schmidtke <sjakub@gmail.com>
6888S: Odd Fixes
6889F: drivers/staging/asus_oled/
6890
Joe Perchesebd3d012011-07-05 09:42:02 -07006891STAGING - COMEDI
6892M: Ian Abbott <abbotti@mev.co.uk>
6893M: Mori Hess <fmhess@users.sourceforge.net>
6894S: Odd Fixes
6895F: drivers/staging/comedi/
6896
Joe Perches8ca572c2011-07-05 09:42:03 -07006897STAGING - CRYSTAL HD VIDEO DECODER
6898M: Naren Sankar <nsankar@broadcom.com>
6899M: Jarod Wilson <jarod@wilsonet.com>
6900M: Scott Davilla <davilla@4pi.com>
6901M: Manu Abraham <abraham.manu@gmail.com>
6902S: Odd Fixes
6903F: drivers/staging/crystalhd/
6904
Joe Perches0f16ffc2011-07-05 09:42:04 -07006905STAGING - ECHO CANCELLER
6906M: Steve Underwood <steveu@coppice.org>
6907M: David Rowe <david@rowetel.com>
6908S: Odd Fixes
6909F: drivers/staging/echo/
6910
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006911STAGING - ET131X NETWORK DRIVER
6912M: Mark Einon <mark.einon@gmail.com>
6913S: Odd Fixes
6914F: drivers/staging/et131x/
6915
Joe Perchesa0138162011-07-05 15:21:34 -07006916STAGING - FLARION FT1000 DRIVERS
6917M: Marek Belisko <marek.belisko@gmail.com>
6918S: Odd Fixes
6919F: drivers/staging/ft1000/
6920
Joe Perchesec3fab92011-07-05 09:42:05 -07006921STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6922M: David Täht <d@teklibre.com>
6923S: Odd Fixes
6924F: drivers/staging/frontier/
6925
Joe Perches6c1bb422011-07-05 09:42:07 -07006926STAGING - INDUSTRIAL IO
6927M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006928L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006929S: Odd Fixes
6930F: drivers/staging/iio/
6931
Joe Perchesa0138162011-07-05 15:21:34 -07006932STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6933M: Jarod Wilson <jarod@wilsonet.com>
6934W: http://www.lirc.org/
6935S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006936F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006937
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006938STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006939M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006940M: Marc Dietrich <marvin24@gmx.de>
6941L: ac100@lists.launchpad.net (moderated for non-subscribers)
6942S: Maintained
6943F: drivers/staging/nvec/
6944
Joe Perchesa0138162011-07-05 15:21:34 -07006945STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6946M: Andres Salomon <dilinger@queued.net>
6947M: Chris Ball <cjb@laptop.org>
6948M: Jon Nettleton <jon.nettleton@gmail.com>
6949W: http://wiki.laptop.org/go/DCON
6950S: Odd Fixes
6951F: drivers/staging/olpc_dcon/
6952
Chris Kelly94cfdd12012-03-14 10:55:42 +00006953STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006954M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006955M: Chris Kelly <ckelly@ozmodevices.com>
6956S: Maintained
6957F: drivers/staging/ozwpan/
6958
Joe Perchesa0138162011-07-05 15:21:34 -07006959STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006960M: Willy Tarreau <willy@meta-x.org>
6961S: Odd Fixes
6962F: drivers/staging/panel/
6963
Joe Perchesa0138162011-07-05 15:21:34 -07006964STAGING - REALTEK RTL8712U DRIVERS
6965M: Larry Finger <Larry.Finger@lwfinger.net>
6966M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6967S: Odd Fixes
6968F: drivers/staging/rtl8712/
6969
Joe Perches9629fa82011-07-05 09:42:09 -07006970STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6971M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6972S: Odd Fixes
6973F: drivers/staging/sm7xx/
6974
Joe Perchesa0138162011-07-05 15:21:34 -07006975STAGING - SOFTLOGIC 6x10 MPEG CODEC
6976M: Ben Collins <bcollins@bluecherry.net>
6977S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006978F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006979
6980STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6981M: William Hubbs <w.d.hubbs@gmail.com>
6982M: Chris Brannon <chris@the-brannons.com>
6983M: Kirk Reiser <kirk@braille.uwo.ca>
6984M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6985L: speakup@braille.uwo.ca
6986W: http://www.linux-speakup.org/
6987S: Odd Fixes
6988F: drivers/staging/speakup/
6989
6990STAGING - TI DSP BRIDGE DRIVERS
6991M: Omar Ramirez Luna <omar.ramirez@ti.com>
6992S: Odd Fixes
6993F: drivers/staging/tidspbridge/
6994
Joe Perchesa0138162011-07-05 15:21:34 -07006995STAGING - USB ENE SM/MS CARD READER DRIVER
6996M: Al Cho <acho@novell.com>
6997S: Odd Fixes
6998F: drivers/staging/keucr/
6999
Joe Perchesb3e871c2011-07-05 09:42:10 -07007000STAGING - VIA VT665X DRIVERS
7001M: Forest Bond <forest@alittletooquiet.net>
7002S: Odd Fixes
7003F: drivers/staging/vt665?/
7004
Joe Perches81a9a522011-07-05 09:42:11 -07007005STAGING - WINBOND IS89C35 WLAN USB DRIVER
7006M: Pavel Machek <pavel@ucw.cz>
7007S: Odd Fixes
7008F: drivers/staging/winbond/
7009
Joe Perches709bcb02011-07-05 09:42:13 -07007010STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007011M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007012S: Odd Fixes
7013F: drivers/staging/xgifb/
7014
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007016M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007017S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007018F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007019
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007020SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007021M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007022W: http://sammy.net/sun3/
7023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007024F: arch/m68k/kernel/*sun3*
7025F: arch/m68k/sun3*/
7026F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007027F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007028
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007029SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007030M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007031L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007033Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007034T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007035S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007036F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007037F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007038F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007040SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007041M: Len Brown <len.brown@intel.com>
7042M: Pavel Machek <pavel@ucw.cz>
7043M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007044L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007046F: Documentation/power/
7047F: arch/x86/kernel/acpi/
7048F: drivers/base/power/
7049F: kernel/power/
7050F: include/linux/suspend.h
7051F: include/linux/freezer.h
7052F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053
7054SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007055M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056L: linux-video@atrey.karlin.mff.cuni.cz
7057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007058F: Documentation/svga.txt
7059F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007061SWIOTLB SUBSYSTEM
7062M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7063L: linux-kernel@vger.kernel.org
7064S: Supported
7065F: lib/swiotlb.c
7066F: arch/*/kernel/pci-swiotlb.c
7067F: include/linux/swiotlb.h
7068
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007070M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007072F: Documentation/filesystems/sysv-fs.txt
7073F: fs/sysv/
7074F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007076TARGET SUBSYSTEM
7077M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7078L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007079L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007080L: http://groups.google.com/group/linux-iscsi-target-dev
7081W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007082T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007083S: Supported
7084F: drivers/target/
7085F: include/target/
7086F: Documentation/target/
7087
Alan Cox4e688522008-04-30 00:52:11 -07007088TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007089M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007091F: Documentation/accounting/taskstats*
7092F: include/linux/taskstats*
7093F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007094
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007095TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007096M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007097L: netdev@vger.kernel.org
7098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007099F: include/linux/pkt_cls.h
7100F: include/net/pkt_cls.h
7101F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007102
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007103TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007104M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7105M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007106W: http://tcp-lp-mod.sourceforge.net/
7107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007108F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007109
Antti Palosaari91952bc2012-10-01 12:28:46 -03007110TDA10071 MEDIA DRIVER
7111M: Antti Palosaari <crope@iki.fi>
7112L: linux-media@vger.kernel.org
7113W: http://linuxtv.org/
7114W: http://palosaari.fi/linux/
7115Q: http://patchwork.linuxtv.org/project/linux-media/list/
7116T: git git://linuxtv.org/anttip/media_tree.git
7117S: Maintained
7118F: drivers/media/dvb-frontends/tda10071*
7119
7120TDA18212 MEDIA DRIVER
7121M: Antti Palosaari <crope@iki.fi>
7122L: linux-media@vger.kernel.org
7123W: http://linuxtv.org/
7124W: http://palosaari.fi/linux/
7125Q: http://patchwork.linuxtv.org/project/linux-media/list/
7126T: git git://linuxtv.org/anttip/media_tree.git
7127S: Maintained
7128F: drivers/media/tuners/tda18212*
7129
7130TDA18218 MEDIA DRIVER
7131M: Antti Palosaari <crope@iki.fi>
7132L: linux-media@vger.kernel.org
7133W: http://linuxtv.org/
7134W: http://palosaari.fi/linux/
7135Q: http://patchwork.linuxtv.org/project/linux-media/list/
7136T: git git://linuxtv.org/anttip/media_tree.git
7137S: Maintained
7138F: drivers/media/tuners/tda18218*
7139
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007140TDA18271 MEDIA DRIVER
7141M: Michael Krufky <mkrufky@linuxtv.org>
7142L: linux-media@vger.kernel.org
7143W: http://linuxtv.org/
7144W: http://github.com/mkrufky
7145Q: http://patchwork.linuxtv.org/project/linux-media/list/
7146T: git git://linuxtv.org/mkrufky/tuners.git
7147S: Maintained
7148F: drivers/media/tuners/tda18271*
7149
Michael Krufkye48307a2012-10-02 00:56:33 -03007150TDA827x MEDIA DRIVER
7151M: Michael Krufky <mkrufky@linuxtv.org>
7152L: linux-media@vger.kernel.org
7153W: http://linuxtv.org/
7154W: http://github.com/mkrufky
7155Q: http://patchwork.linuxtv.org/project/linux-media/list/
7156T: git git://linuxtv.org/mkrufky/tuners.git
7157S: Maintained
7158F: drivers/media/tuners/tda8290.*
7159
Michael Krufky66cf9212012-10-02 00:56:28 -03007160TDA8290 MEDIA DRIVER
7161M: Michael Krufky <mkrufky@linuxtv.org>
7162L: linux-media@vger.kernel.org
7163W: http://linuxtv.org/
7164W: http://github.com/mkrufky
7165Q: http://patchwork.linuxtv.org/project/linux-media/list/
7166T: git git://linuxtv.org/mkrufky/tuners.git
7167S: Maintained
7168F: drivers/media/tuners/tda8290.*
7169
Jiri Pirko3d249d42011-11-11 22:16:48 +00007170TEAM DRIVER
7171M: Jiri Pirko <jpirko@redhat.com>
7172L: netdev@vger.kernel.org
7173S: Supported
7174F: drivers/net/team/
7175F: include/linux/if_team.h
7176
Erik Gilling84b94142010-06-09 15:35:53 -07007177TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007178M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007179L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007180Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7181T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007182S: Supported
7183F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007184F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007185F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007186
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007187TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007188M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007189L: netdev@vger.kernel.org
7190S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007191F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007192
Alan Cox4e688522008-04-30 00:52:11 -07007193Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007194M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007196F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007197
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007198TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007199M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007200M: Max Filippov <jcmvbkbc@gmail.com>
7201L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007203F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007204
7205THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007206M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007207L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007208L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007209W: http://ibm-acpi.sourceforge.net
7210W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007211T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007213F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007214
Alex Dubov4020f2d2006-10-04 02:15:37 -07007215TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007216M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007218F: drivers/misc/tifm*
7219F: drivers/mmc/host/tifm_sd.c
7220F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007221
M R Swami Reddy152ad442012-04-02 20:02:31 +05307222TI LM49xxx FAMILY ASoC CODEC DRIVERS
7223M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307224M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307225L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7226S: Maintained
7227F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307228F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307229
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007230TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007231M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007232L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7233S: Maintained
7234F: sound/soc/codecs/twl4030*
7235
Luciano Coelho90921012011-11-20 21:40:41 +02007236TI WILINK WIRELESS DRIVERS
7237M: Luciano Coelho <coelho@ti.com>
7238L: linux-wireless@vger.kernel.org
7239W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7240W: http://wireless.kernel.org/en/users/Drivers/wl1251
7241T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7242S: Maintained
7243F: drivers/net/wireless/ti/
7244F: include/linux/wl12xx.h
7245
Per Lidene86eaa32006-01-12 16:45:18 +01007246TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007247M: Jon Maloy <jon.maloy@ericsson.com>
7248M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007249L: netdev@vger.kernel.org (core kernel code)
7250L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007251W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007253F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007254F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007255
Chris Metcalf867e3592010-05-28 23:09:12 -04007256TILE ARCHITECTURE
7257M: Chris Metcalf <cmetcalf@tilera.com>
7258W: http://www.tilera.com/scm/
7259S: Supported
7260F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007261F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007262F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007263F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007264
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007266M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007267L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268W: http://sourceforge.net/projects/tlan/
7269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007270F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007271F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007273TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007274M: Kentaro Takeda <takedakn@nttdata.co.jp>
7275M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007276L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7277L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007278L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7279L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7280W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007281T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007283F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007284
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007285TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007286M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007287L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007288S: Maintained
7289F: drivers/platform/x86/topstar-laptop.c
7290
Linus Torvalds1da177e2005-04-16 15:20:36 -07007291TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007292L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007293S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007294F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295
7296TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007297M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298L: tlinux-users@tce.toshiba-dme.co.jp
7299W: http://www.buzzard.org.uk/toshiba/
7300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007301F: drivers/char/toshiba.c
7302F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303
Pierre Ossmand719f902009-03-24 21:06:09 +01007304TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007305M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007306M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007307L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007308S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007309F: drivers/mmc/host/tmio_mmc*
7310F: drivers/mmc/host/sh_mobile_sdhi.c
7311F: include/linux/mmc/tmio.h
7312F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007313
Hugh Dickins98f32602009-05-21 20:33:58 +01007314TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007315M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007316L: linux-mm@kvack.org
7317S: Maintained
7318F: include/linux/shmem_fs.h
7319F: mm/shmem.c
7320
Alan Cox4e688522008-04-30 00:52:11 -07007321TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007322M: Kent Yoder <key@linux.vnet.ibm.com>
7323M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007324W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007325M: Marcel Selhorst <tpmdd@selhorst.net>
7326M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007327W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007328L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007330F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007331
Joe Perchesd6f005a2009-10-26 16:49:40 -07007332TRACING
7333M: Steven Rostedt <rostedt@goodmis.org>
7334M: Frederic Weisbecker <fweisbec@gmail.com>
7335M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007336T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007337S: Maintained
7338F: Documentation/trace/ftrace.txt
7339F: arch/*/*/*/ftrace.h
7340F: arch/*/kernel/ftrace.c
7341F: include/*/ftrace.h
7342F: include/linux/trace*.h
7343F: include/trace/
7344F: kernel/trace/
7345
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007347M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007348T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007350K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351
Alan Cox4e688522008-04-30 00:52:11 -07007352TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007353M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7354S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007355T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007356F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007357F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007358F: include/linux/serial_core.h
7359F: include/linux/serial.h
7360F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007361
Antti Palosaari91952bc2012-10-01 12:28:46 -03007362TUA9001 MEDIA DRIVER
7363M: Antti Palosaari <crope@iki.fi>
7364L: linux-media@vger.kernel.org
7365W: http://linuxtv.org/
7366W: http://palosaari.fi/linux/
7367Q: http://patchwork.linuxtv.org/project/linux-media/list/
7368T: git git://linuxtv.org/anttip/media_tree.git
7369S: Maintained
7370F: drivers/media/tuners/tua9001*
7371
Grant Grundler740db6d2008-02-17 11:53:49 -07007372TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007374L: netdev@vger.kernel.org
7375S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007376F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
7378TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007379M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380L: vtun@office.satix.net
7381W: http://vtun.sourceforge.net/tun
7382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007383F: Documentation/networking/tuntap.txt
7384F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007386TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007387M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007389F: drivers/tc/
7390F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007391
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007393M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394L: linux-scsi@vger.kernel.org
7395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007396F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007398UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007399M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007400M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007401L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007402T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007403W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007405F: Documentation/filesystems/ubifs.txt
7406F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007407
Alan Coxcc2020e2008-05-19 14:21:51 +01007408UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007409M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007410W: http://www.uclinux.org/
7411L: uclinux-dev@uclinux.org (subscribers-only)
7412S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007413F: arch/m68k/*/*_no.*
7414F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007415
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007416UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007417M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007418W: http://uclinux-h8.sourceforge.jp/
7419S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007420F: arch/h8300/
7421F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007422F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007423
Linus Torvalds1da177e2005-04-16 15:20:36 -07007424UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007425M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007427F: Documentation/filesystems/udf.txt
7428F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429
Alan Coxcc2020e2008-05-19 14:21:51 +01007430UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007431M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007433F: Documentation/filesystems/ufs.txt
7434F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007435
David Herrmann0a09d3a2012-06-10 15:16:28 +02007436UHID USERSPACE HID IO DRIVER:
7437M: David Herrmann <dh.herrmann@googlemail.com>
7438L: linux-input@vger.kernel.org
7439S: Maintained
7440F: drivers/hid/uhid.c
7441F: include/linux/uhid.h
7442
David Vrabel18332a82008-09-17 16:34:44 +01007443ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007444L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007445S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007446F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007447F: include/linux/uwb.h
7448F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007449
GuanXuetaob31d8272011-01-16 00:35:49 +08007450UNICORE32 ARCHITECTURE:
7451M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7452W: http://mprc.pku.edu.cn/~guanxuetao/linux
7453S: Maintained
7454T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7455F: arch/unicore32/
7456
Tony Finchd8379ab2009-11-27 15:50:30 +00007457UNIFDEF
7458M: Tony Finch <dot@dotat.at>
7459W: http://dotat.at/prog/unifdef
7460S: Maintained
7461F: scripts/unifdef.c
7462
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007464M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465W: http://www.kernel.dk
7466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007467F: Documentation/cdrom/
7468F: drivers/cdrom/cdrom.c
7469F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307471UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7472M: Vinayak Holikatti <vinholikatti@gmail.com>
7473M: Santosh Y <santoshsy@gmail.com>
7474L: linux-scsi@vger.kernel.org
7475S: Supported
7476F: Documentation/scsi/ufs.txt
7477F: drivers/scsi/ufs/
7478
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007479UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007480M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007481W: http://www.linux-mtd.infradead.org/
7482L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007483T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007484S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007485F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007486F: include/linux/mtd/ubi.h
7487F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007488
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007489UNSORTED BLOCK IMAGES (UBI) Fastmap
7490M: Richard Weinberger <richard@nod.at>
7491L: linux-mtd@lists.infradead.org
7492S: Maintained
7493F: drivers/mtd/ubi/fastmap.c
7494
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007496M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007497L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007499F: Documentation/usb/acm.txt
7500F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007502USB ATTACHED SCSI
7503M: Matthew Wilcox <willy@linux.intel.com>
7504M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7505L: linux-usb@vger.kernel.org
7506L: linux-scsi@vger.kernel.org
7507S: Supported
7508F: drivers/usb/storage/uas.c
7509
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007511M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007512L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007514F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007517M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007518L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007520F: drivers/net/usb/cdc_*.c
7521F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007523USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007524M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007525L: linux-usb@vger.kernel.org
7526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007527F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007528
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007529USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007530M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007531L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007532W: http://www.linux-usb.org/usbnet
7533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007534F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007535
Alan Coxcc2020e2008-05-19 14:21:51 +01007536USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007537M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007538L: rio500-users@lists.sourceforge.net
7539W: http://rio500.sourceforge.net
7540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007541F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007542
Linus Torvalds1da177e2005-04-16 15:20:36 -07007543USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007544M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007545L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007547F: Documentation/usb/ehci.txt
7548F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007549
David Brownell69ae9e32006-11-14 02:03:31 -08007550USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007551M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007552L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007553W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007554T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007556F: drivers/usb/gadget/
7557F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007558
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007559USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007560M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007561L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007562T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007564F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007565F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566
matt mooney857aab32011-06-17 15:50:46 -07007567USB/IP DRIVERS
7568M: Matt Mooney <mfm@muteddisk.com>
7569L: linux-usb@vger.kernel.org
7570S: Maintained
7571F: drivers/staging/usbip/
7572
Olav Kongas959eea22005-11-03 17:38:14 +02007573USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007574M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007575L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007577F: drivers/usb/host/isp116x*
7578F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007579
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007581M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007582L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007584F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
7586USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007587M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007588L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007589L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590S: Maintained
7591W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007592F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593
Clemens Ladischaf399172011-01-10 16:32:54 +01007594USB MIDI DRIVER
7595M: Clemens Ladisch <clemens@ladisch.de>
7596L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7597T: git git://git.alsa-project.org/alsa-kernel.git
7598S: Maintained
7599F: sound/usb/midi.*
7600
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007602M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007603L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007605F: Documentation/usb/ohci.txt
7606F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607
Matthias Urlichsba460e42005-07-14 00:33:47 -07007608USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007609M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007610L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007612F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007613
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007615M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007616L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007617L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618W: http://pegasus2.sourceforge.net/
7619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007620F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621
Felipe Balbid3ad5582012-05-21 16:24:49 +03007622USB PHY LAYER
7623M: Felipe Balbi <balbi@ti.com>
7624L: linux-usb@vger.kernel.org
7625T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7626S: Maintained
7627F: drivers/usb/phy/
7628F: drivers/usb/otg/
7629
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007630USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007631M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007632L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007634F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
7636USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007637M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007638L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007639L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640W: http://pegasus2.sourceforge.net/
7641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007642F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643
Alan Cox4e688522008-04-30 00:52:11 -07007644USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007645M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007646L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007648F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007649
7650USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007651M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007652L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007653S: Maintained
7654W: http://geocities.com/i0xox0i
7655W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007656F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007657
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007662F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663
7664USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007665M: Peter Berger <pberger@brimson.com>
7666M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007667L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007669F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670
7671USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007672M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007673L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007675F: Documentation/usb/usb-serial.txt
7676F: drivers/usb/serial/generic.c
7677F: drivers/usb/serial/usb-serial.c
7678F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007681M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007682L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007684F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685
7686USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007687M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007688L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007690F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
7692USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007693M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007694L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695W: http://www.connecttech.com
7696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007697F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007699USB SMSC75XX ETHERNET DRIVER
7700M: Steve Glendinning <steve.glendinning@shawell.net>
7701L: netdev@vger.kernel.org
7702S: Maintained
7703F: drivers/net/usb/smsc75xx.*
7704
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007705USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007706M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007707L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007709F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007710
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007711USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007712M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007713L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007714L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007715T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716W: http://www.linux-projects.org
7717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007718F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007719F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720
7721USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007722M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007723L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007725T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007726S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007727F: Documentation/usb/
7728F: drivers/net/usb/
7729F: drivers/usb/
7730F: include/linux/usb.h
7731F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732
7733USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007734M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007735L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007737F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738
David Brownell69ae9e32006-11-14 02:03:31 -08007739USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007740M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007741L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007742W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007744F: drivers/net/usb/usbnet.c
7745F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007747USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007748M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007749L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007750L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007751T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007752W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007753S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007754F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755
Laurent Pinchart8282da42012-10-04 02:32:42 +02007756USB WEBCAM GADGET
7757M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7758L: linux-usb@vger.kernel.org
7759S: Maintained
7760F: drivers/usb/gadget/*uvc*.c
7761F: drivers/usb/gadget/webcam.c
7762
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007763USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007764M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007765L: linux-wireless@vger.kernel.org
7766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007767F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007768
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007769USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007770M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007771L: linux-usb@vger.kernel.org
7772S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007773F: drivers/usb/host/xhci*
7774F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007775
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007777L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007779S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007780F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007782USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007783M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007784L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007785L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007786T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007787W: http://royale.zerezo.com/zr364xx/
7788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007789F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007790F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007791
Randy Dunlape7839f22008-10-12 16:11:45 -07007792USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007793M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007794M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795L: user-mode-linux-devel@lists.sourceforge.net
7796L: user-mode-linux-user@lists.sourceforge.net
7797W: http://user-mode-linux.sourceforge.net
7798S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007799F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007800F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007801F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007802F: fs/hostfs/
7803F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007804
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007805USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007806M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007807M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007809F: Documentation/DocBook/uio-howto.tmpl
7810F: drivers/uio/
7811F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007812
Karel Zak256cccb2012-06-01 10:13:09 +02007813UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007814M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007815L: util-linux@vger.kernel.org
7816W: http://en.wikipedia.org/wiki/Util-linux
7817T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007818S: Maintained
7819
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007820UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007821M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007822L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007823W: http://dev.gentoo.org/~spock/projects/uvesafb/
7824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007825F: Documentation/fb/uvesafb.txt
7826F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007827
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007828VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007829M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007831F: Documentation/filesystems/vfat.txt
7832F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833
Alex Williamsoncba33452012-07-31 08:16:22 -06007834VFIO DRIVER
7835M: Alex Williamson <alex.williamson@redhat.com>
7836L: kvm@vger.kernel.org
7837S: Maintained
7838F: Documentation/vfio.txt
7839F: drivers/vfio/
7840F: include/linux/vfio.h
7841
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007842VIDEOBUF2 FRAMEWORK
7843M: Pawel Osciak <pawel@osciak.com>
7844M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007845M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007846L: linux-media@vger.kernel.org
7847S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007848F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007849F: include/media/videobuf2-*
7850
Amit Shah9a824462010-03-23 18:23:09 +05307851VIRTIO CONSOLE DRIVER
7852M: Amit Shah <amit.shah@redhat.com>
7853L: virtualization@lists.linux-foundation.org
7854S: Maintained
7855F: drivers/char/virtio_console.c
7856F: include/linux/virtio_console.h
7857
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307858VIRTIO CORE, NET AND BLOCK DRIVERS
7859M: Rusty Russell <rusty@rustcorp.com.au>
7860M: "Michael S. Tsirkin" <mst@redhat.com>
7861L: virtualization@lists.linux-foundation.org
7862S: Maintained
7863F: drivers/virtio/
7864F: drivers/net/virtio_net.c
7865F: drivers/block/virtio_blk.c
7866F: include/linux/virtio_*.h
7867
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007868VIRTIO HOST (VHOST)
7869M: "Michael S. Tsirkin" <mst@redhat.com>
7870L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007871L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007872L: netdev@vger.kernel.org
7873S: Maintained
7874F: drivers/vhost/
7875F: include/linux/vhost.h
7876
Linus Torvalds1da177e2005-04-16 15:20:36 -07007877VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007878M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007880F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881
Jean Delvare32c0a522005-09-22 21:47:58 +02007882VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007883M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007884L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007886F: Documentation/i2c/busses/i2c-viapro
7887F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007888
Harald Weltef0bf7f62009-06-17 20:22:39 +02007889VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007890M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007891M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007892S: Maintained
7893F: drivers/mmc/host/via-sdmmc.c
7894
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007895VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007896M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007897L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007898S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007899F: include/linux/via-core.h
7900F: include/linux/via-gpio.h
7901F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007902F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007903
Francois Romieu01f20732007-01-26 00:57:17 -08007904VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007905M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007906L: netdev@vger.kernel.org
7907S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007908F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909
Patrick McHardybe7f8272007-10-23 20:26:36 -07007910VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007911M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007912L: netdev@vger.kernel.org
7913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007914F: drivers/net/macvlan.c
7915F: include/linux/if_*vlan.h
7916F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007917
Florian Fainelli55e331c2009-06-16 15:33:53 -07007918VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007919M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007920L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007921S: Maintained
7922F: drivers/vlynq/vlynq.c
7923F: include/linux/vlynq.h
7924
Martyn Welch390beae2012-05-03 17:52:36 +01007925VME SUBSYSTEM
7926M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007927M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007928M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7929L: devel@driverdev.osuosl.org
7930S: Maintained
7931T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7932F: Documentation/vme_api.txt
7933F: drivers/staging/vme/
7934F: drivers/vme/
7935F: include/linux/vme*
7936
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007937VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007938M: Shreyas Bhatewara <sbhatewara@vmware.com>
7939M: "VMware, Inc." <pv-drivers@vmware.com>
7940L: netdev@vger.kernel.org
7941S: Maintained
7942F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007943
Alok Kataria851b1642009-10-13 14:51:05 -07007944VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007945M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007946M: VMware PV-Drivers <pv-drivers@vmware.com>
7947L: linux-scsi@vger.kernel.org
7948S: Maintained
7949F: drivers/scsi/vmw_pvscsi.c
7950F: drivers/scsi/vmw_pvscsi.h
7951
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007952VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007953M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007954M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007955W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007956W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007957T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007959F: drivers/regulator/
7960F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007961
Juerg Haefligerab413192006-09-24 20:54:04 +02007962VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007963M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007964L: lm-sensors@lm-sensors.org
7965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007966F: Documentation/hwmon/vt1211
7967F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007968
Roger Lucas1de9e372005-11-26 20:20:05 +01007969VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007970M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007971L: lm-sensors@lm-sensors.org
7972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007973F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007974
Tony Olech88095e72011-05-14 16:48:13 -04007975VUB300 USB to SDIO/SD/MMC bridge chip
7976M: Tony Olech <tony.olech@elandigitalsystems.com>
7977L: linux-mmc@vger.kernel.org
7978L: linux-usb@vger.kernel.org
7979S: Supported
7980F: drivers/mmc/host/vub300.c
7981
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007983M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007985F: Documentation/w1/
7986F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987
Charles Spirakis13927072006-07-05 18:05:15 +02007988W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007989M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007990L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007992F: Documentation/hwmon/w83791d
7993F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007994
Rudolf Marek61db0112006-12-12 18:18:30 +01007995W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007996M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007997L: lm-sensors@lm-sensors.org
7998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007999F: Documentation/hwmon/w83793
8000F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008001
Jean Delvaree3760b42010-10-28 20:31:49 +02008002W83795 HARDWARE MONITORING DRIVER
8003M: Jean Delvare <khali@linux-fr.org>
8004L: lm-sensors@lm-sensors.org
8005S: Maintained
8006F: drivers/hwmon/w83795.c
8007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008009M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008011F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008012
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008013WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008014M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008015L: linux-watchdog@vger.kernel.org
8016W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008017T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008019F: Documentation/watchdog/
8020F: drivers/watchdog/
8021F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008022
Linus Torvalds1da177e2005-04-16 15:20:36 -07008023WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008024M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025L: linux-scsi@vger.kernel.org
8026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008027F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028
David Herrmannb22e00f2011-09-06 13:50:40 +02008029WIIMOTE HID DRIVER
8030M: David Herrmann <dh.herrmann@googlemail.com>
8031L: linux-input@vger.kernel.org
8032S: Maintained
8033F: drivers/hid/hid-wiimote*
8034
David Härdemane258b802009-09-21 17:04:53 -07008035WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008036M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008037S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008038F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008039
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008040WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008041M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008042M: linux-wimax@intel.com
8043L: wimax@linuxwimax.org
8044S: Supported
8045W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008046F: Documentation/wimax/README.wimax
8047F: include/linux/wimax.h
8048F: include/linux/wimax/debug.h
8049F: include/net/wimax.h
8050F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008051
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008052WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008053M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008055F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008056
Linus Torvalds1da177e2005-04-16 15:20:36 -07008057WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008058M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008059L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008060W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008062F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063
Mark Brownfebf1df2008-04-02 00:51:09 -04008064WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008065M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8066M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008067L: linux-input@vger.kernel.org
8068T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8069W: http://opensource.wolfsonmicro.com/node/7
8070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008071F: drivers/input/touchscreen/*wm97*
8072F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008073
Mark Brown055bcbc2010-08-13 14:18:12 +01008074WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008075M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008076L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008077T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008078T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008079W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008080S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008081F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008082F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008083F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008084F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008085F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008086F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008087F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008088F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008089F: drivers/input/misc/wm831x-on.c
8090F: drivers/input/touchscreen/wm831x-ts.c
8091F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008092F: drivers/mfd/arizona*
8093F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008094F: drivers/power/wm83*.c
8095F: drivers/rtc/rtc-wm83*.c
8096F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008097F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008098F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008099F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008100F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008101F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008102F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008103F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008104F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008105F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008106F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008107
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008108WORKQUEUE
8109M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008110T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8111S: Maintained
8112F: include/linux/workqueue.h
8113F: kernel/workqueue.c
8114F: Documentation/workqueue.txt
8115
Linus Torvalds1da177e2005-04-16 15:20:36 -07008116X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008117M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008118L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008119S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008120F: Documentation/networking/x25*
8121F: include/net/x25*
8122F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008124X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008125M: Thomas Gleixner <tglx@linutronix.de>
8126M: Ingo Molnar <mingo@redhat.com>
8127M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008128M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008129T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008131F: Documentation/x86/
8132F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008133
Matthew Garrettd0944852010-02-11 10:40:13 -05008134X86 PLATFORM DRIVERS
8135M: Matthew Garrett <mjg@redhat.com>
8136L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008137T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008138S: Maintained
8139F: drivers/platform/x86
8140
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008141X86 MCE INFRASTRUCTURE
8142M: Tony Luck <tony.luck@intel.com>
8143M: Borislav Petkov <bp@amd64.org>
8144L: linux-edac@vger.kernel.org
8145S: Maintained
8146F: arch/x86/kernel/cpu/mcheck/*
8147
Ian Campbellc4468082011-04-27 15:26:46 -07008148XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008149M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008150M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008151L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8152L: virtualization@lists.linux-foundation.org
8153S: Supported
8154F: arch/x86/xen/
8155F: drivers/*/xen-*front.c
8156F: drivers/xen/
8157F: arch/x86/include/asm/xen/
8158F: include/xen/
8159
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008160XEN HYPERVISOR ARM
8161M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8162L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8163S: Supported
8164F: arch/arm/xen/
8165F: arch/arm/include/asm/xen/
8166
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008167XEN NETWORK BACKEND DRIVER
8168M: Ian Campbell <ian.campbell@citrix.com>
8169L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8170L: netdev@vger.kernel.org
8171S: Supported
8172F: drivers/net/xen-netback/*
8173
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008174XEN PCI 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)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008177S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008178F: arch/x86/pci/*xen*
8179F: drivers/pci/*xen*
8180
8181XEN SWIOTLB SUBSYSTEM
8182M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008183L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008184S: Supported
8185F: arch/x86/xen/*swiotlb*
8186F: drivers/xen/*swiotlb*
8187
Linus Torvalds1da177e2005-04-16 15:20:36 -07008188XFS FILESYSTEM
8189P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008190M: Ben Myers <bpm@sgi.com>
8191M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008192M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008193L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008195T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008197F: Documentation/filesystems/xfs.txt
8198F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008200XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008201M: Anirudha Sarangi <anirudh@xilinx.com>
8202M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008203S: Maintained
8204F: drivers/net/ethernet/xilinx/xilinx_axienet*
8205
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008206XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008207M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008208W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008210F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008211
Peter Korsgaard238b8722006-12-06 20:35:17 -08008212XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008213M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008214L: linux-serial@vger.kernel.org
8215S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008216F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008217
Linus Torvalds1da177e2005-04-16 15:20:36 -07008218YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008219M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008220L: linux-hams@vger.kernel.org
8221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008222F: drivers/net/hamradio/yam*
8223F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224
Henkaf64a5e2005-10-12 15:02:56 +02008225YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008226M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008227L: usbb2k-api-dev@nongnu.org
8228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008229F: Documentation/input/yealink.txt
8230F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008231
Linus Torvalds1da177e2005-04-16 15:20:36 -07008232Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008233M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234W: http://yaina.de/jreuter/
8235W: http://www.qsl.net/dl1bke/
8236L: linux-hams@vger.kernel.org
8237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008238F: Documentation/networking/z8530drv.txt
8239F: drivers/net/hamradio/*scc.c
8240F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008242ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008243M: Daniel Drake <dsd@gentoo.org>
8244M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008245W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008246L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008247L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008249F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008250
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008253L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008255T: Mercurial http://linuxtv.org/hg/v4l-dvb
8256S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008257F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008259ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008260M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008261S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008262F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008263
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008265M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008266L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008267Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008268T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008270F: *
8271F: */