blob: b95ae9b0712187b584826e5b1d5c8b4a00a28ecb [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
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aha152x*
458F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462L: linux-scsi@vger.kernel.org
463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700464F: drivers/scsi/aic7xxx/
465F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200466
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700467AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700469L: linux-aio@kvack.org
470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700471F: fs/aio.c
472F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700476L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477W: http://www.linux-usb.org/SpeedTouch/
478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700479F: drivers/usb/atm/speedtch.c
480F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Pierre Ossman272f1332007-05-14 21:25:26 +0200482ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700483M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200486
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000487ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100489L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: Documentation/i2c/busses/i2c-ali1563
492F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700495M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500497M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700498S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700499L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700500F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Tobias Klauseradf92512011-02-09 10:58:29 +0100502ALTERA UART/JTAG UART SERIAL DRIVERS
503M: Tobias Klauser <tklauser@distanz.ch>
504L: linux-serial@vger.kernel.org
505L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
506S: Maintained
507F: drivers/tty/serial/altera_uart.c
508F: drivers/tty/serial/altera_jtaguart.c
509F: include/linux/altera_uart.h
510F: include/linux/altera_jtaguart.h
511
Andreas Herrmann512d1022011-05-25 20:43:31 +0200512AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100513M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200514L: lm-sensors@lm-sensors.org
515S: Maintained
516F: Documentation/hwmon/fam15h_power
517F: drivers/hwmon/fam15h_power.c
518
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700519AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700520M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700521L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700524
Jordan Crousef90b8112006-01-06 00:12:14 -0800525AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800526P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700527L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800528W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700530F: drivers/char/hw_random/geode-rng.c
531F: drivers/crypto/geode*
532F: drivers/video/geode/
533F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800534
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200536M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200537L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100538T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200539S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800540F: drivers/iommu/amd_iommu*.[ch]
541F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200542
Peter Orubae7f5b302008-07-28 18:44:11 +0200543AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100544M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700545L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700547F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200548
Stelian Pop284f42b2006-12-12 18:18:31 +0100549AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700550M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100551S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200552F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100553
Tom Tuckerf94b5332006-09-22 15:22:48 -0700554AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700555M: Tom Tucker <tom@opengridcomputing.com>
556M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700557L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700559F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700560
Michael Hennerich527a1a82010-10-28 11:31:28 +0000561ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200562M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100563L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000564L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700565W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000566S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100567F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200568F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000569F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000570F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100571F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000572
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400573ANALOG DEVICES INC ASOC DRIVERS
574L: uclinux-dist-devel@blackfin.uclinux.org
575L: alsa-devel@alsa-project.org (moderated for non-subscribers)
576W: http://blackfin.uclinux.org/
577S: Supported
578F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400579
Johannes Berg42269062006-07-25 16:15:50 +0200580AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700581M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000582L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700583L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700585F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200588M: Jiri Kosina <jkosina@suse.cz>
589S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700590F: arch/x86/kernel/apm_32.c
591F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200592F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700594APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700595M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700596L: linux-input@vger.kernel.org
597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700598F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700599
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700600APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200601M: Henrik Rydberg <rydberg@euromail.se>
602L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700604F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700607M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700609F: drivers/net/appletalk/
610F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Viresh Kumara4801672011-02-22 15:46:07 +0530612ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700613M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530614L: linux-ide@vger.kernel.org
615S: Maintained
616F: include/linux/pata_arasan_cf_data.h
617F: drivers/ata/pata_arasan_cf.c
618
Jaya Kumar1154ea72005-06-21 17:17:04 -0700619ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700620M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700622F: drivers/video/arcfb.c
623F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700628F: arch/arm/lib/floppydma.S
629F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Will Deacon6f965212011-07-01 14:38:53 +0100631ARM PMU PROFILING AND DEBUGGING
632M: Will Deacon <will.deacon@arm.com>
633S: Maintained
634F: arch/arm/kernel/perf_event*
635F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100636F: arch/arm/include/asm/pmu.h
637F: arch/arm/kernel/hw_breakpoint.c
638F: arch/arm/include/asm/hw_breakpoint.h
639
Russell Kingd4275352009-04-16 14:05:27 +0100640ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700641M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700642L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100643W: http://www.arm.linux.org.uk/
644S: Maintained
645F: arch/arm/
646
Stephen Boydd323c2432012-10-24 11:00:29 -0700647ARM SUB-ARCHITECTURES
648L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
649S: MAINTAINED
650F: arch/arm/mach-*/
651F: arch/arm/plat-*/
652T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
653
Russell Kingcefbf4e2009-11-22 17:40:28 +0000654ARM PRIMECELL AACI PL041 DRIVER
655M: Russell King <linux@arm.linux.org.uk>
656S: Maintained
657F: sound/arm/aaci.*
658
659ARM PRIMECELL CLCD PL110 DRIVER
660M: Russell King <linux@arm.linux.org.uk>
661S: Maintained
662F: drivers/video/amba-clcd.*
663
664ARM PRIMECELL KMI PL050 DRIVER
665M: Russell King <linux@arm.linux.org.uk>
666S: Maintained
667F: drivers/input/serio/ambakmi.*
668F: include/linux/amba/kmi.h
669
Russell King2761f5c2007-05-24 06:56:08 +0200670ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200671S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700672F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200673
Russell Kingcefbf4e2009-11-22 17:40:28 +0000674ARM PRIMECELL BUS SUPPORT
675M: Russell King <linux@arm.linux.org.uk>
676S: Maintained
677F: drivers/amba/
678F: include/linux/amba/bus.h
679
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800680ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700681M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700682L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683S: Maintained
684
Sergey Lapin9c784f92008-08-03 02:29:48 +0100685ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700686M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700687L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100688S: Maintained
689
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800690ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800693S: Maintained
694
Maxime Ripard1b106692012-11-15 21:51:26 +0100695ARM/Allwinner A1X SoC support
696M: Maxime Ripard <maxime.ripard@free-electrons.com>
697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
698S: Maintained
699F: arch/arm/mach-sunxi/
700
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800701ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700702M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800703M: Nicolas Ferre <nicolas.ferre@atmel.com>
704M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200706W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800707W: http://www.linux4sam.org
708S: Supported
709F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100710
Rob Herring986cf2e2011-06-22 11:28:53 -0500711ARM/CALXEDA HIGHBANK ARCHITECTURE
712M: Rob Herring <rob.herring@calxeda.com>
713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
714S: Maintained
715F: arch/arm/mach-highbank/
716
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300717ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
718M: Anton Vorontsov <avorontsov@mvista.com>
719S: Maintained
720F: arch/arm/mach-cns3xxx/
721T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
722
Alexander Shiyan386ab512012-11-17 17:57:24 +0400723ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
724M: Alexander Shiyan <shc_work@mail.ru>
725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
726S: Odd Fixes
727F: arch/arm/mach-clps711x/
728
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800729ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100730M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000731M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100734F: arch/arm/mach-ep93xx/
735F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800736
737ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700738M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800740S: Maintained
741
Russell Kingd4275352009-04-16 14:05:27 +0100742ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700743M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700745S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100746F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700747F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100748
Mike Rapoportd48134e2008-08-20 09:03:26 +0100749ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700750M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700751L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100752S: Maintained
753
Hubert Feurstein94150092009-10-07 08:36:07 +0100754ARM/CONTEC MICRO9 MACHINE SUPPORT
755M: Hubert Feurstein <hubert.feurstein@contec.at>
756S: Maintained
757F: arch/arm/mach-ep93xx/micro9.c
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761S: Maintained
762
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200763ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100764M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100766T: git git://git.berlios.de/gemini-board
767S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300768F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200769
Barry Songa990cbd2011-07-12 21:44:10 +0800770ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
771M: Barry Song <baohua.song@csr.com>
772L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
773S: Maintained
774F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800775F: drivers/dma/sirf-dma.c
776F: drivers/i2c/busses/i2c-sirf.c
777F: drivers/pinctrl/pinctrl-sirf.c
778F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800779
Russell Kingd4275352009-04-16 14:05:27 +0100780ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700781M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100783W: http://www.arm.linux.org.uk/
784S: Maintained
785F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700786F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100787
Russell Kinga9da4f72008-07-12 21:42:04 +0100788ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700789M: Daniel Ribeiro <drwyrm@gmail.com>
790M: Stefan Schmidt <stefan@openezx.org>
791M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200792L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100793W: http://www.openezx.org/
794S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200795T: topgit git://git.openezx.org/openezx.git
796F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100797
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200798ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100799M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100801S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700802T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300803F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200804
Russell Kingd4275352009-04-16 14:05:27 +0100805ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100808W: http://www.arm.linux.org.uk/
809S: Maintained
810F: arch/arm/include/asm/hardware/dec21285.h
811F: arch/arm/mach-footbridge/
812
Sascha Hauer86183a52008-07-24 23:50:35 +0200813ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200816S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700817T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100818F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700819F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200820
Shawn Guo8bcb9762011-10-07 22:24:18 +0800821ARM/FREESCALE IMX6
822M: Shawn Guo <shawn.guo@linaro.org>
823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
824S: Maintained
825T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
826F: arch/arm/mach-imx/*imx6*
827
Shawn Guoa9866a092011-10-21 11:53:34 +0800828ARM/FREESCALE MXS ARM ARCHITECTURE
829M: Shawn Guo <shawn.guo@linaro.org>
830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
831S: Maintained
832T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
833F: arch/arm/mach-mxs/
834
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800835ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700836M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800838S: Maintained
839
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100840ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700841M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100843S: Maintained
844
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200845ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100847M: Paul Parsons <lost.distance@yahoo.com>
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200849S: Maintained
850F: arch/arm/mach-pxa/hx4700.c
851F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100852F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200853
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100854ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200856W: www.jlime.com
857S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700858T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
859F: arch/arm/mach-sa1100/jornada720.c
860F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100861
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200862ARM/IGEP MACHINE SUPPORT
863M: Enric Balletbo i Serra <eballetbo@gmail.com>
864M: Javier Martinez Canillas <javier@dowhile0.org>
865L: linux-omap@vger.kernel.org
866L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
867S: Maintained
868F: arch/arm/mach-omap2/board-igep0020.c
869
Marek Vasut403d2972010-05-22 00:29:39 +0200870ARM/INCOME PXA270 SUPPORT
871M: Marek Vasut <marek.vasut@gmail.com>
872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
873S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700874F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200875
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700877M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700878M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700880S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100881
882ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700883M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700885S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800886
887ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700888M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700889M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700890L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700891S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892
893ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700894M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700895M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700897S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800899ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700900M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700901L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800902S: Maintained
903
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200904ARM/INTEL IXP4XX ARM ARCHITECTURE
905M: Imre Kaloz <kaloz@openwrt.org>
906M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200908S: Maintained
909F: arch/arm/mach-ixp4xx/
910
Joe Perches838553c2010-10-26 14:22:59 -0700911ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100912M: Jonathan Cameron <jic23@cam.ac.uk>
913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
914S: Maintained
915F: arch/arm/mach-pxa/stargate2.c
916F: drivers/pcmcia/pxa2xx_stargate2.c
917
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800918ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700919M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700920M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700922S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800923
924ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700925M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927S: Maintained
928
929ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700930M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932S: Maintained
933
Philipp Zabel3b8861712008-07-09 21:27:15 +0100934ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700935M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100936S: Maintained
937
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200938ARM/Marvell Armada 370 and Armada XP SOC support
939M: Jason Cooper <jason@lakedaemon.net>
940M: Andrew Lunn <andrew@lunn.ch>
941M: Gregory Clement <gregory.clement@free-electrons.com>
942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
943S: Maintained
944F: arch/arm/mach-mvebu/
945
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400946ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
947M: Jason Cooper <jason@lakedaemon.net>
948M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400950S: Maintained
951F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400952F: arch/arm/mach-kirkwood/
953F: arch/arm/mach-mv78xx0/
954F: arch/arm/mach-orion5x/
955F: arch/arm/plat-orion/
956
Alexander Clouterd69ac132011-04-14 15:22:02 -0700957ARM/Orion SoC/Technologic Systems TS-78xx platform support
958M: Alexander Clouter <alex@digriz.org.uk>
959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960W: http://www.digriz.org.uk/ts78xx/kernel
961S: Maintained
962F: arch/arm/mach-orion5x/ts78xx-*
963
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000964ARM/MICREL KS8695 ARCHITECTURE
965M: Greg Ungerer <gerg@uclinux.org>
966L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
967F: arch/arm/mach-ks8695
968S: Odd Fixes
969
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200970ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700971M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700972L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200973F: arch/arm/mach-pxa/mioa701.c
974S: Maintained
975
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100976ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700977M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100978S: Maintained
979
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100980ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700981M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200982M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700983M: STEricsson <STEricsson_nomadik_linux@list.st.com>
984L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985S: Maintained
986F: arch/arm/mach-nomadik/
987F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100988F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200989T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100990
Andy Green9d762952009-05-19 06:41:42 -0300991ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700992M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300993L: openmoko-kernel@lists.openmoko.org (subscribers-only)
994W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
995S: Supported
996
Daniel Walker0c19d212009-12-07 16:53:51 -0800997ARM/QUALCOMM MSM MACHINE SUPPORT
998M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800999M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001000M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001001L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001002F: arch/arm/mach-msm/
1003F: drivers/video/msm/
1004F: drivers/mmc/host/msm_sdcc.c
1005F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001006F: drivers/tty/serial/msm_serial.h
1007F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001008F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001009F: drivers/*/pm8???-*
1010F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001011T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001012S: Maintained
1013
Dirk Opfer8459c152005-11-06 14:27:52 +00001014ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001015M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1016M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001017S: Maintained
1018
Marek Vasut5d783a22009-07-16 13:26:48 +02001019ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001020M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001021L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001022W: http://hackndev.com
1023S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001024F: arch/arm/mach-pxa/include/mach/palmtx.h
1025F: arch/arm/mach-pxa/palmtx.c
1026F: arch/arm/mach-pxa/include/mach/palmt5.h
1027F: arch/arm/mach-pxa/palmt5.c
1028F: arch/arm/mach-pxa/include/mach/palmld.h
1029F: arch/arm/mach-pxa/palmld.c
1030F: arch/arm/mach-pxa/include/mach/palmte2.h
1031F: arch/arm/mach-pxa/palmte2.c
1032F: arch/arm/mach-pxa/include/mach/palmtc.h
1033F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001034
Joe Perchesb57fe922009-12-14 18:00:52 -08001035ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001036M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001037L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001038W: http://hackndev.com
1039S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001040F: arch/arm/mach-pxa/include/mach/palmtreo.h
1041F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001042
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001043ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001044M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001045L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001046W: http://hackndev.com
1047S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001048F: arch/arm/mach-pxa/include/mach/palmz72.h
1049F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001052M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1054S: Maintained
1055
1056ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001057M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001058L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059W: http://www.arm.linux.org.uk/
1060S: Maintained
1061
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001062ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001063M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001064L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001065S: Maintained
1066
Russell Kingd4275352009-04-16 14:05:27 +01001067ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001069L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001070W: http://www.arm.linux.org.uk/
1071S: Maintained
1072F: arch/arm/common/time-acorn.c
1073F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1074F: arch/arm/include/asm/hardware/ioc.h
1075F: arch/arm/include/asm/hardware/iomd.h
1076F: arch/arm/include/asm/hardware/memc.h
1077F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001078F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001079F: drivers/net/ethernet/i825xx/ether1*
1080F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001081F: drivers/scsi/arm/
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085W: http://www.shark-linux.de/shark.html
1086S: Maintained
1087
Ben Dooksb21477f2009-06-13 10:46:34 +01001088ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001090M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001092L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001093W: http://www.fluff.org/ben/linux/
1094S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001095F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001096F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001097F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001098F: arch/arm/mach-s3c24*/
1099F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001100F: drivers/*/*s3c2410*
1101F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001102F: drivers/spi/spi-s3c*
1103F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001105ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001106M: Kukjin Kim <kgene.kim@samsung.com>
1107L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1108L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1109S: Maintained
1110F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001111F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001112
Kyungmin Park10ffa962011-03-04 17:36:26 -08001113ARM/SAMSUNG MOBILE MACHINE SUPPORT
1114M: Kyungmin Park <kyungmin.park@samsung.com>
1115L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116S: Maintained
1117F: arch/arm/mach-s5pv210/mach-aquila.c
1118F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001119F: arch/arm/mach-exynos/mach-universal_c210.c
1120F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001121
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001122ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1123M: Kyungmin Park <kyungmin.park@samsung.com>
1124M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1125L: linux-arm-kernel@lists.infradead.org
1126L: linux-media@vger.kernel.org
1127S: Maintained
1128F: arch/arm/plat-s5p/dev-fimc*
1129F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001130F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001131
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001132ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1133M: Kyungmin Park <kyungmin.park@samsung.com>
1134M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001135M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001136L: linux-arm-kernel@lists.infradead.org
1137L: linux-media@vger.kernel.org
1138S: Maintained
1139F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001140F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001141
1142ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1143M: Kyungmin Park <kyungmin.park@samsung.com>
1144M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1145L: linux-arm-kernel@lists.infradead.org
1146L: linux-media@vger.kernel.org
1147S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001148F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001149
Paul Mundtd48d38e2010-02-08 12:50:24 +09001150ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001151M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001152M: Magnus Damm <magnus.damm@gmail.com>
1153L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001154W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001155Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001156T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001157S: Supported
1158F: arch/arm/mach-shmobile/
1159F: drivers/sh/
1160
Dinh Nguyen66314222012-07-18 16:07:18 -06001161ARM/SOCFPGA ARCHITECTURE
1162M: Dinh Nguyen <dinguyen@altera.com>
1163S: Maintained
1164F: arch/arm/mach-socfpga/
1165
1166ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1167M: Dinh Nguyen <dinguyen@altera.com>
1168S: Maintained
1169F: drivers/clk/socfpga/
1170
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001171ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001172M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001173L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001174S: Maintained
1175
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001176ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001177M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179S: Maintained
1180
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001181ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001182M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001183L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001184S: Maintained
1185
wanzongshun98ad6e32009-02-13 06:04:32 +01001186ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001187M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001188L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001189W: http://www.mcuos.com
1190S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001191F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001192F: drivers/input/keyboard/w90p910_keypad.c
1193F: drivers/input/touchscreen/w90p910_ts.c
1194F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001195F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001196F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001197F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001198F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001199F: drivers/usb/host/ehci-w90x900.c
1200F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001201
Linus Walleij54274d72010-04-04 10:58:03 +01001202ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001203M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001204L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1205S: Supported
1206F: arch/arm/mach-u300/
1207F: drivers/i2c/busses/i2c-stu300.c
1208F: drivers/rtc/rtc-coh901331.c
1209F: drivers/watchdog/coh901327_wdt.c
1210F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001211F: drivers/mfd/ab3100*
1212F: drivers/rtc/rtc-ab3100.c
1213F: drivers/rtc/rtc-coh901331.c
1214T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001215
Linus Walleij87572882010-12-22 09:18:29 +01001216ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001217M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001218M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001219L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220S: Maintained
1221F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001222F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001223F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001224F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001225F: drivers/mfd/abx500*
1226F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001227F: drivers/mfd/dbx500*
1228F: drivers/mfd/db8500*
1229F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001230F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001231F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001232T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001233
Russell Kingd4275352009-04-16 14:05:27 +01001234ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001235M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001237W: http://www.arm.linux.org.uk/
1238S: Maintained
1239F: arch/arm/vfp/
1240
Marek Vasute66b6d82010-03-26 06:51:32 +01001241ARM/VOIPAC PXA270 SUPPORT
1242M: Marek Vasut <marek.vasut@gmail.com>
1243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244S: Maintained
1245F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001246F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001247
Tony Prisk04529fe2012-07-24 04:19:37 +12001248ARM/VT8500 ARM ARCHITECTURE
1249M: Tony Prisk <linux@prisktech.co.nz>
1250L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251S: Maintained
1252F: arch/arm/mach-vt8500/
1253F: drivers/video/vt8500lcdfb.*
1254F: drivers/video/wm8505fb*
1255F: drivers/video/wmt_ge_rops.*
1256F: drivers/tty/serial/vt8500_serial.c
1257F: drivers/rtc/rtc-vt8500-c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001258F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001259
Marek Vasute66b6d82010-03-26 06:51:32 +01001260ARM/ZIPIT Z2 SUPPORT
1261M: Marek Vasut <marek.vasut@gmail.com>
1262L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263S: Maintained
1264F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001265F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001266
Catalin Marinas38074222012-03-05 11:49:34 +00001267ARM64 PORT (AARCH64 ARCHITECTURE)
1268M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001269M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001270L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1271S: Maintained
1272F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001273F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001274
George Josephd58de032010-03-05 22:17:25 +01001275ASC7621 HARDWARE MONITOR DRIVER
1276M: George Joseph <george.joseph@fairview5.com>
1277L: lm-sensors@lm-sensors.org
1278S: Maintained
1279F: Documentation/hwmon/asc7621
1280F: drivers/hwmon/asc7621.c
1281
Corentin Charyb229ece2011-02-26 10:20:40 +01001282ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001283M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001285L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001286W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001288F: drivers/platform/x86/asus*.c
1289F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001291ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001292M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001293L: lm-sensors@lm-sensors.org
1294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001295F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001296
Andrew Morton953a6472008-11-06 12:53:28 -08001297ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001298M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001299W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: Documentation/crypto/async-tx-api.txt
1302F: crypto/async_tx/
1303F: drivers/dma/
1304F: include/linux/dmaengine.h
1305F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001306
Wolfram Sanga1867d32009-09-18 22:45:51 +02001307AT24 EEPROM DRIVER
1308M: Wolfram Sang <w.sang@pengutronix.de>
1309L: linux-i2c@vger.kernel.org
1310S: Maintained
1311F: drivers/misc/eeprom/at24.c
1312F: include/linux/i2c/at24.h
1313
Randy Dunlape7839f22008-10-12 16:11:45 -07001314ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001315M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001316W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001318F: Documentation/aoe/
1319F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Joe Perches9a10a872010-12-01 09:37:55 -08001321ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001322M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001323L: linux-wireless@vger.kernel.org
1324S: Supported
1325F: drivers/net/wireless/ath/*
1326
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001327ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001328M: Jiri Slaby <jirislaby@gmail.com>
1329M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001330M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001331L: linux-wireless@vger.kernel.org
1332L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001333W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001334S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001335F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001336
Kalle Valo12e62d62011-09-13 10:21:25 +03001337ATHEROS ATH6KL WIRELESS DRIVER
1338M: Kalle Valo <kvalo@qca.qualcomm.com>
1339L: linux-wireless@vger.kernel.org
1340W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1341T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1342S: Supported
1343F: drivers/net/wireless/ath/ath6kl/
1344
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001346M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1347M: Jouni Malinen <jouni@qca.qualcomm.com>
1348M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1349M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001350L: linux-wireless@vger.kernel.org
1351L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001352W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001354F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001355
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001356CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1357M: Christian Lamparter <chunkeey@googlemail.com>
1358L: linux-wireless@vger.kernel.org
1359W: http://wireless.kernel.org/en/users/Drivers/carl9170
1360S: Maintained
1361F: drivers/net/wireless/ath/carl9170/
1362
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001363ATK0110 HWMON DRIVER
1364M: Luca Tettamanti <kronos.it@gmail.com>
1365L: lm-sensors@lm-sensors.org
1366S: Maintained
1367F: drivers/hwmon/asus_atk0110.c
1368
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001369ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001370M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001372F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001373
Chris Snook7ae115b2008-09-09 03:26:57 -04001374ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001375M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001376M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001377L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001378W: http://sourceforge.net/projects/atl1
1379W: http://atl1.sourceforge.net
1380S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001381F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001384M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001385L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001386L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387W: http://linux-atm.sourceforge.net
1388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001389F: drivers/atm/
1390F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001392ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001393M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001394S: Maintained
1395F: drivers/mmc/host/atmel-mci.c
1396F: drivers/mmc/host/atmel-mci-regs.h
1397
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001398ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001399M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001400S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001401F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001402
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001403ATMEL DMA DRIVER
1404M: Nicolas Ferre <nicolas.ferre@atmel.com>
1405L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406S: Supported
1407F: drivers/dma/at_hdmac.c
1408F: drivers/dma/at_hdmac_regs.h
1409F: arch/arm/mach-at91/include/mach/at_hdmac.h
1410
Josh Wu15515542012-03-23 17:56:29 +08001411ATMEL ISI DRIVER
1412M: Josh Wu <josh.wu@atmel.com>
1413L: linux-media@vger.kernel.org
1414S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001415F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001416F: include/media/atmel-isi.h
1417
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001418ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001419M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001420L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001422F: drivers/video/atmel_lcdfb.c
1423F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001424
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001425ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001426M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001427S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001428F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001429
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001430ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001431M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001432S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001433F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001434
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001435ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1436M: Nicolas Ferre <nicolas.ferre@atmel.com>
1437L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1438S: Supported
1439F: drivers/misc/atmel_tclib.c
1440F: drivers/clocksource/tcb_clksrc.c
1441
Josh Wuff2675d2012-03-23 17:56:55 +08001442ATMEL TSADCC DRIVER
1443M: Josh Wu <josh.wu@atmel.com>
1444L: linux-input@vger.kernel.org
1445S: Supported
1446F: drivers/input/touchscreen/atmel_tsadcc.c
1447
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001448ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001449M: Nicolas Ferre <nicolas.ferre@atmel.com>
1450L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001452F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001455M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001456L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457W: http://www.thekelleys.org.uk/atmel
1458W: http://atmelwlandriver.sourceforge.net/
1459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001460F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Chris Wrighta92b7b82005-07-07 18:12:23 -07001462AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001463M: Al Viro <viro@zeniv.linux.org.uk>
1464M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001465L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001466W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001467T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001469F: include/linux/audit.h
1470F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001471
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001472AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001473M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001474W: http://miguelojeda.es/auxdisplay.htm
1475W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001477F: drivers/auxdisplay/
1478F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001479
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001480AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001481M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1482M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001483W: http://www.atmel.com/products/AVR32/
1484W: http://avr32linux.org/
1485W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001487F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001488
1489AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001490M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1491M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001496M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001498W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001500F: include/linux/ax25.h
1501F: include/net/ax25.h
1502F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001504AZ6007 DVB DRIVER
1505M: Mauro Carvalho Chehab <mchehab@redhat.com>
1506L: linux-media@vger.kernel.org
1507W: http://linuxtv.org
1508T: git git://linuxtv.org/media_tree.git
1509S: Maintained
1510F: drivers/media/usb/dvb-usb-v2/az6007.c
1511
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001512B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001513M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001514L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001515L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001516W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001518F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001519
1520B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: Larry Finger <Larry.Finger@lwfinger.net>
1522M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001523L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001524L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001525W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001527F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001528
Richard Purdie300abeb2007-02-07 22:21:07 +00001529BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001530M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: drivers/video/backlight/
1533F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001534
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001535BATMAN ADVANCED
1536M: Marek Lindner <lindner_marek@yahoo.de>
1537M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001538M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001539L: b.a.t.m.a.n@lists.open-mesh.org
1540W: http://www.open-mesh.org/
1541S: Maintained
1542F: net/batman-adv/
1543
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001544BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001545M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001546L: linux-hams@vger.kernel.org
1547W: http://www.baycom.org/~tom/ham/ham.html
1548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001550
1551BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001552S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001553F: Documentation/filesystems/befs.txt
1554F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001555
1556BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001557M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001559F: Documentation/filesystems/bfs.txt
1560F: fs/bfs/
1561F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001562
Bryan Wu1394f032007-05-06 14:50:22 -07001563BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001564M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001565L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001566W: http://blackfin.uclinux.org
1567S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001568F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001569
Bryan Wue190d6b2007-07-17 14:43:44 +08001570BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001571L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001572W: http://blackfin.uclinux.org
1573S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001574F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001575
Mike Frysinger566da5b2007-06-11 15:31:30 +08001576BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001577M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001578L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001579W: http://blackfin.uclinux.org
1580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001581F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001582
Mike Frysinger936ed492010-03-10 15:20:38 -08001583BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001584M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001585L: uclinux-dist-devel@blackfin.uclinux.org
1586W: http://blackfin.uclinux.org
1587S: Supported
1588F: drivers/mmc/host/bfin_sdh.c
1589
Bryan Wu1394f032007-05-06 14:50:22 -07001590BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001591M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001592L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001593W: http://blackfin.uclinux.org
1594S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001595F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001596
Bryan Wu1e6d3202007-07-15 02:50:02 +08001597BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001598M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001599L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001600W: http://blackfin.uclinux.org
1601S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001602F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001603
Bryan Wud24ecfc2007-05-01 23:26:32 +02001604BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001605M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001606L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001607W: http://blackfin.uclinux.org/
1608S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001609F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001610
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001611BLINKM RGB LED DRIVER
1612M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1613S: Maintained
1614F: drivers/leds/leds-blinkm.c
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001617M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001618T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Joern Engel2b54aae2008-02-06 01:38:02 -08001622BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001623M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001624L: linux-mtd@lists.infradead.org
1625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001626F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001627
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001628BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001629M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001630M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001631M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001632L: linux-bluetooth@vger.kernel.org
1633W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001634T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1635T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001637F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001640M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001641M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001642M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001643L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001644W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001645T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1646T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001648F: net/bluetooth/
1649F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001652M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001653M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001654L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001655W: http://sourceforge.net/projects/bonding/
1656S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001657F: drivers/net/bonding/
1658F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Gary Zambrano39105892006-06-22 17:26:20 -07001660BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001661M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001662L: netdev@vger.kernel.org
1663S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001664F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001665
Michael Chan948c51e2006-06-04 02:51:39 -07001666BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001667M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001668L: netdev@vger.kernel.org
1669S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001670F: drivers/net/ethernet/broadcom/bnx2.*
1671F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001672
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001673BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001674M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001675L: netdev@vger.kernel.org
1676S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001677F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001678
Stephen Warrenf680f252012-09-15 00:18:54 -06001679BROADCOM BCM2835 ARM ARCHICTURE
1680M: Stephen Warren <swarren@wwwdotorg.org>
1681L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1682T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1683S: Maintained
1684F: arch/arm/mach-bcm2835/
1685F: arch/arm/boot/dts/bcm2835*
1686F: arch/arm/configs/bcm2835_defconfig
1687F: drivers/*/*bcm2835*
1688
Michael Chan948c51e2006-06-04 02:51:39 -07001689BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001690M: Matt Carlson <mcarlson@broadcom.com>
1691M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001692L: netdev@vger.kernel.org
1693S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001694F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001695
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001696BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1697M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001698M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001699M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001700M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001701L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001702L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001703S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001704F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001705
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001706BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1707M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1708L: linux-scsi@vger.kernel.org
1709S: Supported
1710F: drivers/scsi/bnx2fc/
1711
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001712BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1713M: Rafał Miłecki <zajec5@gmail.com>
1714L: linux-wireless@vger.kernel.org
1715S: Maintained
1716F: drivers/bcma/
1717F: include/linux/bcma/
1718
Jing Huang7725ccf2009-09-23 17:46:15 -07001719BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001720M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001721L: linux-scsi@vger.kernel.org
1722S: Supported
1723F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001724
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001725BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1726M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001727L: netdev@vger.kernel.org
1728S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001729F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001730
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001731BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001732M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001733L: linux-scsi@vger.kernel.org
1734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001735F: block/bsg.c
1736F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001737
Clemens Ladischaf399172011-01-10 16:32:54 +01001738BT87X AUDIO DRIVER
1739M: Clemens Ladisch <clemens@ladisch.de>
1740L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1741T: git git://git.alsa-project.org/alsa-kernel.git
1742S: Maintained
1743F: Documentation/sound/alsa/Bt87x.txt
1744F: sound/pci/bt87x.c
1745
Michael Bueschff1d5c22008-07-25 01:46:10 -07001746BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001747M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001748W: http://bu3sch.de/btgpio.php
1749S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001750F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001751
Joe Percheseb1eb042009-01-21 10:49:16 -05001752BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001753M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001754L: linux-btrfs@vger.kernel.org
1755W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001756Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001757T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001759F: Documentation/filesystems/btrfs.txt
1760F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001763M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001764L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001765W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001766T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001767S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001768F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001769F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Clemens Ladischaf399172011-01-10 16:32:54 +01001771C-MEDIA CMI8788 DRIVER
1772M: Clemens Ladisch <clemens@ladisch.de>
1773L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1774T: git git://git.alsa-project.org/alsa-kernel.git
1775S: Maintained
1776F: sound/pci/oxygen/
1777
Mark Salter21413552011-10-04 11:21:42 -04001778C6X ARCHITECTURE
1779M: Mark Salter <msalter@redhat.com>
1780M: Aurelien Jacquiot <a-jacquiot@ti.com>
1781L: linux-c6x-dev@linux-c6x.org
1782W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1783S: Maintained
1784F: arch/c6x/
1785
David Howellsa5432f52009-04-20 15:46:45 +01001786CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001787M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001788L: linux-cachefs@redhat.com
1789S: Supported
1790F: Documentation/filesystems/caching/cachefiles.txt
1791F: fs/cachefiles/
1792
Jonathan Corbet77d51402007-03-22 19:44:17 -03001793CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001794M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001795L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001796T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001798F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001799F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001800
Joe Perches201b6ba2010-09-07 20:33:24 +00001801CAIF NETWORK LAYER
1802M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1803L: netdev@vger.kernel.org
1804S: Supported
1805F: Documentation/networking/caif/
1806F: drivers/net/caif/
1807F: include/linux/caif/
1808F: include/net/caif/
1809F: net/caif/
1810
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001811CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001812M: Muli Ben-Yehuda <muli@il.ibm.com>
1813M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001814L: discuss@x86-64.org
1815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001816F: arch/x86/kernel/pci-calgary_64.c
1817F: arch/x86/kernel/tce_64.c
1818F: arch/x86/include/asm/calgary.h
1819F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001821CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001822M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001823L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001824W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001825T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001826S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001827F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001828F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001829F: include/linux/can/core.h
1830F: include/linux/can/bcm.h
1831F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001832F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001833
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001834CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001835M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001836M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001837L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001838W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001839T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001840S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001841F: drivers/net/can/
1842F: include/linux/can/dev.h
1843F: include/linux/can/error.h
1844F: include/linux/can/netlink.h
1845F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001846
James Morris95d16c72012-03-16 12:05:48 +11001847CAPABILITIES
1848M: Serge Hallyn <serge.hallyn@canonical.com>
1849L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001850S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001851F: include/linux/capability.h
1852F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001853F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001854F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001855
Arnd Bergmannb8154542008-05-16 11:10:59 +02001856CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001857M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001858L: linuxppc-dev@lists.ozlabs.org
1859L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001860W: http://www.ibm.com/developerworks/power/cell/
1861S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001862F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001863F: arch/powerpc/include/asm/spu*.h
1864F: arch/powerpc/oprofile/*cell*
1865F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001866
Sage Weil9030aaf2009-10-06 11:31:15 -07001867CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001868M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001869L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001870W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001871T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001872S: Supported
1873F: Documentation/filesystems/ceph.txt
1874F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001875F: net/ceph
1876F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001877F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001878
David Vrabel18332a82008-09-17 16:34:44 +01001879CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001880L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001881S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001882F: Documentation/usb/WUSB-Design-overview.txt
1883F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001884F: drivers/usb/host/hwa-hc.c
1885F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001886F: drivers/usb/wusbcore/
1887F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001888
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001889CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001890M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001891W: http://miguelojeda.es/auxdisplay.htm
1892W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001894F: drivers/auxdisplay/cfag12864b.c
1895F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001896
1897CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001899W: http://miguelojeda.es/auxdisplay.htm
1900W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001902F: drivers/auxdisplay/cfag12864bfb.c
1903F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001904
Johannes Berg704232c2007-04-23 12:20:05 -07001905CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001906M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001907L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001908W: http://wireless.kernel.org/
1909T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1910T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001912F: include/linux/nl80211.h
1913F: include/net/cfg80211.h
1914F: net/wireless/*
1915X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001916
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001917CHAR and MISC DRIVERS
1918M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001919M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001920T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001921S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001922F: drivers/char/*
1923F: drivers/misc/*
1924
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001925CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001926M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001928F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001929
Harry Weif8407f262011-02-25 14:44:15 -08001930CHINESE DOCUMENTATION
1931M: Harry Wei <harryxiyou@gmail.com>
1932L: xiyoulinuxkernelgroup@googlegroups.com
1933L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1934S: Maintained
1935F: Documentation/zh_CN/
1936
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001937CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1938M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1939L: linux-usb@vger.kernel.org
1940S: Maintained
1941F: drivers/usb/chipidea/
1942
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001943CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001944M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001945M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001946M: Neel Patel <neepatel@cisco.com>
1947M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001948S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001949F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001950
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001951CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001952M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001953L: netdev@vger.kernel.org
1954S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001955F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001956
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001957CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001958M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001959L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001962
Timur Tabid9e9d822008-04-24 08:45:26 +10001963CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001964M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001965L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001967F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001968
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001969CLEANCACHE API
1970M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1971L: linux-kernel@vger.kernel.org
1972S: Maintained
1973F: mm/cleancache.c
1974F: include/linux/cleancache.h
1975
Russell Kingd4275352009-04-16 14:05:27 +01001976CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001977M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001978S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001979F: include/linux/clk.h
1980
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001981CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001982M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001983M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1984M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001985L: linux-scsi@vger.kernel.org
1986S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001987F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001988
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001989CMPC ACPI DRIVER
1990M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1991M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001992L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001993S: Supported
1994F: drivers/platform/x86/classmate-laptop.c
1995
Nicolas Palix74425ee2010-06-06 17:15:01 +02001996COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001997M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001998M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001999M: Nicolas Palix <nicolas.palix@imag.fr>
2000L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002001W: http://coccinelle.lip6.fr/
2002S: Supported
2003F: scripts/coccinelle/
2004F: scripts/coccicheck
2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002007M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008M: coda@cs.cmu.edu
2009L: codalist@coda.cs.cmu.edu
2010W: http://www.coda.cs.cmu.edu/
2011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002012F: Documentation/filesystems/coda.txt
2013F: fs/coda/
2014F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Mike Turquette7704add2012-05-02 18:37:45 -07002016COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002017M: Mike Turquette <mturquette@linaro.org>
2018L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2019T: git git://git.linaro.org/people/mturquette/linux.git
2020S: Maintained
2021F: drivers/clk/clk.c
2022F: drivers/clk/clk-*
2023F: include/linux/clk-pr*
2024
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002025COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002027L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002028L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002029W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002030Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002031T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002032S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002033F: Documentation/filesystems/cifs.txt
2034F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002037M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002038L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002040F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002043M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002044L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002046F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002049M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002050L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002052F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002054COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002055M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002056L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002058F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002059
Simon Arlott949be0f2007-03-06 02:47:46 -08002060CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002061M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002062L: accessrunner-general@lists.sourceforge.net
2063W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002065F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002066
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002067CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002068M: Joel Becker <jlbec@evilplan.org>
2069T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002071F: fs/configfs/
2072F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002073
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002074CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002076L: netdev@vger.kernel.org
2077S: Maintained
2078F: drivers/connector/
2079
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002080CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002081M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002082M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002083L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002084L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002085T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002087F: include/linux/cgroup*
2088F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002089F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002090
Rudolf Marekbebe4672007-05-08 17:22:02 +02002091CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002092M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002093L: lm-sensors@lm-sensors.org
2094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: Documentation/hwmon/coretemp
2096F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002099M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100W: http://www.fi.muni.cz/~kas/cosa/
2101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Florian Fainelli4371ee32009-06-01 02:43:17 -07002104CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002105M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002106L: netdev@vger.kernel.org
2107S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002108F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002111M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002112L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002113L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/cpufreq/
2116F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002121F: arch/x86/kernel/cpuid.c
2122F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002124CPU POWER MONITORING SUBSYSTEM
2125M: Dominik Brodowski <linux@dominikbrodowski.net>
2126M: Thomas Renninger <trenn@suse.de>
2127S: Maintained
2128F: tools/power/cpupower
2129
Paul Jacksoned90fb42005-09-27 21:45:37 -07002130CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002131M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002132W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002133W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002135F: Documentation/cgroups/cpusets.txt
2136F: include/linux/cpuset.h
2137F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002140W: http://sourceforge.net/projects/cramfs/
2141S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002142F: Documentation/filesystems/cramfs.txt
2143F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002146M: Mikael Starvik <starvik@axis.com>
2147M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002148L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149W: http://developer.axis.com
2150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002151F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002152F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Herbert Xu <herbert@gondor.apana.org.au>
2156M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002158T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: Documentation/crypto/
2161F: arch/*/crypto/
2162F: crypto/
2163F: drivers/crypto/
2164F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Neil Horman5b07bd52009-02-05 16:03:04 +11002166CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002167M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002168L: linux-crypto@vger.kernel.org
2169S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002170F: crypto/ansi_cprng.c
2171F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002172
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002173CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002174M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002176F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002177
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002178CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002179M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002180L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002181L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002182T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002183W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002184W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002187F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002188F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002189
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002190CX88 VIDEO4LINUX DRIVER
2191M: Mauro Carvalho Chehab <mchehab@redhat.com>
2192L: linux-media@vger.kernel.org
2193W: http://linuxtv.org
2194T: git git://linuxtv.org/media_tree.git
2195S: Odd fixes
2196F: Documentation/video4linux/cx88/
2197F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002198
Antti Palosaari91952bc2012-10-01 12:28:46 -03002199CXD2820R MEDIA DRIVER
2200M: Antti Palosaari <crope@iki.fi>
2201L: linux-media@vger.kernel.org
2202W: http://linuxtv.org/
2203W: http://palosaari.fi/linux/
2204Q: http://patchwork.linuxtv.org/project/linux-media/list/
2205T: git git://linuxtv.org/anttip/media_tree.git
2206S: Maintained
2207F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002208
Steve Wisee5ec3782008-05-20 14:06:33 -07002209CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002211L: netdev@vger.kernel.org
2212W: http://www.chelsio.com
2213S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002214F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002215
2216CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002217M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002218L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002219W: http://www.openfabrics.org
2220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002221F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002222
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002223CXGB4 ETHERNET DRIVER (CXGB4)
2224M: Dimitris Michailidis <dm@chelsio.com>
2225L: netdev@vger.kernel.org
2226W: http://www.chelsio.com
2227S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002228F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002229
2230CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2231M: Steve Wise <swise@chelsio.com>
2232L: linux-rdma@vger.kernel.org
2233W: http://www.openfabrics.org
2234S: Supported
2235F: drivers/infiniband/hw/cxgb4/
2236
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002237CXGB4VF ETHERNET DRIVER (CXGB4VF)
2238M: Casey Leedom <leedom@chelsio.com>
2239L: netdev@vger.kernel.org
2240W: http://www.chelsio.com
2241S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002242F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002243
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002244STMMAC ETHERNET DRIVER
2245M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2246L: netdev@vger.kernel.org
2247W: http://www.stlinux.com
2248S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002249F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002252M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002253L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254W: http://www.arm.linux.org.uk/
2255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002256F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002259M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002260W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002262F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002266S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002267F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002268F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002273F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002275CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002276M: Javier Martinez Canillas <javier@dowhile0.org>
2277L: linux-input@vger.kernel.org
2278S: Maintained
2279F: drivers/input/touchscreen/cyttsp*
2280F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002283M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284W: http://yaina.de/jreuter/
2285W: http://www.qsl.net/dl1bke/
2286L: linux-hams@vger.kernel.org
2287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002288F: net/ax25/af_ax25.c
2289F: net/ax25/ax25_dev.c
2290F: net/ax25/ax25_ds_*
2291F: net/ax25/ax25_in.c
2292F: net/ax25/ax25_out.c
2293F: net/ax25/ax25_timer.c
2294F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002296DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002297L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002298S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002299F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002300F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002301
2302DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002303M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002304W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002305M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002307F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002310M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Ali Akcaagac <aliakc@web.de>
2312M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002314L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315L: http://lists.twibble.org/mailman/listinfo/dc395x/
2316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002317F: Documentation/scsi/dc395x.txt
2318F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002320DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002321M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002322L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002323W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002325F: include/linux/dccp.h
2326F: include/linux/tfrc.h
2327F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330W: http://linux-decnet.sourceforge.net
2331L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002333F: Documentation/networking/decnet.txt
2334F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002339F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002341DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002342M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002343L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002345F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002348M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349W: http://www.debian.org/~dz/i8k/
2350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002351F: drivers/char/i8k.c
2352F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Doug Warzecha90563ec2005-09-06 15:17:15 -07002354DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002355M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002357F: Documentation/dcdbas.txt
2358F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002359
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002360DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002361M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002362S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002363F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002364
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002365DESIGNWARE USB3 DRD IP DRIVER
2366M: Felipe Balbi <balbi@ti.com>
2367L: linux-usb@vger.kernel.org
2368L: linux-omap@vger.kernel.org
2369T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2370S: Maintained
2371F: drivers/usb/dwc3/
2372
Kyungmin Park89d07762012-01-10 15:09:09 -08002373DEVICE FREQUENCY (DEVFREQ)
2374M: MyungJoo Ham <myungjoo.ham@samsung.com>
2375M: Kyungmin Park <kyungmin.park@samsung.com>
2376L: linux-kernel@vger.kernel.org
2377S: Maintained
2378F: drivers/devfreq/
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002381M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383S: Maintained
2384
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002385DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002386M: Alasdair Kergon <agk@redhat.com>
2387M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002388L: dm-devel@redhat.com
2389W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002390Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002391T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002393F: Documentation/device-mapper/
2394F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002395F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002396F: include/linux/device-mapper.h
2397F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002398
Guenter Roeck335d7c52011-01-26 11:45:49 -08002399DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002400M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002401L: linux-i2c@vger.kernel.org
2402S: Maintained
2403F: drivers/i2c/busses/i2c-diolan-u2c.c
2404
Randy Dunlape7839f22008-10-12 16:11:45 -07002405DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002406M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002408F: Documentation/filesystems/dnotify.txt
2409F: fs/notify/dnotify/
2410F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002413M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2415W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2416W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2417S: Maintained
2418
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002419DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002420M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: Documentation/filesystems/quota.txt
2423F: fs/quota/
2424F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Bernie Thompson702686a2012-03-01 13:52:13 -08002426DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2427M: Bernie Thompson <bernie@plugable.com>
2428L: linux-fbdev@vger.kernel.org
2429S: Maintained
2430W: http://plugable.com/category/projects/udlfb/
2431F: drivers/video/udlfb.c
2432F: include/video/udlfb.h
2433F: Documentation/fb/udlfb.txt
2434
Randy Dunlape7839f22008-10-12 16:11:45 -07002435DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002436M: Christine Caulfield <ccaulfie@redhat.com>
2437M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002438L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002439W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002440T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002442F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002443
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302444DMA BUFFER SHARING FRAMEWORK
2445M: Sumit Semwal <sumit.semwal@linaro.org>
2446S: Maintained
2447L: linux-media@vger.kernel.org
2448L: dri-devel@lists.freedesktop.org
2449L: linaro-mm-sig@lists.linaro.org
2450F: drivers/base/dma-buf*
2451F: include/linux/dma-buf*
2452F: Documentation/dma-buf-sharing.txt
2453T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2454
Dan Williamsb3e5f262007-08-07 10:26:35 -07002455DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002456M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002457M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002459F: drivers/dma/
2460F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302461T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2462T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002463
Juerg Haefligerb8250372007-06-09 10:11:16 -04002464DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002465M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002466L: lm-sensors@lm-sensors.org
2467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002468F: Documentation/hwmon/dme1737
2469F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002470
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002471DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002472M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002473L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002475F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002476
Joe Perches7d2c86b2009-04-07 20:59:01 -07002477DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002478M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002479L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002480T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002482F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486L: blinux-list@redhat.com
2487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/char/dtlk.c
2489F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002491DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002492M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002493L: linux-scsi@vger.kernel.org
2494W: http://www.adaptec.com/
2495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002496F: drivers/scsi/dpt*
2497F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002498
Philipp Reisnerb411b362009-09-25 16:07:19 -07002499DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002500P: Philipp Reisner
2501P: Lars Ellenberg
2502M: drbd-dev@lists.linbit.com
2503L: drbd-user@lists.linbit.com
2504W: http://www.drbd.org
2505T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2506T: git git://git.drbd.org/drbd-8.3.git
2507S: Supported
2508F: drivers/block/drbd/
2509F: lib/lru_cache.c
2510F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002511
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002512DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002513M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002514T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002516F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002517F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002518F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002519F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002520F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002521F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002522F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002525M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002526L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002527T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002529F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002530F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Chris Wilson8daf7472010-09-28 14:07:26 +01002532INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002533M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002534L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002535L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002536T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002537S: Supported
2538F: drivers/gpu/drm/i915
2539F: include/drm/i915*
2540
Kyungmin Park398a6d42011-11-02 11:33:16 +09002541DRM DRIVERS FOR EXYNOS
2542M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002543M: Joonyoung Shim <jy0922.shim@samsung.com>
2544M: Seung-Woo Kim <sw0312.kim@samsung.com>
2545M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002546L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002547T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002548S: Supported
2549F: drivers/gpu/drm/exynos
2550F: include/drm/exynos*
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002553M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002554L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002556F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Antti Palosaari91952bc2012-10-01 12:28:46 -03002558DVB_USB_AF9015 MEDIA DRIVER
2559M: Antti Palosaari <crope@iki.fi>
2560L: linux-media@vger.kernel.org
2561W: http://linuxtv.org/
2562W: http://palosaari.fi/linux/
2563Q: http://patchwork.linuxtv.org/project/linux-media/list/
2564T: git git://linuxtv.org/anttip/media_tree.git
2565S: Maintained
2566F: drivers/media/usb/dvb-usb-v2/af9015*
2567
2568DVB_USB_AF9035 MEDIA DRIVER
2569M: Antti Palosaari <crope@iki.fi>
2570L: linux-media@vger.kernel.org
2571W: http://linuxtv.org/
2572W: http://palosaari.fi/linux/
2573Q: http://patchwork.linuxtv.org/project/linux-media/list/
2574T: git git://linuxtv.org/anttip/media_tree.git
2575S: Maintained
2576F: drivers/media/usb/dvb-usb-v2/af9035*
2577
2578DVB_USB_ANYSEE MEDIA DRIVER
2579M: Antti Palosaari <crope@iki.fi>
2580L: linux-media@vger.kernel.org
2581W: http://linuxtv.org/
2582W: http://palosaari.fi/linux/
2583Q: http://patchwork.linuxtv.org/project/linux-media/list/
2584T: git git://linuxtv.org/anttip/media_tree.git
2585S: Maintained
2586F: drivers/media/usb/dvb-usb-v2/anysee*
2587
2588DVB_USB_AU6610 MEDIA DRIVER
2589M: Antti Palosaari <crope@iki.fi>
2590L: linux-media@vger.kernel.org
2591W: http://linuxtv.org/
2592W: http://palosaari.fi/linux/
2593Q: http://patchwork.linuxtv.org/project/linux-media/list/
2594T: git git://linuxtv.org/anttip/media_tree.git
2595S: Maintained
2596F: drivers/media/usb/dvb-usb-v2/au6610*
2597
2598DVB_USB_CE6230 MEDIA DRIVER
2599M: Antti Palosaari <crope@iki.fi>
2600L: linux-media@vger.kernel.org
2601W: http://linuxtv.org/
2602W: http://palosaari.fi/linux/
2603Q: http://patchwork.linuxtv.org/project/linux-media/list/
2604T: git git://linuxtv.org/anttip/media_tree.git
2605S: Maintained
2606F: drivers/media/usb/dvb-usb-v2/ce6230*
2607
Michael Krufkyd099dea2012-10-02 00:56:20 -03002608DVB_USB_CXUSB MEDIA DRIVER
2609M: Michael Krufky <mkrufky@linuxtv.org>
2610L: linux-media@vger.kernel.org
2611W: http://linuxtv.org/
2612W: http://github.com/mkrufky
2613Q: http://patchwork.linuxtv.org/project/linux-media/list/
2614T: git git://linuxtv.org/media_tree.git
2615S: Maintained
2616F: drivers/media/usb/dvb-usb-v2/cxusb*
2617
Antti Palosaari91952bc2012-10-01 12:28:46 -03002618DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2619M: Antti Palosaari <crope@iki.fi>
2620L: linux-media@vger.kernel.org
2621W: http://linuxtv.org/
2622W: http://palosaari.fi/linux/
2623Q: http://patchwork.linuxtv.org/project/linux-media/list/
2624T: git git://linuxtv.org/anttip/media_tree.git
2625S: Maintained
2626F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2627
2628DVB_USB_EC168 MEDIA DRIVER
2629M: Antti Palosaari <crope@iki.fi>
2630L: linux-media@vger.kernel.org
2631W: http://linuxtv.org/
2632W: http://palosaari.fi/linux/
2633Q: http://patchwork.linuxtv.org/project/linux-media/list/
2634T: git git://linuxtv.org/anttip/media_tree.git
2635S: Maintained
2636F: drivers/media/usb/dvb-usb-v2/ec168*
2637
Michael Krufky8856f5f2012-10-02 00:55:50 -03002638DVB_USB_MXL111SF MEDIA DRIVER
2639M: Michael Krufky <mkrufky@linuxtv.org>
2640L: linux-media@vger.kernel.org
2641W: http://linuxtv.org/
2642W: http://github.com/mkrufky
2643Q: http://patchwork.linuxtv.org/project/linux-media/list/
2644T: git git://linuxtv.org/mkrufky/mxl111sf.git
2645S: Maintained
2646F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2647
Antti Palosaari91952bc2012-10-01 12:28:46 -03002648DVB_USB_RTL28XXU MEDIA DRIVER
2649M: Antti Palosaari <crope@iki.fi>
2650L: linux-media@vger.kernel.org
2651W: http://linuxtv.org/
2652W: http://palosaari.fi/linux/
2653Q: http://patchwork.linuxtv.org/project/linux-media/list/
2654T: git git://linuxtv.org/anttip/media_tree.git
2655S: Maintained
2656F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2657
2658DVB_USB_V2 MEDIA DRIVER
2659M: Antti Palosaari <crope@iki.fi>
2660L: linux-media@vger.kernel.org
2661W: http://linuxtv.org/
2662W: http://palosaari.fi/linux/
2663Q: http://patchwork.linuxtv.org/project/linux-media/list/
2664T: git git://linuxtv.org/anttip/media_tree.git
2665S: Maintained
2666F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2667F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2668
Jason Baronac0ac382011-08-11 14:36:43 -04002669DYNAMIC DEBUG
2670M: Jason Baron <jbaron@redhat.com>
2671S: Maintained
2672F: lib/dynamic_debug.c
2673F: include/linux/dynamic_debug.h
2674
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002675DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002676M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002677S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002678F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002679
Antti Palosaari91952bc2012-10-01 12:28:46 -03002680E4000 MEDIA DRIVER
2681M: Antti Palosaari <crope@iki.fi>
2682L: linux-media@vger.kernel.org
2683W: http://linuxtv.org/
2684W: http://palosaari.fi/linux/
2685Q: http://patchwork.linuxtv.org/project/linux-media/list/
2686T: git git://linuxtv.org/anttip/media_tree.git
2687S: Maintained
2688F: drivers/media/tuners/e4000*
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002691M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002692L: linux-eata@i-connect.net
2693L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002695F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002698M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699L: linux-scsi@vger.kernel.org
2700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002701F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002704M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002705L: linux-eata@i-connect.net
2706L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002708F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002711M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002712L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713W: http://ebtables.sourceforge.net/
2714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002715F: include/linux/netfilter_bridge/ebt_*.h
2716F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Antti Palosaari91952bc2012-10-01 12:28:46 -03002718EC100 MEDIA DRIVER
2719M: Antti Palosaari <crope@iki.fi>
2720L: linux-media@vger.kernel.org
2721W: http://linuxtv.org/
2722W: http://palosaari.fi/linux/
2723Q: http://patchwork.linuxtv.org/project/linux-media/list/
2724T: git git://linuxtv.org/anttip/media_tree.git
2725S: Maintained
2726F: drivers/media/dvb-frontends/ec100*
2727
Michael Halcrow237fead2006-10-04 02:16:22 -07002728ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002729M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002730M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002731L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002732W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002733S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002734F: Documentation/filesystems/ecryptfs.txt
2735F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002736
Alan Coxda9bb1d2006-01-18 17:44:13 -08002737EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002738M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002739L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002740W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002742F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002743F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002744F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002745
Borislav Petkovc476c232009-05-20 20:31:58 +02002746EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002748M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002749L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002750W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002751S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002752F: drivers/edac/amd64_edac*
2753
Ralf Baechlef65aad42012-10-17 00:39:09 +02002754EDAC-CAVIUM
2755M: Ralf Baechle <ralf@linux-mips.org>
2756M: David Daney <david.daney@cavium.com>
2757L: linux-edac@vger.kernel.org
2758L: linux-mips@linux-mips.org
2759W: bluesmoke.sourceforge.net
2760S: Supported
2761F: drivers/edac/octeon_edac*
2762
Dave Peterson0e438e32006-03-26 01:38:55 -08002763EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002764M: Mark Gross <mark.gross@intel.com>
2765M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002766L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002767W: bluesmoke.sourceforge.net
2768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002769F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002770
2771EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002772M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002773L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002774W: bluesmoke.sourceforge.net
2775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002776F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002777
Douglas Thompson6bc78402007-07-19 01:50:12 -07002778EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002779M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002780L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002781W: bluesmoke.sourceforge.net
2782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002783F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002784
2785EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002786M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002787L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002788W: bluesmoke.sourceforge.net
2789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002790F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002791
2792EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002793M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002794L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002795W: bluesmoke.sourceforge.net
2796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002797F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002798
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002799EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002800M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002801L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002802W: bluesmoke.sourceforge.net
2803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002804F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002805
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002806EDAC-I7300
2807M: Mauro Carvalho Chehab <mchehab@redhat.com>
2808L: linux-edac@vger.kernel.org
2809W: bluesmoke.sourceforge.net
2810S: Maintained
2811F: drivers/edac/i7300_edac.c
2812
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002813EDAC-I7CORE
2814M: Mauro Carvalho Chehab <mchehab@redhat.com>
2815L: linux-edac@vger.kernel.org
2816W: bluesmoke.sourceforge.net
2817S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002818F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002819
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002820EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002821M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302822M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002823L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002824W: bluesmoke.sourceforge.net
2825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002826F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002827
2828EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002829M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002830L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002831W: bluesmoke.sourceforge.net
2832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002834
Dave Peterson0e438e32006-03-26 01:38:55 -08002835EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002837L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002838W: bluesmoke.sourceforge.net
2839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002841
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002842EDAC-SBRIDGE
2843M: Mauro Carvalho Chehab <mchehab@redhat.com>
2844L: linux-edac@vger.kernel.org
2845W: bluesmoke.sourceforge.net
2846S: Maintained
2847F: drivers/edac/sb_edac.c
2848
Clemens Ladischaf399172011-01-10 16:32:54 +01002849EDIROL UA-101/UA-1000 DRIVER
2850M: Clemens Ladisch <clemens@ladisch.de>
2851L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2852T: git git://git.alsa-project.org/alsa-kernel.git
2853S: Maintained
2854F: sound/usb/misc/ua101.c
2855
Matt Fleming1f7df952012-10-03 10:04:02 +01002856EXTENSIBLE FIRMWARE INTERFACE (EFI)
2857M: Matt Fleming <matt.fleming@intel.com>
2858L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002859T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002860S: Maintained
2861F: Documentation/x86/efi-stub.txt
2862F: arch/ia64/kernel/efi.c
2863F: arch/x86/boot/compressed/eboot.[ch]
2864F: arch/x86/include/asm/efi.h
2865F: arch/x86/platform/efi/*
2866F: drivers/firmware/efivars.c
2867F: include/linux/efi*.h
2868
Peter Jones85a00d92010-09-22 13:05:04 -07002869EFIFB FRAMEBUFFER DRIVER
2870L: linux-fbdev@vger.kernel.org
2871M: Peter Jones <pjones@redhat.com>
2872S: Maintained
2873F: drivers/video/efifb.c
2874
Josh Triplett0bee8d22006-07-30 03:03:58 -07002875EFS FILESYSTEM
2876W: http://aeschi.ch.eu.org/efs/
2877S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002878F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002879
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002880EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2882M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002883L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002884S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002885F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002886
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002887EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002888M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002889L: netdev@vger.kernel.org
2890S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002891F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002892
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002893EM28XX VIDEO4LINUX DRIVER
2894M: Mauro Carvalho Chehab <mchehab@redhat.com>
2895L: linux-media@vger.kernel.org
2896W: http://linuxtv.org
2897T: git git://linuxtv.org/media_tree.git
2898S: Maintained
2899F: drivers/media/usb/em28xx/
2900
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002901EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Paul Gortmaker <paul.gortmaker@windriver.com>
2903M: Matt Mackall <mpm@selenic.com>
2904M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002905L: linux-embedded@vger.kernel.org
2906S: Maintained
2907
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002908EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002909M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002910L: linux-scsi@vger.kernel.org
2911W: http://sourceforge.net/projects/lpfcxxxx
2912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002913F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002914
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002915ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002916M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002917S: Maintained
2918F: drivers/misc/cb710/
2919F: drivers/mmc/host/cb710-mmc.*
2920F: include/linux/cb710.h
2921
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002922ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2923M: Maxim Levitsky <maximlevitsky@gmail.com>
2924S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002925F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002928M: Christopher Hoover <ch@murgatroid.com>
2929M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002931F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002933EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002934M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002935S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002936T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002937F: drivers/video/s1d13xxxfb.c
2938F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002939
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002941M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002942L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002944F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002947M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002948L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002949L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002950W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002952F: include/linux/netfilter_bridge/
2953F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002958F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002961M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002962L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002964F: Documentation/filesystems/ext2.txt
2965F: fs/ext2/
2966F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002969M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002970M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002971M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002972L: linux-ext4@vger.kernel.org
2973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: Documentation/filesystems/ext3.txt
2975F: fs/ext3/
2976F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002977
2978EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002979M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002980M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002981L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002982W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002983Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002985F: Documentation/filesystems/ext4.txt
2986F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Mimi Zoharc5532b02011-08-17 18:52:24 -04002988Extended Verification Module (EVM)
2989M: Mimi Zohar <zohar@us.ibm.com>
2990S: Supported
2991F: security/integrity/evm/
2992
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002993EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2994M: MyungJoo Ham <myungjoo.ham@samsung.com>
2995M: Chanwoo Choi <cw00.choi@samsung.com>
2996L: linux-kernel@vger.kernel.org
2997S: Maintained
2998F: drivers/extcon/
2999F: Documentation/extcon/
3000
Jingoo Han0a799512012-02-06 11:30:39 +09003001EXYNOS DP DRIVER
3002M: Jingoo Han <jg1.han@samsung.com>
3003L: linux-fbdev@vger.kernel.org
3004S: Maintained
3005F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003006F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003007
Donghwa Lee33ad3912012-03-06 11:44:58 +09003008EXYNOS MIPI DISPLAY DRIVERS
3009M: Inki Dae <inki.dae@samsung.com>
3010M: Donghwa Lee <dh09.lee@samsung.com>
3011M: Kyungmin Park <kyungmin.park@samsung.com>
3012L: linux-fbdev@vger.kernel.org
3013S: Maintained
3014F: drivers/video/exynos/exynos_mipi*
3015F: include/video/exynos_mipi*
3016
Jean Delvaree53004e2006-01-09 23:26:14 +01003017F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003018M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003019L: lm-sensors@lm-sensors.org
3020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003021F: Documentation/hwmon/f71805f
3022F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003023
Michael Büscheea977e2012-04-02 12:14:32 -03003024FC0011 TUNER DRIVER
3025M: Michael Buesch <m@bues.ch>
3026L: linux-media@vger.kernel.org
3027S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003028F: drivers/media/tuners/fc0011.h
3029F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003030
Antti Palosaari91952bc2012-10-01 12:28:46 -03003031FC2580 MEDIA DRIVER
3032M: Antti Palosaari <crope@iki.fi>
3033L: linux-media@vger.kernel.org
3034W: http://linuxtv.org/
3035W: http://palosaari.fi/linux/
3036Q: http://patchwork.linuxtv.org/project/linux-media/list/
3037T: git git://linuxtv.org/anttip/media_tree.git
3038S: Maintained
3039F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Eric Paris88b2dbd2010-08-18 12:25:50 -04003041FANOTIFY
3042M: Eric Paris <eparis@redhat.com>
3043S: Maintained
3044F: fs/notify/fanotify/
3045F: include/linux/fanotify.h
3046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003048M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049W: http://www.farsite.co.uk/
3050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003051F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Akinobu Mitac5408b82007-04-23 14:41:20 -07003053FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003054M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003056F: Documentation/fault-injection/
3057F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003058
Robert Lovecae727d2010-02-16 12:16:00 -08003059FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3060M: Robert Love <robert.w.love@intel.com>
3061L: devel@open-fcoe.org
3062W: www.Open-FCoE.org
3063S: Supported
3064F: drivers/scsi/libfc/
3065F: drivers/scsi/fcoe/
3066F: include/scsi/fc/
3067F: include/scsi/libfc.h
3068F: include/scsi/libfcoe.h
3069
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003070FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003071M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003072L: linux-fsdevel@vger.kernel.org
3073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003074F: include/linux/fcntl.h
3075F: include/linux/fs.h
3076F: fs/fcntl.c
3077F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003078
3079FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003080M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003081L: linux-fsdevel@vger.kernel.org
3082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003083F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003084
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003085FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003086M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003087L: lm-sensors@lm-sensors.org
3088S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003089F: drivers/hwmon/f75375s.c
3090F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003091
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003092FIREWIRE AUDIO DRIVERS
3093M: Clemens Ladisch <clemens@ladisch.de>
3094L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3095T: git git://git.alsa-project.org/alsa-kernel.git
3096S: Maintained
3097F: sound/firewire/
3098
Stefan Richtereb86ec52012-11-03 09:25:20 +01003099FIREWIRE MEDIA DRIVERS (firedtv)
3100M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3101L: linux-media@vger.kernel.org
3102L: linux1394-devel@lists.sourceforge.net
3103T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3104S: Maintained
3105F: drivers/media/firewire/
3106
Chris Boota511ce32012-04-14 17:50:35 -07003107FIREWIRE SBP-2 TARGET
3108M: Chris Boot <bootc@bootc.net>
3109L: linux-scsi@vger.kernel.org
3110L: target-devel@vger.kernel.org
3111L: linux1394-devel@lists.sourceforge.net
3112T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3113S: Maintained
3114F: drivers/target/sbp/
3115
Joe Perches7d2c86b2009-04-07 20:59:01 -07003116FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003117M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003118L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003119W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003120T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: drivers/firewire/
3123F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003124F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003125
3126FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003127M: Ming Lei <ming.lei@canonical.com>
3128L: linux-kernel@vger.kernel.org
3129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003130F: Documentation/firmware_class/
3131F: drivers/base/firmware*.c
3132F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003133
Jiri Kosina8206f662012-05-18 13:52:29 +02003134FLOPPY DRIVER
3135M: Jiri Kosina <jkosina@suse.cz>
3136T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3137S: Odd fixes
3138F: drivers/block/floppy.c
3139
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003140FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003141M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003142W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003144F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003145
3146FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003147L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003148S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003149F: drivers/net/wan/dlci.c
3150F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003153M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003154L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003156Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003157T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003159F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003160F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003161F: drivers/video/
3162F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003163F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Zhang Wei173acc72008-03-01 07:42:48 -07003165FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003166M: Li Yang <leoli@freescale.com>
3167M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003168L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003170F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003171
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003172FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003173M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003174L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003175L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003177F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003178
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003179FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003180M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003181L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003182L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003184F: arch/arm/plat-mxc/include/mach/imxfb.h
3185F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003186
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003187FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3189M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003190L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003191L: netdev@vger.kernel.org
3192S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003193F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003194F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003195
Timur Tabid9e9d822008-04-24 08:45:26 +10003196FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003197M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003198L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003200F: arch/powerpc/sysdev/qe_lib/
3201F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003202
Joe Perchesb55ef9292009-10-26 16:49:46 -07003203FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003204M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003205L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003206L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003207S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003208F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003209
Li Yangbeaf53b2007-05-25 13:54:02 +08003210FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003211M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003212L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003213L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003214S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003215F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003216
Timur Tabid9e9d822008-04-24 08:45:26 +10003217FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003218M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003219L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003220S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003221F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003222
3223FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003224M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003225L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003226L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003227S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003228F: sound/soc/fsl/fsl*
3229F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003230
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003232M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003235F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Pavel Machek71038f52009-01-15 13:51:02 -08003237FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003238M: Pavel Machek <pavel@ucw.cz>
3239M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003240L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003241S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003242F: Documentation/power/freezing-of-tasks.txt
3243F: include/linux/freezer.h
3244F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003245
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003246FRONTSWAP API
3247M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3248L: linux-kernel@vger.kernel.org
3249S: Maintained
3250F: mm/frontswap.c
3251F: include/linux/frontswap.h
3252
David Howellsa5432f52009-04-20 15:46:45 +01003253FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003254M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003255L: linux-cachefs@redhat.com
3256S: Supported
3257F: Documentation/filesystems/caching/
3258F: fs/fscache/
3259F: include/linux/fscache*.h
3260
David Howells5ab7ffe2007-04-10 15:10:45 +01003261FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003262M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003264F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Jonathan Woithe20b93732008-06-11 10:14:56 +09303266FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303267M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003268L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003270F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303271
Heungjun Kim4da621b2011-11-11 08:05:33 -03003272FUJITSU M-5MO LS CAMERA ISP DRIVER
3273M: Kyungmin Park <kyungmin.park@samsung.com>
3274M: Heungjun Kim <riverful.kim@samsung.com>
3275L: linux-media@vger.kernel.org
3276S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003277F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003278F: include/media/m5mols.h
3279
Robert Gerlach2d24c492012-01-18 14:26:22 +01003280FUJITSU TABLET EXTRAS
3281M: Robert Gerlach <khnz@gmx.de>
3282L: platform-driver-x86@vger.kernel.org
3283S: Maintained
3284F: drivers/platform/x86/fujitsu-tablet.c
3285
Miklos Szeredi04578f12005-09-09 13:10:22 -07003286FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003287M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003288L: fuse-devel@lists.sourceforge.net
3289W: http://fuse.sourceforge.net/
3290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003291F: fs/fuse/
3292F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003295M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003297S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003298F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
3300GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003301M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302L: linux-scsi@vger.kernel.org
3303W: http://www.icp-vortex.com/
3304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003305F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003307GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003308M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003310F: drivers/i2c/busses/i2c-gpio.c
3311F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003312
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003313GENERIC GPIO I2C MULTIPLEXER DRIVER
3314M: Peter Korsgaard <peter.korsgaard@barco.com>
3315L: linux-i2c@vger.kernel.org
3316S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003317F: drivers/i2c/muxes/i2c-mux-gpio.c
3318F: include/linux/i2c-mux-gpio.h
3319F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003320
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003321GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003325F: drivers/net/wan/c101.c
3326F: drivers/net/wan/hd6457*
3327F: drivers/net/wan/hdlc*
3328F: drivers/net/wan/n2.c
3329F: drivers/net/wan/pc300too.c
3330F: drivers/net/wan/pci200syn.c
3331F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003333GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003334M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003335L: linux-arch@vger.kernel.org
3336T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3337S: Maintained
3338F: include/asm-generic
3339
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003340GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003341M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003342L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003343S: Supported
3344F: drivers/uio/uio_pci_generic.c
3345
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003346GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003347M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003348L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003349W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003350T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3351T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003352S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003353F: Documentation/filesystems/gfs2*.txt
3354F: fs/gfs2/
3355F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003356
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003357GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003358M: Hansjoerg Lipp <hjlipp@web.de>
3359M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003360L: gigaset307x-common@lists.sourceforge.net
3361W: http://gigaset307x.sourceforge.net/
3362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003363F: Documentation/isdn/README.gigaset
3364F: drivers/isdn/gigaset/
3365F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003366
Grant Likelya0dc00b2011-02-12 01:48:14 -07003367GPIO SUBSYSTEM
3368M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003369M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003370S: Maintained
3371T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003372F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003373F: drivers/gpio/
3374F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003375F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003376
Harry Wei71a6d0a2011-05-11 15:13:33 -07003377GRE DEMULTIPLEXER DRIVER
3378M: Dmitry Kozlov <xeb@mail.ru>
3379L: netdev@vger.kernel.org
3380S: Maintained
3381F: net/ipv4/gre.c
3382F: include/net/gre.h
3383
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003384GRETH 10/100/1G Ethernet MAC device driver
3385M: Kristoffer Glembo <kristoffer@gaisler.com>
3386L: netdev@vger.kernel.org
3387S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003388F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003389
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003390GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003391M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003392L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003393T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003394S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003395F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003396
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003397GSPCA GL860 SUBDRIVER
3398M: Olivier Lorin <o.lorin@laposte.net>
3399L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003400T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003401S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003402F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003403
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003404GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003406L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003407T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003408S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003409F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003410
3411GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003412M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003413L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003414T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003415S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003416F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003417
Brian Johnson261982f2009-07-19 15:58:56 -03003418GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003419M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003420L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003421T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003422S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003423F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003424
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003425GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003426M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003427L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003428T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003429S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003430F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003431
3432GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003433M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003434L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003435T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003436S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003437F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003438
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003439STK1160 USB VIDEO CAPTURE DRIVER
3440M: Ezequiel Garcia <elezegarcia@gmail.com>
3441L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003442T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003443S: Maintained
3444F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003445
Harry Wei71a6d0a2011-05-11 15:13:33 -07003446HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3447M: Frank Seidel <frank@f-seidel.de>
3448L: platform-driver-x86@vger.kernel.org
3449W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3450S: Maintained
3451F: drivers/platform/x86/hdaps.c
3452
3453HWPOISON MEMORY FAILURE HANDLING
3454M: Andi Kleen <andi@firstfloor.org>
3455L: linux-mm@kvack.org
3456T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3457S: Maintained
3458F: mm/memory-failure.c
3459F: mm/hwpoison-inject.c
3460
3461HYPERVISOR VIRTUAL CONSOLE DRIVER
3462L: linuxppc-dev@lists.ozlabs.org
3463S: Odd Fixes
3464F: drivers/tty/hvc/
3465
Michael Buesch844dd052006-06-26 00:24:59 -07003466HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003467M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003468M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003469L: lm-sensors@lm-sensors.org
3470W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003471T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003472T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003473S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003474F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003475F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003476F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003477
3478HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003479M: Matt Mackall <mpm@selenic.com>
3480M: Herbert Xu <herbert@gondor.apana.org.au>
3481S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003482F: Documentation/hw_random.txt
3483F: drivers/char/hw_random/
3484F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003485
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003486HARDWARE SPINLOCK CORE
3487M: Ohad Ben-Cohen <ohad@wizery.com>
3488S: Maintained
3489F: Documentation/hwspinlock.txt
3490F: drivers/hwspinlock/hwspinlock_*
3491F: include/linux/hwspinlock.h
3492
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003494L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003496F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Antti Palosaari91952bc2012-10-01 12:28:46 -03003498HD29L2 MEDIA DRIVER
3499M: Antti Palosaari <crope@iki.fi>
3500L: linux-media@vger.kernel.org
3501W: http://linuxtv.org/
3502W: http://palosaari.fi/linux/
3503Q: http://patchwork.linuxtv.org/project/linux-media/list/
3504T: git git://linuxtv.org/anttip/media_tree.git
3505S: Maintained
3506F: drivers/media/dvb-frontends/hd29l2*
3507
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003508HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003509M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003510L: iss_storagedev@hp.com
3511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003512F: Documentation/blockdev/cpqarray.txt
3513F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003514
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003515HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003516M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003517L: iss_storagedev@hp.com
3518S: Supported
3519F: Documentation/scsi/hpsa.txt
3520F: drivers/scsi/hpsa*.[ch]
3521F: include/linux/cciss*.h
3522
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003523HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003524M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003525L: iss_storagedev@hp.com
3526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003527F: Documentation/blockdev/cciss.txt
3528F: drivers/block/cciss*
3529F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003532L: linux-fsdevel@vger.kernel.org
3533S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003534F: Documentation/filesystems/hfs.txt
3535F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
3537HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003538M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539L: linux-nvidia@lists.surfsouth.com
3540W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003542F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003544HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003545M: Pavel Machek <pavel@ucw.cz>
3546M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003547L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003548S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003549F: arch/x86/power/
3550F: drivers/base/power/
3551F: kernel/power/
3552F: include/linux/suspend.h
3553F: include/linux/freezer.h
3554F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003555F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003556
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003557HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003558M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003559L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003560T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003562F: drivers/hid/
3563F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003564
Ingo Molnar38bed542007-02-22 09:09:34 +01003565HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003566M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003567T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003569F: Documentation/timers/
3570F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003571F: kernel/time/clockevents.c
3572F: kernel/time/tick*.*
3573F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003574F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003575F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003579S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003580F: drivers/net/hamradio/dmascc.c
3581F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003583HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003584M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003585W: http://www.highpoint-tech.com
3586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003587F: Documentation/scsi/hptiop.txt
3588F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003589
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003591M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592L: linux-hippi@sunsite.dk
3593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003594F: include/linux/hippidevice.h
3595F: include/linux/if_hippi.h
3596F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003597F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Jouni Malinenff1d2762005-05-12 22:54:16 -04003599HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003600M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003601L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003602L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003603W: http://hostap.epitest.fi/
3604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003605F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003606
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003607HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003608L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003609S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003610F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003612HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003613M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003614S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003615F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003616
Joe Perches7d2c86b2009-04-07 20:59:01 -07003617HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003618M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003620F: Documentation/timers/hpet.txt
3621F: drivers/char/hpet.c
3622F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003623
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003624HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003625M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003627F: arch/x86/kernel/hpet.c
3628F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003631M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003634F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
Joe Perches7d2c86b2009-04-07 20:59:01 -07003636HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003637M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003638W: http://www.pharscape.org
3639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003640F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003641
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003642HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003643M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003644L: linux-input@vger.kernel.org
3645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003646F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003649M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003651F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003653Hyper-V CORE AND DRIVERS
3654M: K. Y. Srinivasan <kys@microsoft.com>
3655M: Haiyang Zhang <haiyangz@microsoft.com>
3656L: devel@linuxdriverproject.org
3657S: Maintained
3658F: drivers/hv/
3659F: drivers/hid/hid-hyperv.c
3660F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003661
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003662I2C OVER PARALLEL PORT
3663M: Jean Delvare <khali@linux-fr.org>
3664L: linux-i2c@vger.kernel.org
3665S: Maintained
3666F: Documentation/i2c/busses/i2c-parport
3667F: Documentation/i2c/busses/i2c-parport-light
3668F: drivers/i2c/busses/i2c-parport.c
3669F: drivers/i2c/busses/i2c-parport-light.c
3670
3671I2C/SMBUS CONTROLLER DRIVERS FOR PC
3672M: Jean Delvare <khali@linux-fr.org>
3673L: linux-i2c@vger.kernel.org
3674S: Maintained
3675F: Documentation/i2c/busses/i2c-ali1535
3676F: Documentation/i2c/busses/i2c-ali1563
3677F: Documentation/i2c/busses/i2c-ali15x3
3678F: Documentation/i2c/busses/i2c-amd756
3679F: Documentation/i2c/busses/i2c-amd8111
3680F: Documentation/i2c/busses/i2c-i801
3681F: Documentation/i2c/busses/i2c-nforce2
3682F: Documentation/i2c/busses/i2c-piix4
3683F: Documentation/i2c/busses/i2c-sis5595
3684F: Documentation/i2c/busses/i2c-sis630
3685F: Documentation/i2c/busses/i2c-sis96x
3686F: Documentation/i2c/busses/i2c-via
3687F: Documentation/i2c/busses/i2c-viapro
3688F: drivers/i2c/busses/i2c-ali1535.c
3689F: drivers/i2c/busses/i2c-ali1563.c
3690F: drivers/i2c/busses/i2c-ali15x3.c
3691F: drivers/i2c/busses/i2c-amd756.c
3692F: drivers/i2c/busses/i2c-amd756-s4882.c
3693F: drivers/i2c/busses/i2c-amd8111.c
3694F: drivers/i2c/busses/i2c-i801.c
3695F: drivers/i2c/busses/i2c-isch.c
3696F: drivers/i2c/busses/i2c-nforce2.c
3697F: drivers/i2c/busses/i2c-nforce2-s4985.c
3698F: drivers/i2c/busses/i2c-piix4.c
3699F: drivers/i2c/busses/i2c-sis5595.c
3700F: drivers/i2c/busses/i2c-sis630.c
3701F: drivers/i2c/busses/i2c-sis96x.c
3702F: drivers/i2c/busses/i2c-via.c
3703F: drivers/i2c/busses/i2c-viapro.c
3704
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003705I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003706M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003707L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003709F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003710
Jean Delvare5b543962005-08-15 19:51:02 +02003711I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003712M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003713M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003714L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003715W: http://i2c.wiki.kernel.org/
3716T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003717T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: Documentation/i2c/
3720F: drivers/i2c/
3721F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003722F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003724I2C-TAOS-EVM DRIVER
3725M: Jean Delvare <khali@linux-fr.org>
3726L: linux-i2c@vger.kernel.org
3727S: Maintained
3728F: Documentation/i2c/busses/i2c-taos-evm
3729F: drivers/i2c/busses/i2c-taos-evm.c
3730
Till Harbaume8c76ee2007-05-01 23:26:35 +02003731I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003732M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003733L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003734W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003736F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003737
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003741F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
3743i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003744M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003745T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746S: Maintained
3747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003749M: Tony Luck <tony.luck@intel.com>
3750M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003752T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003754F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Kent Yoder956c2032012-09-07 04:17:01 +08003756IBM Power in-Nest Crypto Acceleration
3757M: Kent Yoder <key@linux.vnet.ibm.com>
3758L: linux-crypto@vger.kernel.org
3759S: Supported
3760F: drivers/crypto/nx/
3761
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003762IBM Power 842 compression accelerator
3763M: Robert Jennings <rcj@linux.vnet.ibm.com>
3764S: Supported
3765F: drivers/crypto/nx/nx-842.c
3766F: include/linux/nx842.h
3767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003769M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003771F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Santiago Leon9d348af2010-09-03 18:29:53 +00003773IBM Power Virtual Ethernet Device Driver
3774M: Santiago Leon <santil@linux.vnet.ibm.com>
3775L: netdev@vger.kernel.org
3776S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003777F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003778
Robert Jennings4b7652c2012-07-31 12:34:36 -05003779IBM Power Virtual SCSI/FC Device Drivers
3780M: Robert Jennings <rcj@linux.vnet.ibm.com>
3781L: linux-scsi@vger.kernel.org
3782S: Supported
3783F: drivers/scsi/ibmvscsi/
3784X: drivers/scsi/ibmvscsi/ibmvstgt.c
3785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786IBM ServeRAID RAID DRIVER
3787P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003788M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003791F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003793ICH LPC AND GPIO DRIVER
3794M: Peter Tyser <ptyser@xes-inc.com>
3795S: Maintained
3796F: drivers/mfd/lpc_ich.c
3797F: drivers/gpio/gpio-ich.c
3798
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003799IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003802Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003803T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003805F: Documentation/ide/
3806F: drivers/ide/
3807F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Ike Panhc6cb8c132011-08-25 22:28:45 +08003809IDEAPAD LAPTOP EXTRAS DRIVER
3810M: Ike Panhc <ike.pan@canonical.com>
3811L: platform-driver-x86@vger.kernel.org
3812W: http://launchpad.net/ideapad-laptop
3813S: Maintained
3814F: drivers/platform/x86/ideapad-laptop.c
3815
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003816IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003817M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003818L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: Documentation/cdrom/ide-cd
3821F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Andy Henroid27471fd2008-10-09 11:45:22 -07003823IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003824M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003825L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003827F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003828
Sergey Lapin02cf2282009-06-08 12:18:50 +00003829IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003830M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003831M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003832L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003833W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003834T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003835S: Maintained
3836F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003837F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003838F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003839
Sean Young40ad4a32012-11-19 10:32:53 -03003840IGUANAWORKS USB IR TRANSCEIVER
3841M: Sean Young <sean@mess.org>
3842L: linux-media@vger.kernel.org
3843S: Maintained
3844F: drivers/media/rc/iguanair.c
3845
Ameya Palande9545f862012-01-10 09:00:58 -08003846IIO SUBSYSTEM AND DRIVERS
3847M: Jonathan Cameron <jic23@cam.ac.uk>
3848L: linux-iio@vger.kernel.org
3849S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003850F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003851F: drivers/staging/iio/
3852
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003853IKANOS/ADI EAGLE ADSL USB DRIVER
3854M: Matthieu Castet <castet.matthieu@free.fr>
3855M: Stanislaw Gruszka <stf_xl@wp.pl>
3856S: Maintained
3857F: drivers/usb/atm/ueagle-atm.c
3858
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003859INDUSTRY PACK SUBSYSTEM (IPACK)
3860M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3861M: Jens Taprogge <jens.taprogge@taprogge.org>
3862M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3863L: industrypack-devel@lists.sourceforge.net
3864W: http://industrypack.sourceforge.net
3865S: Maintained
3866F: drivers/ipack/
3867
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003868INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003869M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003870S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003871F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003872
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003874L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003875S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003876F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
3878INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003879M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003880M: Sean Hefty <sean.hefty@intel.com>
3881M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003882L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003883W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003884Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003885T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003887F: Documentation/infiniband/
3888F: drivers/infiniband/
3889F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Robert Lovec9f04f52005-07-15 12:21:07 -04003891INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003892M: John McCutchan <john@johnmccutchan.com>
3893M: Robert Love <rlove@rlove.org>
3894M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003896F: Documentation/filesystems/inotify.txt
3897F: fs/notify/inotify/
3898F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003899
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003900INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3902M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003903L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003904Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003905T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003907F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003908F: include/linux/input.h
3909F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003910
Henrik Rydberg3267a872010-06-24 19:10:40 -07003911INPUT MULTITOUCH (MT) PROTOCOL
3912M: Henrik Rydberg <rydberg@euromail.se>
3913L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003914T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003915S: Maintained
3916F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003917F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003918K: \b(ABS|SYN)_MT_
3919
Dave Jiang4ac13e12011-07-29 17:16:55 -07003920INTEL C600 SERIES SAS CONTROLLER DRIVER
3921M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003922M: Lukasz Dorau <lukasz.dorau@intel.com>
3923M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003924M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003925L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003926T: git git://git.code.sf.net/p/intel-sas/isci
3927S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003928F: drivers/scsi/isci/
3929F: firmware/isci/
3930
Len Brown26717172010-03-08 14:07:30 -05003931INTEL IDLE DRIVER
3932M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003933L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003934T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003935S: Supported
3936F: drivers/idle/intel_idle.c
3937
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003938INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003939M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003940L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003942F: Documentation/fb/intelfb.txt
3943F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003944
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003946M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003947L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003949F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303951INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003952M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003953L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303954W: http://www.lesswatts.org/projects/acpi/
3955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003956F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003959M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003961F: arch/x86/kernel/microcode_core.c
3962F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003964INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003965M: Dan Williams <djbw@fb.com>
3966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003967F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003968
David Woodhouse6c8909b2008-10-18 16:12:17 +01003969INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003970M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003971L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003972T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003973S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003974F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003975F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003976
Dan Williamsb3e5f262007-08-07 10:26:35 -07003977INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003978M: Dan Williams <djbw@fb.com>
3979S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003980F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003981
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003982INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003983M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003985F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3986F: arch/arm/mach-ixp4xx/include/mach/npe.h
3987F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3988F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003989F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003990F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003991
Michael Buesch844dd052006-06-26 00:24:59 -07003992INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003993M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003995F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003996
Jeff Kirsher0d164402010-10-05 01:15:17 +00003997INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003998M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3999M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4000M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004001M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4002M: Don Skidmore <donald.c.skidmore@intel.com>
4003M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004004M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004005M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004006M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004007M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004008L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004009W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004010W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004011T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4012T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004014F: Documentation/networking/e100.txt
4015F: Documentation/networking/e1000.txt
4016F: Documentation/networking/e1000e.txt
4017F: Documentation/networking/igb.txt
4018F: Documentation/networking/igbvf.txt
4019F: Documentation/networking/ixgb.txt
4020F: Documentation/networking/ixgbe.txt
4021F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004022F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
Len Brown6dccf9c2011-07-12 22:29:32 -04004024INTEL MRST PMU DRIVER
4025M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004026L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004027S: Supported
4028F: arch/x86/platform/mrst/pmu.*
4029
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004030INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4031M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004032L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004034F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004035F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004036F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004037
Shane Wang4bd96a72010-03-10 14:36:10 +08004038INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004039M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4040M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004041M: Shane Wang <shane.wang@intel.com>
4042L: tboot-devel@lists.sourceforge.net
4043W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004044T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004045S: Supported
4046F: Documentation/intel_txt.txt
4047F: include/linux/tboot.h
4048F: arch/x86/kernel/tboot.c
4049
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004050INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004052M: linux-wimax@intel.com
4053L: wimax@linuxwimax.org
4054S: Supported
4055W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004056F: Documentation/wimax/README.i2400m
4057F: drivers/net/wimax/i2400m/
4058F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004059
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004060INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4061M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004062L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004063S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004064F: drivers/net/wireless/iwlegacy/
4065
Zhu Yib481de92007-09-25 17:54:57 -07004066INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004067M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004068M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004069M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004070L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004071W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004072T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004074F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004075
Tomas Winklerde8fe022012-05-09 16:39:02 +03004076INTEL MANAGEMENT ENGINE (mei)
4077M: Tomas Winkler <tomas.winkler@intel.com>
4078L: linux-kernel@vger.kernel.org
4079S: Supported
4080F: include/linux/mei.h
4081F: drivers/misc/mei/*
4082F: Documentation/mei/*
4083
Ralf Baechlecb109a02007-08-30 23:56:30 -07004084IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004085M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086L: linux-mips@linux-mips.org
4087S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004088F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Ralf Baechlecb109a02007-08-30 23:56:30 -07004090IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004091M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004092L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004093S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004094F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004095
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004096IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004097M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004099F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Francois Romieu1202d6f2007-09-17 17:13:55 -07004101IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004102M: Francois Romieu <romieu@fr.zoreil.com>
4103M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004104L: netdev@vger.kernel.org
4105S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004106F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004107
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004108IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004109M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004110L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004112F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004113
Corey Minyard4409ebe2006-04-20 02:43:12 -07004114IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004116L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004117W: http://openipmi.sourceforge.net/
4118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004119F: Documentation/IPMI.txt
4120F: drivers/char/ipmi/
4121F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004122
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004123IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004125L: linux-scsi@vger.kernel.org
4126W: http://www.adaptec.com/
4127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004128F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004129
4130IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004131M: Wensong Zhang <wensong@linux-vs.org>
4132M: Simon Horman <horms@verge.net.au>
4133M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004134L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004135L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004137F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004138F: include/net/ip_vs.h
4139F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004140F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
Randy Dunlape7839f22008-10-12 16:11:45 -07004142IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004143M: Jiri Kosina <jkosina@suse.cz>
4144M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004145S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004146F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004147
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004148IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004150L: netdev@vger.kernel.org
4151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004152F: include/linux/ipx.h
4153F: include/net/ipx.h
4154F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004155
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004157M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004158L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004159L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004161S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004162T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004163F: Documentation/networking/irda.txt
4164F: drivers/net/irda/
4165F: include/net/irda/
4166F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004168IRQ SUBSYSTEM
4169M: Thomas Gleixner <tglx@linutronix.de>
4170S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004171T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004172F: kernel/irq/
4173
Grant Likely7ab3a832012-02-14 14:06:47 -07004174IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4175M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4176M: Grant Likely <grant.likely@secretlab.ca>
4177T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4178S: Maintained
4179F: Documentation/IRQ-domain.txt
4180F: include/linux/irqdomain.h
4181F: kernel/irq/irqdomain.c
4182
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004183ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004184M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004186F: Documentation/isapnp.txt
4187F: drivers/pnp/isapnp/
4188F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004189
Harry Wei71a6d0a2011-05-11 15:13:33 -07004190iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4191M: Peter Jones <pjones@redhat.com>
4192M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4193S: Maintained
4194F: drivers/firmware/iscsi_ibft*
4195
Mike Christie14816b1e2007-11-28 16:22:06 -08004196ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004197M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004198L: open-iscsi@googlegroups.com
4199W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004200T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004202F: drivers/scsi/*iscsi*
4203F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004204
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004206M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004207L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004208L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004210T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004212F: Documentation/isdn/
4213F: drivers/isdn/
4214F: include/linux/isdn.h
4215F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
4217ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004218M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004219L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220W: http://www.melware.de
4221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004222F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Jean Delvared6248702010-03-05 22:17:20 +01004224IT87 HARDWARE MONITORING DRIVER
4225M: Jean Delvare <khali@linux-fr.org>
4226L: lm-sensors@lm-sensors.org
4227S: Maintained
4228F: Documentation/hwmon/it87
4229F: drivers/hwmon/it87.c
4230
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004231IT913X MEDIA DRIVER
4232M: Malcolm Priestley <tvboxspy@gmail.com>
4233L: linux-media@vger.kernel.org
4234W: http://linuxtv.org/
4235Q: http://patchwork.linuxtv.org/project/linux-media/list/
4236S: Maintained
4237F: drivers/media/usb/dvb-usb-v2/it913x*
4238
4239IT913X FE MEDIA DRIVER
4240M: Malcolm Priestley <tvboxspy@gmail.com>
4241L: linux-media@vger.kernel.org
4242W: http://linuxtv.org/
4243Q: http://patchwork.linuxtv.org/project/linux-media/list/
4244S: Maintained
4245F: drivers/media/dvb-frontends/it913x-fe*
4246
Hans Verkuil91821ff2007-12-02 09:35:33 -03004247IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004248M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004249L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004250L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004251T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004252W: http://www.ivtvdriver.org
4253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004254F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004255F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004256F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004257
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004258IX2505V MEDIA DRIVER
4259M: Malcolm Priestley <tvboxspy@gmail.com>
4260L: linux-media@vger.kernel.org
4261W: http://linuxtv.org/
4262Q: http://patchwork.linuxtv.org/project/linux-media/list/
4263S: Maintained
4264F: drivers/media/dvb-frontends/ix2505v*
4265
Guenter Roeck4453d732010-08-09 17:21:08 -07004266JC42.4 TEMPERATURE SENSOR DRIVER
4267M: Guenter Roeck <linux@roeck-us.net>
4268L: lm-sensors@lm-sensors.org
4269S: Maintained
4270F: drivers/hwmon/jc42.c
4271F: Documentation/hwmon/jc42
4272
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004273JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004274M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004275L: jfs-discussion@lists.sourceforge.net
4276W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004277T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: Documentation/filesystems/jfs.txt
4280F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004281
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004282JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004283M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004284L: netdev@vger.kernel.org
4285S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004286F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004290L: linux-mtd@lists.infradead.org
4291W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004293F: fs/jffs2/
4294F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295
Josh Triplettde456d32006-07-30 03:04:00 -07004296JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004297M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004298M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004299L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004300S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004301F: fs/jbd/
4302F: include/linux/ext3_jbd.h
4303F: include/linux/jbd.h
4304
4305JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4306M: "Theodore Ts'o" <tytso@mit.edu>
4307L: linux-ext4@vger.kernel.org
4308S: Maintained
4309F: fs/jbd2/
4310F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004311
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004312JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004313M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004314L: linux-serial@vger.kernel.org
4315S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004316F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004317
Clemens Ladischaf399172011-01-10 16:32:54 +01004318K10TEMP HARDWARE MONITORING DRIVER
4319M: Clemens Ladisch <clemens@ladisch.de>
4320L: lm-sensors@lm-sensors.org
4321S: Maintained
4322F: Documentation/hwmon/k10temp
4323F: drivers/hwmon/k10temp.c
4324
Rudolf Marek4660cb32006-10-08 22:01:26 +02004325K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004326M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004327L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004329F: Documentation/hwmon/k8temp
4330F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
4332KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004333M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004334L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004335S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004336F: Documentation/kbuild/kconfig-language.txt
4337F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
Vivek Goyalea6c2082006-05-20 14:59:55 -07004339KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004340M: Vivek Goyal <vgoyal@redhat.com>
4341M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004342L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004343W: http://lse.sourceforge.net/kdump/
4344S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004345F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004346
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004348M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004349L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004351F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
Michal Marek70fb7ba2010-01-29 14:22:43 +01004353KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004354M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004355T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4356T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004357L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004359F: Documentation/kbuild/
4360F: Makefile
4361F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004362F: scripts/basic/
4363F: scripts/mk*
4364F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
4366KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004367L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004368W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004369S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004371KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004372M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004373L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004376F: fs/nfsd/
4377F: include/linux/nfsd/
4378F: fs/lockd/
4379F: fs/nfs_common/
4380F: net/sunrpc/
4381F: include/linux/lockd/
4382F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Avi Kivity426d62e2006-12-13 00:34:03 -08004384KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004385M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004386M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004387L: kvm@vger.kernel.org
4388W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004390F: Documentation/*/kvm.txt
4391F: arch/*/kvm/
4392F: arch/*/include/asm/kvm*
4393F: include/linux/kvm*
4394F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004395
Joerg Roedelad8003d2008-09-10 20:01:07 +02004396KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004397M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004398L: kvm@vger.kernel.org
4399W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004401F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004402F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004403
Hollis Blanchard513014b2008-04-16 23:28:08 -05004404KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004405M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004406L: kvm-ppc@vger.kernel.org
4407W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004408T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004409S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004410F: arch/powerpc/include/asm/kvm*
4411F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004412
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004413KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004414M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004415L: kvm-ia64@vger.kernel.org
4416W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004418F: Documentation/ia64/kvm.txt
4419F: arch/ia64/include/asm/kvm*
4420F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004421
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004422KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004423M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004424M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004425M: linux390@de.ibm.com
4426L: linux-s390@vger.kernel.org
4427W: http://www.ibm.com/developerworks/linux/linux390/
4428S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004429F: Documentation/s390/kvm.txt
4430F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004431F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004432F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004433
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004434KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004436W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004437L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: include/linux/kexec.h
4440F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004441
David Howellse9714612010-03-29 23:42:09 +01004442KEYS/KEYRINGS:
4443M: David Howells <dhowells@redhat.com>
4444L: keyrings@linux-nfs.org
4445S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004446F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004447F: include/linux/key.h
4448F: include/linux/key-type.h
4449F: include/keys/
4450F: security/keys/
4451
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004452KEYS-TRUSTED
4453M: David Safford <safford@watson.ibm.com>
4454M: Mimi Zohar <zohar@us.ibm.com>
4455L: linux-security-module@vger.kernel.org
4456L: keyrings@linux-nfs.org
4457S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004458F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004459F: include/keys/trusted-type.h
4460F: security/keys/trusted.c
4461F: security/keys/trusted.h
4462
4463KEYS-ENCRYPTED
4464M: Mimi Zohar <zohar@us.ibm.com>
4465M: David Safford <safford@watson.ibm.com>
4466L: linux-security-module@vger.kernel.org
4467L: keyrings@linux-nfs.org
4468S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004469F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004470F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004471F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004472
Jason Wessel5b778da2010-05-20 21:04:28 -05004473KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004474M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004475W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004476L: kgdb-bugreport@lists.sourceforge.net
4477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004478F: Documentation/DocBook/kgdb.tmpl
4479F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004480F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004481F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004482F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004483F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004484
Pekka Enberg456db8c2008-04-28 22:47:29 +03004485KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004486M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004487M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004488S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004489F: Documentation/kmemcheck.txt
4490F: arch/x86/include/asm/kmemcheck.h
4491F: arch/x86/mm/kmemcheck/
4492F: include/linux/kmemcheck.h
4493F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004494
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004495KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004496M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004497S: Maintained
4498F: Documentation/kmemleak.txt
4499F: include/linux/kmemleak.h
4500F: mm/kmemleak.c
4501F: mm/kmemleak-test.c
4502
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004503KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004504M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4505M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4506M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004507M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004509F: Documentation/kprobes.txt
4510F: include/linux/kprobes.h
4511F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004512
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004513KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004514M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004515W: http://miguelojeda.es/auxdisplay.htm
4516W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004518F: Documentation/auxdisplay/ks0108
4519F: drivers/auxdisplay/ks0108.c
4520F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004521
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004524S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004525F: Documentation/networking/lapb-module.txt
4526F: include/*/lapb.h
4527F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
4529LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004530M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531L: linux-scsi@vger.kernel.org
4532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004533F: Documentation/scsi/53c700.txt
4534F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
Richard Purdie263de9b2006-05-15 09:44:16 -07004536LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004537M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004539L: linux-leds@vger.kernel.org
4540T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004542F: drivers/leds/
4543F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004544
Jean Delvareb0461a42011-06-15 15:08:46 -07004545LEGACY EEPROM DRIVER
4546M: Jean Delvare <khali@linux-fr.org>
4547S: Maintained
4548F: Documentation/misc-devices/eeprom
4549F: drivers/misc/eeprom/eeprom.c
4550
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004552M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553L: legousb-devel@lists.sourceforge.net
4554W: http://legousb.sourceforge.net/
4555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004556F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
Michael Krufky055616a2012-10-02 00:56:06 -03004558LG2160 MEDIA DRIVER
4559M: Michael Krufky <mkrufky@linuxtv.org>
4560L: linux-media@vger.kernel.org
4561W: http://linuxtv.org/
4562W: http://github.com/mkrufky
4563Q: http://patchwork.linuxtv.org/project/linux-media/list/
4564T: git git://linuxtv.org/mkrufky/tuners.git
4565S: Maintained
4566F: drivers/media/dvb-frontends/lg2160.*
4567
Michael Krufky6f0e7722012-10-02 00:56:00 -03004568LGDT3305 MEDIA DRIVER
4569M: Michael Krufky <mkrufky@linuxtv.org>
4570L: linux-media@vger.kernel.org
4571W: http://linuxtv.org/
4572W: http://github.com/mkrufky
4573Q: http://patchwork.linuxtv.org/project/linux-media/list/
4574T: git git://linuxtv.org/mkrufky/tuners.git
4575S: Maintained
4576F: drivers/media/dvb-frontends/lgdt3305.*
4577
Rusty Russell568a17f2007-10-25 14:12:24 +10004578LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004579M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004580L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004581W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004582S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004583F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004584F: arch/x86/lguest/
4585F: drivers/lguest/
4586F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004587F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004588
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004590M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591W: http://www.ibm.com/linux/ltc/projects/ppc
4592S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004593F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004595LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004596M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4597M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004599L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004600Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004601T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004603F: Documentation/powerpc/
4604F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605
4606LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004607M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004609L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004611F: arch/powerpc/platforms/powermac/
4612F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613
Grant Likely77a76362008-07-12 12:11:43 -06004614LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004615M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004616L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004617T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004619F: arch/powerpc/platforms/512x/
4620F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
4622LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004623M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004624M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004626L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004627T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004629F: arch/powerpc/platforms/40x/
4630F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
Grant Likely260c02a2007-10-02 12:15:34 +10004632LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004633M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004634W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004635L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004636T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004638F: arch/powerpc/*/*virtex*
4639F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640
Tom Rinie93adf12005-07-26 12:49:53 -07004641LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: Vitaly Bordug <vitb@kernel.crashing.org>
4643M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004644W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004645L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004646S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004647F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004648
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004651W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004652L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004653S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004654F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004655F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656
Olof Johanssonab06ff32006-09-06 14:44:54 -05004657LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004658M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004659L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004660S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004661F: arch/powerpc/platforms/pasemi/
4662F: drivers/*/*pasemi*
4663F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004667L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668S: Supported
4669
Harry Weia23ce6d2011-02-11 16:52:20 +01004670LIS3LV02D ACCELEROMETER DRIVER
4671M: Eric Piel <eric.piel@tremplin-utc.net>
4672S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004673F: Documentation/misc-devices/lis3lv02d
4674F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004675F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004676
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004677LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004680F: include/linux/llc.h
4681F: include/net/llc*
4682F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004683
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004684LM73 HARDWARE MONITOR DRIVER
4685M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4686L: lm-sensors@lm-sensors.org
4687S: Maintained
4688F: drivers/hwmon/lm73.c
4689
Jean Delvare156e2d12011-07-25 21:46:11 +02004690LM78 HARDWARE MONITOR DRIVER
4691M: Jean Delvare <khali@linux-fr.org>
4692L: lm-sensors@lm-sensors.org
4693S: Maintained
4694F: Documentation/hwmon/lm78
4695F: drivers/hwmon/lm78.c
4696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004698M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004699L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004701F: Documentation/hwmon/lm83
4702F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
4704LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004705M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004706L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004708F: Documentation/hwmon/lm90
4709F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004711LME2510 MEDIA DRIVER
4712M: Malcolm Priestley <tvboxspy@gmail.com>
4713L: linux-media@vger.kernel.org
4714W: http://linuxtv.org/
4715Q: http://patchwork.linuxtv.org/project/linux-media/list/
4716S: Maintained
4717F: drivers/media/usb/dvb-usb-v2/lmedm04*
4718
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004719LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004720M: Peter Zijlstra <peterz@infradead.org>
4721M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004722T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004724F: Documentation/lockdep*.txt
4725F: Documentation/lockstat.txt
4726F: include/linux/lockdep.h
4727F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004728
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004729LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004730M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004731L: linux-ntfs-dev@lists.sourceforge.net
4732W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004734F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004735F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736
Joern Engelef6ada32009-11-20 22:17:12 +01004737LogFS
4738M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304739M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004740L: logfs@logfs.org
4741W: logfs.org
4742S: Maintained
4743F: fs/logfs/
4744
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004745LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304746M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4747M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004748M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004749L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004750L: linux-scsi@vger.kernel.org
4751W: http://www.lsilogic.com/support
4752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004753F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304754F: drivers/scsi/mpt2sas/
4755F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004756
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759L: linux-scsi@vger.kernel.org
4760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004761F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762
Guenter Roecke5f5c992010-06-25 11:59:54 -07004763LTC4261 HARDWARE MONITOR DRIVER
4764M: Guenter Roeck <linux@roeck-us.net>
4765L: lm-sensors@lm-sensors.org
4766S: Maintained
4767F: Documentation/hwmon/ltc4261
4768F: drivers/hwmon/ltc4261.c
4769
Mike Frysinger81365c32008-10-29 14:01:12 -07004770LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004771M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004772M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004773M: Cyril Hrubis <chrubis@suse.cz>
4774M: Caspar Zhang <caspar@casparzhang.com>
4775M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004776L: ltp-list@lists.sourceforge.net (subscribers-only)
4777W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004778T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004779T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004780S: Maintained
4781
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004782M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004783M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004784L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004785L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4786W: http://www.linux-m32r.org/
4787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004788F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004789
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004791M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792L: linux-m68k@lists.linux-m68k.org
4793W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004794T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004796F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004797F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004802L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004804F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
4806M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004807M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808W: http://www.tazenda.demon.co.uk/phil/linux-hp
4809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004810F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004812M88RS2000 MEDIA DRIVER
4813M: Malcolm Priestley <tvboxspy@gmail.com>
4814L: linux-media@vger.kernel.org
4815W: http://linuxtv.org/
4816Q: http://patchwork.linuxtv.org/project/linux-media/list/
4817S: Maintained
4818F: drivers/media/dvb-frontends/m88rs2000*
4819
Jiri Benc64a327a2007-05-05 11:47:08 -07004820MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004821M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004822L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004823W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004824T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4825T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: Documentation/networking/mac80211-injection.txt
4828F: include/net/mac80211.h
4829F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004830
Stefano Brivio1036d862007-12-23 04:46:27 +01004831MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004832M: Stefano Brivio <stefano.brivio@polimi.it>
4833M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004834L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004835W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004836T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4837T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004839F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004840
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004841MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004842M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004843L: netdev@vger.kernel.org
4844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004845F: drivers/net/macvlan.c
4846F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004847
Michael Kerriskfaf16682005-07-31 22:34:47 -07004848MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004849M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004850W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004851L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004852S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004853
stephen hemminger44c14c12012-04-02 12:59:47 +00004854MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4855M: Mirko Lindner <mlindner@marvell.com>
4856M: Stephen Hemminger <shemminger@vyatta.com>
4857L: netdev@vger.kernel.org
4858S: Maintained
4859F: drivers/net/ethernet/marvell/sk*
4860
Stefano Brivio74cda162007-11-19 20:27:46 +01004861MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004862M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004863L: libertas-dev@lists.infradead.org
4864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004865F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004866
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004867MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004868M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004869L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004870S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004871F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004872F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004874MARVELL MVNETA ETHERNET DRIVER
4875M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4876L: netdev@vger.kernel.org
4877S: Maintained
4878F: drivers/net/ethernet/marvell/mvneta.*
4879
Bing Zhaofcad5842011-07-13 13:11:58 -07004880MARVELL MWIFIEX WIRELESS DRIVER
4881M: Bing Zhao <bzhao@marvell.com>
4882L: linux-wireless@vger.kernel.org
4883S: Maintained
4884F: drivers/net/wireless/mwifiex/
4885
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004886MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004887M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004888L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004889S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004890F: drivers/net/wireless/mwl8k.c
4891
Pierre Ossman2a695672009-03-16 19:52:26 +01004892MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004893M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004894S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004895F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004896
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004898L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004899S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004900F: drivers/video/matrox/matroxfb_*
4901F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
Guenter Roeckca462082012-06-01 23:28:23 -07004903MAX16065 HARDWARE MONITOR DRIVER
4904M: Guenter Roeck <linux@roeck-us.net>
4905L: lm-sensors@lm-sensors.org
4906S: Maintained
4907F: Documentation/hwmon/max16065
4908F: drivers/hwmon/max16065.c
4909
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004910MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004911M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004912L: lm-sensors@lm-sensors.org
4913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004914F: Documentation/hwmon/max6650
4915F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004916
Joe Perches127c49a2009-04-08 08:34:04 -07004917MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004918M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004919P: LinuxTV.org Project
4920L: linux-media@vger.kernel.org
4921W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004922Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004923T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004924S: Maintained
4925F: Documentation/dvb/
4926F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004927F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004928F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004929F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004930F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004931F: include/uapi/linux/dvb/
4932F: include/uapi/linux/videodev2.h
4933F: include/uapi/linux/media.h
4934F: include/uapi/linux/v4l2-*
4935F: include/uapi/linux/meye.h
4936F: include/uapi/linux/ivtv*
4937F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004938
4939MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004940M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004941L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004942W: http://megaraid.lsilogic.com
4943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004944F: Documentation/scsi/megaraid.txt
4945F: drivers/scsi/megaraid.*
4946F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004947
Amir Vadai2c46c9d2012-12-02 03:49:21 +00004948MELLANOX ETHERNET DRIVER (mlx4_en)
4949M: Amir Vadai <amirv@mellanox.com>
4950L: netdev@vger.kernel.org
4951S: Supported
4952W: http://www.mellanox.com
4953Q: http://patchwork.ozlabs.org/project/netdev/list/
4954F: drivers/net/ethernet/mellanox/mlx4/en_*
4955
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004956MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958W: http://www.linux-mm.org
4959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004960F: include/linux/mm.h
4961F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004962
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004963MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004964M: Johannes Weiner <hannes@cmpxchg.org>
4965M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004966M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004967M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004968L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004969L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004971F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004972F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004973
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004975M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004977W: http://www.linux-mtd.infradead.org/
4978Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004979T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004981F: drivers/mtd/
4982F: include/linux/mtd/
4983F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
Michal Simekc6375b02009-03-27 14:25:52 +01004985MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004986M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004987L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004988W: http://www.monstr.eu/fdt/
4989T: git git://git.monstr.eu/linux-2.6-microblaze.git
4990S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004991F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
4993MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004994M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004996F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
4998MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005001W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005002T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005003Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005005F: Documentation/mips/
5006F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005009M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005011F: include/linux/module.h
5012F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
5014MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005016S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005017F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005018F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005019F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Pavel Pisac58ff042007-05-16 01:10:41 +02005021MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005022M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005023L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005025F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005026
Jiri Slabyb9705b62008-04-30 00:53:48 -07005027MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005028M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005030F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005031F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005032
Alexey Klimov889b2f82012-11-16 17:43:59 -03005033MR800 AVERMEDIA USB FM RADIO DRIVER
5034M: Alexey Klimov <klimov.linux@gmail.com>
5035L: linux-media@vger.kernel.org
5036T: git git://linuxtv.org/media_tree.git
5037S: Maintained
5038F: drivers/media/radio/radio-mr800.c
5039
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005040MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005041M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005042L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005045
Anisse Astier0f1006b2009-12-17 11:28:49 +01005046MSI WMI SUPPORT
5047M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005048L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005049S: Supported
5050F: drivers/platform/x86/msi-wmi.c
5051
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005052MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005053M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005054T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005056F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005057
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005058MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005059M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005060L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005061T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005063F: drivers/mmc/
5064F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005065
David Brownell15a05802007-08-08 09:12:54 -07005066MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005067S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005068F: drivers/mmc/host/mmc_spi.c
5069F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005070
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005072M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005074F: Documentation/sound/oss/MultiSound
5075F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
Jiri Slabyd7354102006-12-08 02:38:35 -08005077MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005078S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005079F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005080F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005081
Felipe Balbi550a7372008-07-24 12:27:36 +03005082MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005083M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005084L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005085T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005087F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005088
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005089MXL5007T MEDIA DRIVER
5090M: Michael Krufky <mkrufky@linuxtv.org>
5091L: linux-media@vger.kernel.org
5092W: http://linuxtv.org/
5093W: http://github.com/mkrufky
5094Q: http://patchwork.linuxtv.org/project/linux-media/list/
5095T: git git://linuxtv.org/mkrufky/tuners.git
5096S: Maintained
5097F: drivers/media/tuners/mxl5007t.*
5098
Brice Goglin2d3cf582008-05-17 12:45:36 +02005099MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005101L: netdev@vger.kernel.org
5102W: http://www.myri.com/scs/download-Myri10GE.html
5103S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005104F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005105
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005107S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005108F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
Daniel Mack23dc05a2011-05-18 11:28:38 +02005110NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5111M: Daniel Mack <zonque@gmail.com>
5112S: Maintained
5113L: alsa-devel@alsa-project.org
5114W: http://www.native-instruments.com
5115F: sound/usb/caiaq/
5116
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005118M: Petr Vandrovec <petr@vandrovec.name>
5119S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005120F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
5122NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124L: linux-scsi@vger.kernel.org
5125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005126F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005128NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005129M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005130L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005131W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005132S: Supported
5133F: drivers/infiniband/hw/nes/
5134
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005135NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005136M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005137L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005139F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005140
Jon Masonb2f5a052010-07-15 08:47:27 +00005141NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005142M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005143L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005145F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005146F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005147F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005148
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150P: Harald Welte
5151P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005152M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005153M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005154L: netfilter-devel@vger.kernel.org
5155L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005156L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157W: http://www.netfilter.org/
5158W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005159T: git git://1984.lsi.us.es/nf
5160T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005162F: include/linux/netfilter*
5163F: include/linux/netfilter/
5164F: include/net/netfilter/
5165F: net/*/netfilter.c
5166F: net/*/netfilter/
5167F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
Paul Moore4cc67732006-09-25 15:57:13 -07005169NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005170M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005171W: http://netlabel.sf.net
5172L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005173S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005174F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005175F: include/net/netlabel.h
5176F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005177
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005179M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005181W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005183F: include/linux/netrom.h
5184F: include/net/netrom.h
5185F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005187NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005188M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005190F: Documentation/blockdev/nbd.txt
5191F: drivers/block/nbd.c
5192F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
Neil Horman6e436502009-10-05 03:56:55 +00005194NETWORK DROP MONITOR
5195M: Neil Horman <nhorman@tuxdriver.com>
5196L: netdev@vger.kernel.org
5197S: Maintained
5198W: https://fedorahosted.org/dropwatch/
5199F: net/core/drop_monitor.c
5200
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005202M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005203L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005204W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005205Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005206T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5207T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005209F: net/
5210F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005211F: include/linux/in.h
5212F: include/linux/net.h
5213F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
5215NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005216M: "David S. Miller" <davem@davemloft.net>
5217M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005218M: James Morris <jmorris@namei.org>
5219M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5220M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005221L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005222T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005224F: net/ipv4/
5225F: net/ipv6/
5226F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005227F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228
David S. Miller73b76562012-10-16 14:08:40 -04005229NETWORKING [IPSEC]
5230M: Steffen Klassert <steffen.klassert@secunet.com>
5231M: Herbert Xu <herbert@gondor.apana.org.au>
5232M: "David S. Miller" <davem@davemloft.net>
5233L: netdev@vger.kernel.org
5234T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5235S: Maintained
5236F: net/xfrm/
5237F: net/key/
5238F: net/ipv4/xfrm*
5239F: net/ipv6/xfrm*
5240F: include/uapi/linux/xfrm.h
5241F: include/net/xfrm.h
5242
James Morris10e2ff12007-08-25 14:41:28 -07005243NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005244M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005245L: netdev@vger.kernel.org
5246S: Maintained
5247
John W. Linville29f8f632006-01-18 14:52:48 -08005248NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005249M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005250L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005251Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005252T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005253S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005254F: net/mac80211/
5255F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005256F: net/wireless/
5257F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005258F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005259F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005260F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005261
Joe Perches788873a2009-04-16 09:38:45 +00005262NETWORKING DRIVERS
5263L: netdev@vger.kernel.org
5264W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005265Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005266T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5267T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005268S: Odd Fixes
5269F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005270F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005271F: include/linux/netdevice.h
5272F: include/linux/arcdevice.h
5273F: include/linux/etherdevice.h
5274F: include/linux/fcdevice.h
5275F: include/linux/fddidevice.h
5276F: include/linux/hippidevice.h
5277F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005278
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005279NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005280M: Sony Chacko <sony.chacko@qlogic.com>
5281M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005282L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005283W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005284S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005285F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005286
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005287NFC SUBSYSTEM
5288M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5289M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5290M: Samuel Ortiz <sameo@linux.intel.com>
5291L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005292L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005293S: Maintained
5294F: net/nfc/
5295F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005296F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005297F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005298F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005300NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005301M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005302L: linux-nfs@vger.kernel.org
5303W: http://client.linux-nfs.org
5304T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005306F: fs/lockd/
5307F: fs/nfs/
5308F: fs/nfs_common/
5309F: net/sunrpc/
5310F: include/linux/lockd/
5311F: include/linux/nfs*
5312F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
5314NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005315M: Jan-Pascal van Best <janpascal@vanbest.org>
5316M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005317L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005319F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005321NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005322M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005323L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005324W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005325T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005326S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005327F: Documentation/filesystems/nilfs2.txt
5328F: fs/nilfs2/
5329F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005330
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005332M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005335F: Documentation/scsi/NinjaSCSI.txt
5336F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
5338NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005339M: GOTO Masanori <gotom@debian.or.jp>
5340M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005343F: Documentation/scsi/NinjaSCSI.txt
5344F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005347M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005349W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005350T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005352F: Documentation/filesystems/ntfs.txt
5353F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005355NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005356M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005357L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005359F: drivers/video/riva/
5360F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361
Tony Lindgrenf5525782009-05-28 13:23:53 -07005362OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005363M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005364L: linux-omap@vger.kernel.org
5365W: http://www.muru.com/linux/omap/
5366W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005367Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005368T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005369S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005370F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005371F: drivers/i2c/busses/i2c-omap.c
5372F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005373
5374OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005375M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005376L: linux-omap@vger.kernel.org
5377S: Maintained
5378F: arch/arm/*omap*/*clock*
5379
5380OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005381M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005382L: linux-omap@vger.kernel.org
5383S: Maintained
5384F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005385F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005386
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005387OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5388M: Rajendra Nayak <rnayak@ti.com>
5389M: Paul Walmsley <paul@pwsan.com>
5390L: linux-omap@vger.kernel.org
5391S: Maintained
5392F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5393F: arch/arm/mach-omap2/powerdomain44xx.c
5394F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5395F: arch/arm/mach-omap2/clockdomain44xx.c
5396
Tony Lindgrenf5525782009-05-28 13:23:53 -07005397OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005398M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005399M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005400L: alsa-devel@alsa-project.org (subscribers-only)
5401L: linux-omap@vger.kernel.org
5402S: Maintained
5403F: sound/soc/omap/
5404
5405OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005406M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005407L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005408L: linux-omap@vger.kernel.org
5409S: Maintained
5410F: drivers/video/omap/
5411
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005412OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005413M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005414L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005415L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005416S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005417F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005418F: Documentation/arm/OMAP/DSS
5419
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005420OMAP HARDWARE SPINLOCK SUPPORT
5421M: Ohad Ben-Cohen <ohad@wizery.com>
5422L: linux-omap@vger.kernel.org
5423S: Maintained
5424F: drivers/hwspinlock/omap_hwspinlock.c
5425F: arch/arm/mach-omap2/hwspinlock.c
5426
Tony Lindgrenf5525782009-05-28 13:23:53 -07005427OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005428M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005429L: linux-omap@vger.kernel.org
5430S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005431F: drivers/mmc/host/omap.c
5432
5433OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305434M: Venkatraman S <svenkatr@ti.com>
5435L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005436L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305437S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005438F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005439
5440OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005441M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005442S: Maintained
5443F: drivers/char/hw_random/omap-rng.c
5444
Paul Walmsleyf400c822010-12-06 19:08:54 -07005445OMAP HWMOD SUPPORT
5446M: Benoît Cousson <b-cousson@ti.com>
5447M: Paul Walmsley <paul@pwsan.com>
5448L: linux-omap@vger.kernel.org
5449S: Maintained
5450F: arch/arm/mach-omap2/omap_hwmod.c
5451F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5452
5453OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5454M: Benoît Cousson <b-cousson@ti.com>
5455L: linux-omap@vger.kernel.org
5456S: Maintained
5457F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5458
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005459OMAP IMAGE SIGNAL PROCESSOR (ISP)
5460M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5461L: linux-media@vger.kernel.org
5462S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005463F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005464
Tony Lindgrenf5525782009-05-28 13:23:53 -07005465OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005466M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005467L: linux-usb@vger.kernel.org
5468L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005469T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005470S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005471F: drivers/usb/*/*omap*
5472F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005473
Kevin Hilman6d994712012-07-16 10:05:07 -07005474OMAP GPIO DRIVER
5475M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5476M: Kevin Hilman <khilman@ti.com>
5477L: linux-omap@vger.kernel.org
5478S: Maintained
5479F: drivers/gpio/gpio-omap.c
5480
Bob Copeland0ad122d2008-07-25 19:45:18 -07005481OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005482M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005483L: linux-karma-devel@lists.sourceforge.net
5484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005485F: Documentation/filesystems/omfs.txt
5486F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005487
Harald Weltec1986ee2005-11-13 16:06:29 -08005488OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005489M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005491F: drivers/char/pcmcia/cm4000_cs.c
5492F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005493
Harald Welte77c44ab2005-11-13 16:06:26 -08005494OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005495M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005498
Jonathan Corbet77d51402007-03-22 19:44:17 -03005499OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005501L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005502T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005503S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005504F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005505
Thomas Gleixner431bca72007-05-02 09:31:35 +02005506ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005507M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005508L: linux-mtd@lists.infradead.org
5509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005510F: drivers/mtd/onenand/
5511F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005512
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005514M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515L: osst-users@lists.sourceforge.net
5516L: linux-scsi@vger.kernel.org
5517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005518F: drivers/scsi/osst*
5519F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005521OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005522M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005523L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005525F: Documentation/i2c/busses/i2c-ocores
5526F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005527
Grant Likely860c44c2009-10-26 16:49:49 -07005528OPEN FIRMWARE AND FLATTENED DEVICE TREE
5529M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005530M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005531L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005532W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005533T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005534S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005535F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005536F: drivers/of
5537F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005538F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005539K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005540K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005541
Jonas Bonn19f9d392011-06-04 22:00:38 +03005542OPENRISC ARCHITECTURE
5543M: Jonas Bonn <jonas@southpole.se>
5544W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005545L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005546S: Maintained
5547T: git git://openrisc.net/~jonas/linux
5548F: arch/openrisc
5549
Jesse Grossccb13522011-10-25 19:26:31 -07005550OPENVSWITCH
5551M: Jesse Gross <jesse@nicira.com>
5552L: dev@openvswitch.org
5553W: http://openvswitch.org
5554T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5555S: Maintained
5556F: net/openvswitch/
5557
Clemens Ladischaf399172011-01-10 16:32:54 +01005558OPL4 DRIVER
5559M: Clemens Ladisch <clemens@ladisch.de>
5560L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5561T: git git://git.alsa-project.org/alsa-kernel.git
5562S: Maintained
5563F: sound/drivers/opl4/
5564
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005566M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567L: oprofile-list@lists.sf.net
5568S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005569F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005570F: arch/*/oprofile/
5571F: drivers/oprofile/
5572F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005574ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005575M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005576M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005577L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5578W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005579T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005581F: Documentation/filesystems/ocfs2.txt
5582F: Documentation/filesystems/dlmfs.txt
5583F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005584
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005586L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005587W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005588W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005589S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005590F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005592OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005593M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005594M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005595L: osd-dev@open-osd.org
5596W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005597T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005598S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005599F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005600F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005601F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005602
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005603P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005604M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005605L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005606W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005608F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005609
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005610PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005611M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005612L: netdev@vger.kernel.org
5613S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005614F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005615
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005616PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005617M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005618L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005620F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005621
Steffen Klassert48fc2672010-08-13 10:10:46 -04005622PADATA PARALLEL EXECUTION MECHANISM
5623M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005624L: linux-crypto@vger.kernel.org
5625S: Maintained
5626F: kernel/padata.c
5627F: include/linux/padata.h
5628F: Documentation/padata.txt
5629
Harald Welte709ee532008-09-23 17:46:57 +02005630PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005631M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005632L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005634F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005635
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005636PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005637M: David Howells <dhowells@redhat.com>
5638M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005639L: linux-am33-list@redhat.com (moderated for non-subscribers)
5640W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005642F: Documentation/mn10300/
5643F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005644
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005646L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005647S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005648F: drivers/parport/
5649F: include/linux/parport*.h
5650F: drivers/char/ppdev.c
5651F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005653PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005654M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005655M: Chris Wright <chrisw@sous-sol.org>
5656M: Alok Kataria <akataria@vmware.com>
5657M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005658L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005660F: Documentation/ia64/paravirt_ops.txt
5661F: arch/*/kernel/paravirt*
5662F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005663
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005666L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667W: http://www.torque.net/linux-pp.html
5668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005669F: Documentation/blockdev/paride.txt
5670F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
5672PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005673M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005674M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005675L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005677Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005678T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: arch/parisc/
5681F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Jim Cromie1662d322006-10-06 00:43:59 -07005683PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005685L: lm-sensors@lm-sensors.org
5686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: Documentation/hwmon/pc87360
5688F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005689
5690PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005691M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005693F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005694
Jean Delvare1ad107f2010-08-14 21:09:00 +02005695PC87427 HARDWARE MONITORING DRIVER
5696M: Jean Delvare <khali@linux-fr.org>
5697L: lm-sensors@lm-sensors.org
5698S: Maintained
5699F: Documentation/hwmon/pc87427
5700F: drivers/hwmon/pc87427.c
5701
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005702PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005703M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005704S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005705F: drivers/leds/leds-pca9532.c
5706F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005707
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005708PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005709M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005710L: linux-i2c@vger.kernel.org
5711S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005712F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005713
Wolfram Sanga1867d32009-09-18 22:45:51 +02005714PCA9564/PCA9665 I2C BUS DRIVER
5715M: Wolfram Sang <w.sang@pengutronix.de>
5716L: linux-i2c@vger.kernel.org
5717S: Maintained
5718F: drivers/i2c/algos/i2c-algo-pca.c
5719F: drivers/i2c/busses/i2c-pca-*
5720F: include/linux/i2c-algo-pca.h
5721F: include/linux/i2c-pca-platform.h
5722
Khalid Aziz3971dae2012-04-12 12:49:13 -07005723PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005724M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005725S: Maintained
5726F: drivers/firmware/pcdp.*
5727
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005728PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005729M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005730L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005731S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005732F: Documentation/PCI/pci-error-recovery.txt
5733F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005734
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005736M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005737L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005738Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005739T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005741F: Documentation/PCI/
5742F: drivers/pci/
5743F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005746P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005747L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005748W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005749T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005751F: Documentation/pcmcia/
5752F: drivers/pcmcia/
5753F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
5755PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005756M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005757L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005759F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Steffen Klassert48fc2672010-08-13 10:10:46 -04005761PCRYPT PARALLEL CRYPTO ENGINE
5762M: Steffen Klassert <steffen.klassert@secunet.com>
5763L: linux-crypto@vger.kernel.org
5764S: Maintained
5765F: crypto/pcrypt.c
5766F: include/crypto/pcrypt.h
5767
Tejun Heoe72df0b2010-12-10 17:02:49 +01005768PER-CPU MEMORY ALLOCATOR
5769M: Tejun Heo <tj@kernel.org>
5770M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005771T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5772S: Maintained
5773F: include/linux/percpu*.h
5774F: mm/percpu*.c
5775F: arch/*/include/asm/percpu.h
5776
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005777PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005778M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: include/linux/delayacct.h
5781F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005782
Ingo Molnar57c0c152009-09-21 12:20:38 +02005783PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005784M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5785M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005786M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005787M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005788T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005789S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005790F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005791F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005792F: arch/*/kernel/perf_event*.c
5793F: arch/*/kernel/*/perf_event*.c
5794F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005795F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005796F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005797F: arch/*/kernel/perf_callchain.c
5798F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005799
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005800PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005801M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005802L: linux-abi-devel@lists.sourceforge.net
5803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005804F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005805
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005806PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005807M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005808S: Supported
5809F: Documentation/networking/phonet.txt
5810F: include/linux/phonet.h
5811F: include/net/phonet/
5812F: net/phonet/
5813
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005815M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816L: linux-mtd@lists.infradead.org
5817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005818F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819
Bruno Prémontefdbb102012-07-30 21:39:03 +02005820PICOLCD HID DRIVER
5821M: Bruno Prémont <bonbons@linux-vserver.org>
5822L: linux-input@vger.kernel.org
5823S: Maintained
5824F: drivers/hid/hid-picolcd*
5825
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005826PICOXCELL SUPPORT
5827M: Jamie Iles <jamie@jamieiles.com>
5828L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5829T: git git://github.com/jamieiles/linux-2.6-ji.git
5830S: Supported
5831F: arch/arm/mach-picoxcell
5832F: drivers/*/picoxcell*
5833F: drivers/*/*/picoxcell*
5834
Linus Walleij2744e8a2011-05-02 20:50:54 +02005835PIN CONTROL SUBSYSTEM
5836M: Linus Walleij <linus.walleij@linaro.org>
5837S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005838F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005839F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005840
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005841PIN CONTROLLER - ATMEL AT91
5842M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5843L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5844S: Maintained
5845F: drivers/pinctrl/pinctrl-at91.c
5846
Viresh Kumardeda8282012-03-28 22:27:07 +05305847PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005848M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305849L: spear-devel@list.st.com
5850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5851W: http://www.st.com/spear
5852S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005853F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305854
Peter Osterlund249a6772005-09-27 21:45:30 -07005855PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005856M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005858F: drivers/block/pktcdvd.c
5859F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005860
GuanXuetaob31d8272011-01-16 00:35:49 +08005861PKUNITY SOC DRIVERS
5862M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5863W: http://mprc.pku.edu.cn/~guanxuetao/linux
5864S: Maintained
5865T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5866F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005867F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005868F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005869F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005870
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005871PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005872M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005873L: lm-sensors@lm-sensors.org
5874W: http://www.lm-sensors.org/
5875W: http://www.roeck-us.net/linux/drivers/
5876T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5877S: Maintained
5878F: Documentation/hwmon/pmbus
5879F: drivers/hwmon/pmbus/
5880F: include/linux/i2c/pmbus.h
5881
Anil Ravindranath89a36812009-08-25 17:35:18 -07005882PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005883M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005884L: linux-scsi@vger.kernel.org
5885W: http://www.pmc-sierra.com/
5886S: Supported
5887F: drivers/scsi/pmcraid.*
5888
jack wangdbf9bfe2009-10-14 16:19:21 +08005889PMC SIERRA PM8001 DRIVER
5890M: jack_wang@usish.com
5891M: lindar_liu@usish.com
5892L: linux-scsi@vger.kernel.org
5893S: Supported
5894F: drivers/scsi/pm8001/
5895
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005898T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005900F: fs/timerfd.c
5901F: include/linux/timer*
5902F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903
Anton Vorontsov3be86142007-07-15 04:43:36 +04005904POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005905M: Anton Vorontsov <cbou@mail.ru>
5906M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005907T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005909F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005910F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005911
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005913M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005914M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005916F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917
Vitaly Wool999445d2007-01-04 13:07:03 +01005918PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005919M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005920L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005922F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005923
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005925M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926L: linux-ppp@vger.kernel.org
5927S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005928F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929
5930PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005931M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005933F: net/atm/pppoatm.c
5934F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935
5936PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005939F: drivers/net/ppp/pppoe.c
5940F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
James Chapmana6d23702007-06-27 15:53:17 -07005942PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005943M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005944S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005945F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005946F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005947
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005948PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005949M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005950W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5951L: linuxpps@ml.enneenne.com (subscribers-only)
5952S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005953F: Documentation/pps/
5954F: drivers/pps/
5955F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005956
Harry Wei71a6d0a2011-05-11 15:13:33 -07005957PPTP DRIVER
5958M: Dmitry Kozlov <xeb@mail.ru>
5959L: netdev@vger.kernel.org
5960S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005961F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005962W: http://sourceforge.net/projects/accel-pptp
5963
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005965M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966L: kpreempt-tech@lists.sourceforge.net
5967W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005969F: Documentation/preempt-locking.txt
5970F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971
5972PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005973M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005974L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005975W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005976S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005977F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005979PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005980M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005981L: linux-ide@vger.kernel.org
5982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005983F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005984
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005985PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005986M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005987L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005988L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005989S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005990F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005991
Geoff Levandf58a9d12006-11-23 00:46:51 +01005992PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005993M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005994L: linuxppc-dev@lists.ozlabs.org
5995L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005997F: arch/powerpc/boot/ps3*
5998F: arch/powerpc/include/asm/lv1call.h
5999F: arch/powerpc/include/asm/ps3*.h
6000F: arch/powerpc/platforms/ps3/
6001F: drivers/*/ps3*
6002F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006003F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006004F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006005F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006006
Jim Pariscffb4add2009-01-06 11:32:10 +00006007PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006009L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006010S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006011F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006012
Anton Vorontsov8defe592012-08-03 18:07:20 -07006013PSTORE FILESYSTEM
6014M: Anton Vorontsov <cbouatmailru@gmail.com>
6015M: Colin Cross <ccross@android.com>
6016M: Kees Cook <keescook@chromium.org>
6017M: Tony Luck <tony.luck@intel.com>
6018S: Maintained
6019T: git git://git.infradead.org/users/cbou/linux-pstore.git
6020F: fs/pstore/
6021F: include/linux/pstore*
6022F: drivers/firmware/efivars.c
6023F: drivers/acpi/apei/erst.c
6024
Richard Cochran7fbc4152012-03-10 01:55:53 +00006025PTP HARDWARE CLOCK SUPPORT
6026M: Richard Cochran <richardcochran@gmail.com>
6027S: Maintained
6028W: http://linuxptp.sourceforge.net/
6029F: Documentation/ABI/testing/sysfs-ptp
6030F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006031F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006032F: drivers/net/phy/dp83640*
6033F: drivers/ptp/*
6034F: include/linux/ptp_cl*
6035
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006036PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006037M: Roland McGrath <roland@redhat.com>
6038M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006039S: Maintained
6040F: include/asm-generic/syscall.h
6041F: include/linux/ptrace.h
6042F: include/linux/regset.h
6043F: include/linux/tracehook.h
6044F: kernel/ptrace.c
6045
Michael Krufky83202042006-07-03 00:24:18 -07006046PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006047M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006048L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006049L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006050W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006051T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006053F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006054F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006055
Hans de Goede39532e62012-11-04 17:05:59 -03006056PWC WEBCAM DRIVER
6057M: Hans de Goede <hdegoede@redhat.com>
6058L: linux-media@vger.kernel.org
6059T: git git://linuxtv.org/media_tree.git
6060S: Maintained
6061F: drivers/media/usb/pwc/*
6062
Thierry Reding200efed2012-03-27 13:16:18 +02006063PWM SUBSYSTEM
6064M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006065L: linux-kernel@vger.kernel.org
6066S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006067W: http://gitorious.org/linux-pwm
6068T: git git://gitorious.org/linux-pwm/linux-pwm.git
6069F: Documentation/pwm.txt
6070F: Documentation/devicetree/bindings/pwm/
6071F: include/linux/pwm.h
6072F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006073F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006074F: drivers/video/backlight/pwm_bl.c
6075F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006076
Eric Miao30ec2612008-06-12 15:21:41 -07006077PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006078M: Eric Miao <eric.y.miao@gmail.com>
6079M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006080M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006081L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006082T: git git://github.com/hzhuang1/linux.git
6083T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006085F: arch/arm/mach-pxa/
6086F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006087F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006088F: drivers/usb/gadget/pxa2*
6089F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006090F: sound/arm/pxa*
6091F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006093MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006094M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006095M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006096L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006097T: git git://github.com/hzhuang1/linux.git
6098T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006099S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006100F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006101
Pierre Ossman272f1332007-05-14 21:25:26 +02006102PXA MMCI DRIVER
6103S: Orphan
6104
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006105PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006106M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006107L: rtc-linux@googlegroups.com
6108S: Maintained
6109
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006110QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006111M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006112L: linux-rdma@vger.kernel.org
6113S: Supported
6114F: drivers/infiniband/hw/qib/
6115
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006116QLOGIC QLA1280 SCSI DRIVER
6117M: Michael Reed <mdr@sgi.com>
6118L: linux-scsi@vger.kernel.org
6119S: Maintained
6120F: drivers/scsi/qla1280.[ch]
6121
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006123M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006124M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125L: linux-scsi@vger.kernel.org
6126S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006127F: Documentation/scsi/LICENSE.qla2xxx
6128F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
Ravi Anand883c98f2010-04-28 11:45:49 +05306130QLOGIC QLA4XXX iSCSI DRIVER
6131M: Ravi Anand <ravi.anand@qlogic.com>
6132M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6133M: iscsi-driver@qlogic.com
6134L: linux-scsi@vger.kernel.org
6135S: Supported
6136F: drivers/scsi/qla4xxx/
6137
Ron Mercer5a4faa872006-07-25 00:40:21 -07006138QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006139M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006141M: linux-driver@qlogic.com
6142L: netdev@vger.kernel.org
6143S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006144F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006145F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006146
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006147QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006148M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006149M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006150M: linux-driver@qlogic.com
6151L: netdev@vger.kernel.org
6152S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006153F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006154
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006155QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006156M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006157M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006158M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006159L: netdev@vger.kernel.org
6160S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006161F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006162
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165W: http://www.alarsen.net/linux/qnx4fs/
6166S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006167F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006168F: include/linux/qnx4_fs.h
6169F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170
Antti Palosaari91952bc2012-10-01 12:28:46 -03006171QT1010 MEDIA DRIVER
6172M: Antti Palosaari <crope@iki.fi>
6173L: linux-media@vger.kernel.org
6174W: http://linuxtv.org/
6175W: http://palosaari.fi/linux/
6176Q: http://patchwork.linuxtv.org/project/linux-media/list/
6177T: git git://linuxtv.org/anttip/media_tree.git
6178S: Maintained
6179F: drivers/media/tuners/qt1010*
6180
Richard Kuo4f4567c2011-10-31 18:56:38 -05006181QUALCOMM HEXAGON ARCHITECTURE
6182M: Richard Kuo <rkuo@codeaurora.org>
6183L: linux-hexagon@vger.kernel.org
6184S: Supported
6185F: arch/hexagon/
6186
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006187RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006188M: Yehuda Sadeh <yehuda@inktank.com>
6189M: Sage Weil <sage@inktank.com>
6190M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006191M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006192W: http://ceph.com/
6193T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006194S: Supported
6195F: drivers/block/rbd.c
6196F: drivers/block/rbd_types.h
6197
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006199M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006200L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006202F: drivers/video/aty/radeon*
6203F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204
Hans de Goedec6c9b342012-11-04 17:03:58 -03006205RADIOSHARK RADIO DRIVER
6206M: Hans de Goede <hdegoede@redhat.com>
6207L: linux-media@vger.kernel.org
6208T: git git://linuxtv.org/media_tree.git
6209S: Maintained
6210F: drivers/media/radio/radio-shark.c
6211
6212RADIOSHARK2 RADIO DRIVER
6213M: Hans de Goede <hdegoede@redhat.com>
6214L: linux-media@vger.kernel.org
6215T: git git://linuxtv.org/media_tree.git
6216S: Maintained
6217F: drivers/media/radio/radio-shark2.c
6218F: drivers/media/radio/radio-tea5777.c
6219
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006221M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006222L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006224F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
Randy Dunlape7839f22008-10-12 16:11:45 -07006226RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006227P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006228M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006229M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006230M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006231L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006232L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006233W: http://rt2x00.serialmonkey.com/
6234S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006235T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006236F: drivers/net/wireless/rt2x00/
6237
Nick Piggin9db55792008-02-08 04:19:49 -08006238RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006239M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006241F: Documentation/blockdev/ramdisk.txt
6242F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006243
Matt Mackall9e95ce22005-04-16 15:25:56 -07006244RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006245M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006247F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006248
Matt Porter394b7012005-11-07 01:00:15 -08006249RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006250M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006251M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006253F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006254
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006255RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006256L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006257S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006258F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006259
6260RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006261M: Josh Triplett <josh@freedesktop.org>
6262M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006263S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006264T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006265F: Documentation/RCU/torture.txt
6266F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006267
Florian Fainellic1f766b2008-02-06 22:39:44 +01006268RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006269M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006270S: Maintained
6271
Florian Fainellidb17f392007-12-19 11:30:30 +01006272RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006273M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006274L: netdev@vger.kernel.org
6275S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006276F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006277
Andy Grovera09ed662009-02-24 15:30:41 +00006278RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006279M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006280L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006282F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006283
Josh Triplett595182b2006-10-04 02:17:21 -07006284READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006285M: Dipankar Sarma <dipankar@in.ibm.com>
6286M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006287W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006288S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006289T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006290F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006291X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006292F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006293F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006294X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006295
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006296REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006297M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006298L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006299Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006301F: Documentation/rtc.txt
6302F: drivers/rtc/
6303F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006304
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006306L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006308F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309
Mark Brownb83a3132011-05-11 19:59:58 +02006310REGISTER MAP ABSTRACTION
6311M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6312T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6313S: Supported
6314F: drivers/base/regmap/
6315F: include/linux/regmap.h
6316
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006317REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6318M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006319T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006320S: Maintained
6321F: drivers/remoteproc/
6322F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006323F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006324
Ivo van Doorne08976452008-04-12 19:23:55 +02006325RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006326M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006327L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006328W: http://wireless.kernel.org/
6329T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6330T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006331S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006332F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006333F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006334
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006335RICOH SMARTMEDIA/XD DRIVER
6336M: Maxim Levitsky <maximlevitsky@gmail.com>
6337S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006338F: drivers/mtd/nand/r852.c
6339F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006340
Maxim Levitsky92634122011-03-25 01:56:59 -07006341RICOH R5C592 MEMORYSTICK DRIVER
6342M: Maxim Levitsky <maximlevitsky@gmail.com>
6343S: Maintained
6344F: drivers/memstick/host/r592.*
6345
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346ROCKETPORT DRIVER
6347P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348W: http://www.comtrol.com
6349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006350F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006351F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352
6353ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006354M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006356W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006358F: include/linux/rose.h
6359F: include/net/rose.h
6360F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361
Antti Palosaari91952bc2012-10-01 12:28:46 -03006362RTL2830 MEDIA DRIVER
6363M: Antti Palosaari <crope@iki.fi>
6364L: linux-media@vger.kernel.org
6365W: http://linuxtv.org/
6366W: http://palosaari.fi/linux/
6367Q: http://patchwork.linuxtv.org/project/linux-media/list/
6368T: git git://linuxtv.org/anttip/media_tree.git
6369S: Maintained
6370F: drivers/media/dvb-frontends/rtl2830*
6371
Larry Finger59840482008-11-12 17:13:09 -06006372RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006373M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006374L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006375W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006376T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006377S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006378F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006379
Larry Finger59840482008-11-12 17:13:09 -06006380RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006381M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006382M: Hin-Tak Leung <htl10@users.sourceforge.net>
6383M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006384L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006385W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006386T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006387S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006388F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006389
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006390RTL8192CE WIRELESS DRIVER
6391M: Larry Finger <Larry.Finger@lwfinger.net>
6392M: Chaoming Li <chaoming_li@realsil.com.cn>
6393L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006394W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006395T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6396S: Maintained
6397F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006398F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006399
6400S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006401M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006402L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006404F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006405
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406S390
Joe Perches8b58be82009-07-29 15:04:30 -07006407M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6408M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006410L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006411W: http://www.ibm.com/developerworks/linux/linux390/
6412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006413F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006414F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006415F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006416F: Documentation/s390/
6417F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006418
6419S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006420M: Ursula Braun <ursula.braun@de.ibm.com>
6421M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006422M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006423L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006424W: http://www.ibm.com/developerworks/linux/linux390/
6425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006426F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006427
Felix Beckfeed9b62009-03-26 15:24:23 +01006428S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006429M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006430M: linux390@de.ibm.com
6431L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006432W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006433S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006434F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006435
Heiko Carstens5238da42006-02-11 17:56:01 -08006436S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006437M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006438M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006439L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006440W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006442F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443
Ursula Braundd96df22007-09-19 13:09:02 +02006444S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006445M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006446M: linux390@de.ibm.com
6447L: linux-s390@vger.kernel.org
6448W: http://www.ibm.com/developerworks/linux/linux390/
6449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006450F: drivers/s390/net/*iucv*
6451F: include/net/iucv/
6452F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006453
Ben Dooks4dde7f72008-06-30 22:40:38 +01006454S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006455M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006456L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006458F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006459
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006460SAA7134 VIDEO4LINUX DRIVER
6461M: Mauro Carvalho Chehab <mchehab@redhat.com>
6462L: linux-media@vger.kernel.org
6463W: http://linuxtv.org
6464T: git git://linuxtv.org/media_tree.git
6465S: Odd fixes
6466F: Documentation/video4linux/saa7134/
6467F: drivers/media/pci/saa7134/
6468
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006470M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006471L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006472T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473W: http://www.mihu.de/linux/saa7146
6474S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006475F: drivers/media/common/saa7146/
6476F: drivers/media/pci/saa7146/
6477F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478
Corentin Chary92304a42011-12-05 12:38:35 -05006479SAMSUNG LAPTOP DRIVER
6480M: Corentin Chary <corentincj@iksaif.net>
6481L: platform-driver-x86@vger.kernel.org
6482S: Maintained
6483F: drivers/platform/x86/samsung-laptop.c
6484
Mark Brown4a109cc2010-09-24 10:50:46 +01006485SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006486M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006487L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6488S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006489F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006490
Jingoo Han0d89a282011-12-19 11:09:35 +09006491SAMSUNG FRAMEBUFFER DRIVER
6492M: Jingoo Han <jg1.han@samsung.com>
6493L: linux-fbdev@vger.kernel.org
6494S: Maintained
6495F: drivers/video/s3c-fb.c
6496
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006497SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6498M: Sangbeom Kim <sbkim73@samsung.com>
6499L: linux-kernel@vger.kernel.org
6500S: Supported
6501F: drivers/mfd/sec*.c
6502F: drivers/regulator/s2m*.c
6503F: drivers/regulator/s5m*.c
6504F: drivers/rtc/rtc-sec.c
6505F: include/linux/mfd/samsung/
6506
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006507SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6508M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6509L: linux-media@vger.kernel.org
6510L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6511S: Maintained
6512F: drivers/media/platform/s3c-camif/
6513F: include/media/s3c_camif.h
6514
Alan Coxca749e22011-03-18 13:56:14 +00006515SERIAL DRIVERS
6516M: Alan Cox <alan@linux.intel.com>
6517L: linux-serial@vger.kernel.org
6518S: Maintained
6519F: drivers/tty/serial
6520
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306521SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006522M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306523S: Maintained
6524F: include/linux/dw_dmac.h
6525F: drivers/dma/dw_dmac_regs.h
6526F: drivers/dma/dw_dmac.c
6527
Thomas Gleixner88606e82010-12-14 21:37:13 +01006528TIMEKEEPING, NTP
6529M: John Stultz <johnstul@us.ibm.com>
6530M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006531T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006532S: Supported
6533F: include/linux/clocksource.h
6534F: include/linux/time.h
6535F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006536F: kernel/time/clocksource.c
6537F: kernel/time/time*.c
6538F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006539F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006540
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006541TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006542M: Huang Shijie <shijie8@gmail.com>
6543M: Kang Yong <kangyong@telegent.com>
6544M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006545S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006546F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006547
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006549M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006551F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552
6553SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006554M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006555M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006556T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006558F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006559F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560
Chen Liqin6bcf6732009-06-13 15:24:33 +08006561SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006562M: Chen Liqin <liqin.chen@sunplusct.com>
6563M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006564W: http://www.sunplusct.com
6565S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006566F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006567
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006569M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570L: linux-scsi@vger.kernel.org
6571W: http://www.kernel.dk
6572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006573F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574
Roland Dreierfb50a832010-10-07 09:54:53 -07006575SCSI RDMA PROTOCOL (SRP) INITIATOR
6576M: David Dillow <dillowda@ornl.gov>
6577L: linux-rdma@vger.kernel.org
6578S: Supported
6579W: http://www.openfabrics.org
6580Q: http://patchwork.kernel.org/project/linux-rdma/list/
6581T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6582F: drivers/infiniband/ulp/srp/
6583F: include/scsi/srp.h
6584
Linus Torvalds1da177e2005-04-16 15:20:36 -07006585SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006586M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587L: linux-scsi@vger.kernel.org
6588W: http://www.torque.net/sg
6589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006590F: drivers/scsi/sg.c
6591F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592
6593SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006594M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006596T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6597T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6598T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006600F: drivers/scsi/
6601F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602
6603SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006604M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605L: linux-scsi@vger.kernel.org
6606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006607F: Documentation/scsi/st.txt
6608F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609
6610SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006611M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006612M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006613M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006614L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006615W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006617F: Documentation/networking/sctp.txt
6618F: include/linux/sctp.h
6619F: include/net/sctp/
6620F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621
6622SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006623M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006624S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006625F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006626F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006627F: drivers/watchdog/scx200_wdt.c
6628F: drivers/i2c/busses/scx200*
6629F: drivers/mtd/maps/scx200_docflash.c
6630F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006631
6632SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006633M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006635F: drivers/char/scx200_gpio.c
6636F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006637
6638SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006639M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006641F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642
Sascha Sommer6a369132008-07-15 14:21:29 +02006643SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006644M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006645L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006647F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006648
Randy Dunlape7839f22008-10-12 16:11:45 -07006649SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006650M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006651L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006652T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6653S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006654F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006655F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006656
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006657SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006658M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006659L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006660L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006662F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663
Ben Dooks0d1bb412009-06-14 13:52:37 +01006664SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006665M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006666L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006667S: Maintained
6668F: drivers/mmc/host/sdhci-s3c.c
6669
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006670SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006671M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006672L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006673L: linux-mmc@vger.kernel.org
6674S: Maintained
6675F: drivers/mmc/host/sdhci-spear.c
6676
James Morris8711cca2008-12-04 03:19:45 +11006677SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006678M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006679L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006680T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006681W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006682S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006683F: security/
James Morris8711cca2008-12-04 03:19:45 +11006684
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006686M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687S: Supported
6688
6689SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006690M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006691M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006692M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006693L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006694W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006695T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006697F: include/linux/selinux*
6698F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006699F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700
John Johansenc1c124e2010-07-29 14:48:09 -07006701APPARMOR SECURITY MODULE
6702M: John Johansen <john.johansen@canonical.com>
6703L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6704W: apparmor.wiki.kernel.org
6705T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6706S: Supported
6707F: security/apparmor/
6708
Jiri Slabycef2cf02007-05-08 00:31:45 -07006709SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006710M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006712F: drivers/misc/phantom.c
6713F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006714
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006715SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006716M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006718T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006720F: drivers/ata/
6721F: include/linux/ata.h
6722F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306724SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006725M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006726L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006727W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006728S: Supported
6729F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306730
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006731SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006732M: Sathya Perla <sathya.perla@emulex.com>
6733M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6734M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006735L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006736W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006737S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006738F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006739
Ben Hutchings8ceee662008-04-27 12:55:59 +01006740SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006741M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006742M: Ben Hutchings <bhutchings@solarflare.com>
6743L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006744S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006745F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006746
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006747SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006748M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006750F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006751
6752SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006753M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006754L: linux-ia64@vger.kernel.org
6755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006756F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006757F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006758F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006759
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006761M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762L: linux-visws-devel@lists.sf.net
6763W: http://linux-visws.sf.net
6764S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006765F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766
Jack Steiner75312612008-08-15 00:40:42 -07006767SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006768M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006770F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006771
Len Brown6349d992009-08-14 15:07:14 -04006772SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006773M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006774L: sfi-devel@simplefirmware.org
6775W: http://simplefirmware.org/
6776T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006777S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006778F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006779F: drivers/sfi/
6780F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006781
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782SIMTEC EB110ATX (Chalice CATS)
6783P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006784P: Vincent Sanders <vince@simtec.co.uk>
6785M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786W: http://www.simtec.co.uk/products/EB110ATX/
6787S: Supported
6788
6789SIMTEC EB2410ITX (BAST)
6790P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006791P: Vincent Sanders <vince@simtec.co.uk>
6792M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793W: http://www.simtec.co.uk/products/EB2410ITX/
6794S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006795F: arch/arm/mach-s3c2410/mach-bast.c
6796F: arch/arm/mach-s3c2410/bast-ide.c
6797F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006799TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006800M: Sekhar Nori <nsekhar@ti.com>
6801M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306802L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306803T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006804Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006805S: Supported
6806F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006807F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006808
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006809TI DAVINCI SERIES MEDIA DRIVER
6810M: Manjunath Hadli <manjunath.hadli@ti.com>
6811M: Prabhakar Lad <prabhakar.lad@ti.com>
6812L: linux-media@vger.kernel.org
6813L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6814W: http://linuxtv.org/
6815Q: http://patchwork.linuxtv.org/project/linux-media/list/
6816T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6817S: Supported
6818F: drivers/media/platform/davinci/
6819F: include/media/davinci/
6820
Francois Romieu92aab3c2005-07-30 13:11:18 +02006821SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006822M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006823L: netdev@vger.kernel.org
6824S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006825F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006826
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006828M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006830L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006832F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006834SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006835M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006836L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006838F: Documentation/i2c/busses/i2c-sis96x
6839F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006840
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006842M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006845F: Documentation/fb/sisfb.txt
6846F: drivers/video/sis/
6847F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848
6849SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006850M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851W: http://www.winischhofer.at/linuxsisusbvga.shtml
6852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006853F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006855SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006856M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006857M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006858M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006859L: linux-mm@kvack.org
6860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006861F: include/linux/sl?b*.h
6862F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006863
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006864SLEEPABLE READ-COPY UPDATE (SRCU)
6865M: Lai Jiangshan <laijs@cn.fujitsu.com>
6866M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6867W: http://www.rdrop.com/users/paulmck/RCU/
6868S: Supported
6869T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6870F: include/linux/srcu*
6871F: kernel/srcu*
6872
Casey Schaufler66372842012-05-23 18:34:52 -07006873SMACK SECURITY MODULE
6874M: Casey Schaufler <casey@schaufler-ca.com>
6875L: linux-security-module@vger.kernel.org
6876W: http://schaufler-ca.com
6877T: git git://git.gitorious.org/smack-next/kernel.git
6878S: Maintained
6879F: Documentation/security/Smack.txt
6880F: security/smack/
6881
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006883M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006884S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006885F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886
Sakari Ailuse8e31622012-11-12 18:14:39 -03006887SMIA AND SMIA++ IMAGE SENSOR DRIVER
6888M: Sakari Ailus <sakari.ailus@iki.fi>
6889L: linux-media@vger.kernel.org
6890S: Maintained
6891F: drivers/media/i2c/smiapp
6892F: include/media/smiapp.h
6893F: drivers/media/i2c/smiapp-pll.c
6894F: drivers/media/i2c/smiapp-pll.h
6895
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006896SMM665 HARDWARE MONITOR DRIVER
6897M: Guenter Roeck <linux@roeck-us.net>
6898L: lm-sensors@lm-sensors.org
6899S: Maintained
6900F: Documentation/hwmon/smm665
6901F: drivers/hwmon/smm665.c
6902
Steve Glendinning9df73052010-08-14 21:08:54 +02006903SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006904M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006905L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006906S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006907F: Documentation/hwmon/emc2103
6908F: drivers/hwmon/emc2103.c
6909
Hans de Goedea98d5062011-03-21 17:59:36 +01006910SMSC SCH5627 HARDWARE MONITOR DRIVER
6911M: Hans de Goede <hdegoede@redhat.com>
6912L: lm-sensors@lm-sensors.org
6913S: Supported
6914F: Documentation/hwmon/sch5627
6915F: drivers/hwmon/sch5627.c
6916
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006917SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006918M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006919L: lm-sensors@lm-sensors.org
6920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006921F: Documentation/hwmon/smsc47b397
6922F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006923
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006924SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006925M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006926L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006928F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006929F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006930
Steve Glendinning2cb37722008-12-11 20:54:30 -08006931SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006932M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006933L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006934S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006935F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006936
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006937SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006938M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006939L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006940S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006941F: drivers/video/smscufx.c
6942
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006943SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006944M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006945L: linux-altix@sgi.com
6946L: linux-ia64@vger.kernel.org
6947W: http://www.sgi.com/altix
6948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006949F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006950
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006951SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006952M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006953L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006954T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006955S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006956F: include/media/soc*
6957F: drivers/media/i2c/soc_camera/
6958F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006959
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006960SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006961M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006963F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006964
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006966M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006969F: drivers/md/
6970F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006973M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006974L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006976F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977
Michael Buesch61e115a2007-09-18 15:12:50 -04006978SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006979M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006980L: netdev@vger.kernel.org
6981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006982F: drivers/ssb/
6983F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006984
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006986M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006987L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006988W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006990F: Documentation/laptops/sony-laptop.txt
6991F: drivers/char/sonypi.c
6992F: drivers/platform/x86/sony-laptop.c
6993F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994
Alex Dubovbaf85322008-02-09 10:20:54 -08006995SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006996M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006997W: http://tifmxx.berlios.de/
6998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006999F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007000
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007002M: Jaroslav Kysela <perex@perex.cz>
7003M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007004L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007005W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007006T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007007T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007009F: Documentation/sound/
7010F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007011F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012
Mark Brownbd903bd2008-11-19 19:16:05 +00007013SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007014M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007015M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007016T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007017L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007018W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007019S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007020F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007021F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007022
Sam Ravnborg473321f2009-01-04 15:47:49 -08007023SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007024M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007026Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007027T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7028T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007030F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007031F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032
David S. Miller6404fcc2010-03-16 01:00:17 -07007033SPARC SERIAL DRIVERS
7034M: "David S. Miller" <davem@davemloft.net>
7035L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007036T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7037T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007038S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007039F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007040F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007041F: drivers/tty/serial/sunhv.c
7042F: drivers/tty/serial/sunsab.c
7043F: drivers/tty/serial/sunsab.h
7044F: drivers/tty/serial/sunsu.c
7045F: drivers/tty/serial/sunzilog.c
7046F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007047
Christopher Li389325b2012-04-05 14:25:14 -07007048SPARSE CHECKER
7049M: "Christopher Li" <sparse@chrisli.org>
7050L: linux-sparse@vger.kernel.org
7051W: https://sparse.wiki.kernel.org/
7052T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7053T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7054S: Maintained
7055F: include/linux/compiler.h
7056
viresh kumarfc0c1952010-04-01 12:31:21 +01007057SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007058M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307059M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007060L: spear-devel@list.st.com
7061L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007062W: http://www.st.com/spear
7063S: Maintained
7064F: arch/arm/plat-spear/
7065
Viresh Kumar71e09a92012-04-20 22:39:48 +05307066SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007067M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307068M: Shiraz Hashim <shiraz.hashim@st.com>
7069L: spear-devel@list.st.com
7070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7071W: http://www.st.com/spear
7072S: Maintained
7073F: arch/arm/mach-spear13xx/
7074
viresh kumarfc0c1952010-04-01 12:31:21 +01007075SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007076M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307077M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007078L: spear-devel@list.st.com
7079L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007080W: http://www.st.com/spear
7081S: Maintained
7082F: arch/arm/mach-spear3xx/
7083
7084SPEAR6XX MACHINE SUPPORT
7085M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307086M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007087M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007088L: spear-devel@list.st.com
7089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007090W: http://www.st.com/spear
7091S: Maintained
7092F: arch/arm/mach-spear6xx/
7093
7094SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007095M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007096L: spear-devel@list.st.com
7097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007098W: http://www.st.com/spear
7099S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307100F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007101
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007102SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007103M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007104L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007105Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007106T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007108F: Documentation/spi/
7109F: drivers/spi/
7110F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007111
Jim Lewis2752e402006-09-29 02:01:19 -07007112SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007113M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7114M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007115L: netdev@vger.kernel.org
7116S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007117F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007118F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007119
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007120SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007121M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007122L: linuxppc-dev@lists.ozlabs.org
7123L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007124W: http://www.ibm.com/developerworks/power/cell/
7125S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007126F: Documentation/filesystems/spufs.txt
7127F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007128
Phillip Lougherfc555842009-01-05 08:46:29 +00007129SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007130M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007131L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7132W: http://squashfs.org.uk
7133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007134F: Documentation/filesystems/squashfs.txt
7135F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007136
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007138M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007140F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141
Linus Torvalds26e9a392008-10-17 09:50:12 -07007142STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007143M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007144L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007145S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007146
Linus Torvalds26e9a392008-10-17 09:50:12 -07007147STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007148M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007149T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007150L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007152F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007153
Joe Perchesc8c8b102011-07-05 09:42:12 -07007154STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7155M: Henk de Groot <pe1dnn@amsat.org>
7156S: Odd Fixes
7157F: drivers/staging/wlags49_h2/
7158F: drivers/staging/wlags49_h25/
7159
Joe Perchesc9555152011-07-05 09:42:01 -07007160STAGING - ASUS OLED
7161M: Jakub Schmidtke <sjakub@gmail.com>
7162S: Odd Fixes
7163F: drivers/staging/asus_oled/
7164
Joe Perchesebd3d012011-07-05 09:42:02 -07007165STAGING - COMEDI
7166M: Ian Abbott <abbotti@mev.co.uk>
7167M: Mori Hess <fmhess@users.sourceforge.net>
7168S: Odd Fixes
7169F: drivers/staging/comedi/
7170
Joe Perches8ca572c2011-07-05 09:42:03 -07007171STAGING - CRYSTAL HD VIDEO DECODER
7172M: Naren Sankar <nsankar@broadcom.com>
7173M: Jarod Wilson <jarod@wilsonet.com>
7174M: Scott Davilla <davilla@4pi.com>
7175M: Manu Abraham <abraham.manu@gmail.com>
7176S: Odd Fixes
7177F: drivers/staging/crystalhd/
7178
Joe Perches0f16ffc2011-07-05 09:42:04 -07007179STAGING - ECHO CANCELLER
7180M: Steve Underwood <steveu@coppice.org>
7181M: David Rowe <david@rowetel.com>
7182S: Odd Fixes
7183F: drivers/staging/echo/
7184
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007185STAGING - ET131X NETWORK DRIVER
7186M: Mark Einon <mark.einon@gmail.com>
7187S: Odd Fixes
7188F: drivers/staging/et131x/
7189
Joe Perchesa0138162011-07-05 15:21:34 -07007190STAGING - FLARION FT1000 DRIVERS
7191M: Marek Belisko <marek.belisko@gmail.com>
7192S: Odd Fixes
7193F: drivers/staging/ft1000/
7194
Joe Perchesec3fab92011-07-05 09:42:05 -07007195STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7196M: David Täht <d@teklibre.com>
7197S: Odd Fixes
7198F: drivers/staging/frontier/
7199
Joe Perches6c1bb422011-07-05 09:42:07 -07007200STAGING - INDUSTRIAL IO
7201M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007202L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007203S: Odd Fixes
7204F: drivers/staging/iio/
7205
Joe Perchesa0138162011-07-05 15:21:34 -07007206STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7207M: Jarod Wilson <jarod@wilsonet.com>
7208W: http://www.lirc.org/
7209S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007210F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007211
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007212STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007213M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007214M: Marc Dietrich <marvin24@gmx.de>
7215L: ac100@lists.launchpad.net (moderated for non-subscribers)
7216S: Maintained
7217F: drivers/staging/nvec/
7218
Joe Perchesa0138162011-07-05 15:21:34 -07007219STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7220M: Andres Salomon <dilinger@queued.net>
7221M: Chris Ball <cjb@laptop.org>
7222M: Jon Nettleton <jon.nettleton@gmail.com>
7223W: http://wiki.laptop.org/go/DCON
7224S: Odd Fixes
7225F: drivers/staging/olpc_dcon/
7226
Chris Kelly94cfdd12012-03-14 10:55:42 +00007227STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007228M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007229M: Chris Kelly <ckelly@ozmodevices.com>
7230S: Maintained
7231F: drivers/staging/ozwpan/
7232
Joe Perchesa0138162011-07-05 15:21:34 -07007233STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007234M: Willy Tarreau <willy@meta-x.org>
7235S: Odd Fixes
7236F: drivers/staging/panel/
7237
Joe Perchesa0138162011-07-05 15:21:34 -07007238STAGING - REALTEK RTL8712U DRIVERS
7239M: Larry Finger <Larry.Finger@lwfinger.net>
7240M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7241S: Odd Fixes
7242F: drivers/staging/rtl8712/
7243
Joe Perches9629fa82011-07-05 09:42:09 -07007244STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7245M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7246S: Odd Fixes
7247F: drivers/staging/sm7xx/
7248
Joe Perchesa0138162011-07-05 15:21:34 -07007249STAGING - SOFTLOGIC 6x10 MPEG CODEC
7250M: Ben Collins <bcollins@bluecherry.net>
7251S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007252F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007253
7254STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7255M: William Hubbs <w.d.hubbs@gmail.com>
7256M: Chris Brannon <chris@the-brannons.com>
7257M: Kirk Reiser <kirk@braille.uwo.ca>
7258M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7259L: speakup@braille.uwo.ca
7260W: http://www.linux-speakup.org/
7261S: Odd Fixes
7262F: drivers/staging/speakup/
7263
7264STAGING - TI DSP BRIDGE DRIVERS
7265M: Omar Ramirez Luna <omar.ramirez@ti.com>
7266S: Odd Fixes
7267F: drivers/staging/tidspbridge/
7268
Joe Perchesa0138162011-07-05 15:21:34 -07007269STAGING - USB ENE SM/MS CARD READER DRIVER
7270M: Al Cho <acho@novell.com>
7271S: Odd Fixes
7272F: drivers/staging/keucr/
7273
Joe Perchesb3e871c2011-07-05 09:42:10 -07007274STAGING - VIA VT665X DRIVERS
7275M: Forest Bond <forest@alittletooquiet.net>
7276S: Odd Fixes
7277F: drivers/staging/vt665?/
7278
Joe Perches81a9a522011-07-05 09:42:11 -07007279STAGING - WINBOND IS89C35 WLAN USB DRIVER
7280M: Pavel Machek <pavel@ucw.cz>
7281S: Odd Fixes
7282F: drivers/staging/winbond/
7283
Joe Perches709bcb02011-07-05 09:42:13 -07007284STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007285M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007286S: Odd Fixes
7287F: drivers/staging/xgifb/
7288
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007291S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007292F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007293
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007294SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007295M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007296W: http://sammy.net/sun3/
7297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007298F: arch/m68k/kernel/*sun3*
7299F: arch/m68k/sun3*/
7300F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007301F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007302
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007303SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007304M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007305L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007307Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007308T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007309S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007310F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007311F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007312F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007314SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007315M: Len Brown <len.brown@intel.com>
7316M: Pavel Machek <pavel@ucw.cz>
7317M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007318L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007320F: Documentation/power/
7321F: arch/x86/kernel/acpi/
7322F: drivers/base/power/
7323F: kernel/power/
7324F: include/linux/suspend.h
7325F: include/linux/freezer.h
7326F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327
7328SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007329M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330L: linux-video@atrey.karlin.mff.cuni.cz
7331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007332F: Documentation/svga.txt
7333F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007335SWIOTLB SUBSYSTEM
7336M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7337L: linux-kernel@vger.kernel.org
7338S: Supported
7339F: lib/swiotlb.c
7340F: arch/*/kernel/pci-swiotlb.c
7341F: include/linux/swiotlb.h
7342
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007344M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007346F: Documentation/filesystems/sysv-fs.txt
7347F: fs/sysv/
7348F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007350TARGET SUBSYSTEM
7351M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7352L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007353L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007354L: http://groups.google.com/group/linux-iscsi-target-dev
7355W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007356T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007357S: Supported
7358F: drivers/target/
7359F: include/target/
7360F: Documentation/target/
7361
Alan Cox4e688522008-04-30 00:52:11 -07007362TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007363M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007365F: Documentation/accounting/taskstats*
7366F: include/linux/taskstats*
7367F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007368
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007369TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007370M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007371L: netdev@vger.kernel.org
7372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007373F: include/linux/pkt_cls.h
7374F: include/net/pkt_cls.h
7375F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007376
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007377TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007378M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7379M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007380W: http://tcp-lp-mod.sourceforge.net/
7381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007382F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007383
Antti Palosaari91952bc2012-10-01 12:28:46 -03007384TDA10071 MEDIA DRIVER
7385M: Antti Palosaari <crope@iki.fi>
7386L: linux-media@vger.kernel.org
7387W: http://linuxtv.org/
7388W: http://palosaari.fi/linux/
7389Q: http://patchwork.linuxtv.org/project/linux-media/list/
7390T: git git://linuxtv.org/anttip/media_tree.git
7391S: Maintained
7392F: drivers/media/dvb-frontends/tda10071*
7393
7394TDA18212 MEDIA DRIVER
7395M: Antti Palosaari <crope@iki.fi>
7396L: linux-media@vger.kernel.org
7397W: http://linuxtv.org/
7398W: http://palosaari.fi/linux/
7399Q: http://patchwork.linuxtv.org/project/linux-media/list/
7400T: git git://linuxtv.org/anttip/media_tree.git
7401S: Maintained
7402F: drivers/media/tuners/tda18212*
7403
7404TDA18218 MEDIA DRIVER
7405M: Antti Palosaari <crope@iki.fi>
7406L: linux-media@vger.kernel.org
7407W: http://linuxtv.org/
7408W: http://palosaari.fi/linux/
7409Q: http://patchwork.linuxtv.org/project/linux-media/list/
7410T: git git://linuxtv.org/anttip/media_tree.git
7411S: Maintained
7412F: drivers/media/tuners/tda18218*
7413
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007414TDA18271 MEDIA DRIVER
7415M: Michael Krufky <mkrufky@linuxtv.org>
7416L: linux-media@vger.kernel.org
7417W: http://linuxtv.org/
7418W: http://github.com/mkrufky
7419Q: http://patchwork.linuxtv.org/project/linux-media/list/
7420T: git git://linuxtv.org/mkrufky/tuners.git
7421S: Maintained
7422F: drivers/media/tuners/tda18271*
7423
Michael Krufkye48307a2012-10-02 00:56:33 -03007424TDA827x MEDIA DRIVER
7425M: Michael Krufky <mkrufky@linuxtv.org>
7426L: linux-media@vger.kernel.org
7427W: http://linuxtv.org/
7428W: http://github.com/mkrufky
7429Q: http://patchwork.linuxtv.org/project/linux-media/list/
7430T: git git://linuxtv.org/mkrufky/tuners.git
7431S: Maintained
7432F: drivers/media/tuners/tda8290.*
7433
Michael Krufky66cf9212012-10-02 00:56:28 -03007434TDA8290 MEDIA DRIVER
7435M: Michael Krufky <mkrufky@linuxtv.org>
7436L: linux-media@vger.kernel.org
7437W: http://linuxtv.org/
7438W: http://github.com/mkrufky
7439Q: http://patchwork.linuxtv.org/project/linux-media/list/
7440T: git git://linuxtv.org/mkrufky/tuners.git
7441S: Maintained
7442F: drivers/media/tuners/tda8290.*
7443
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007444TEA5761 TUNER DRIVER
7445M: Mauro Carvalho Chehab <mchehab@redhat.com>
7446L: linux-media@vger.kernel.org
7447W: http://linuxtv.org
7448T: git git://linuxtv.org/media_tree.git
7449S: Odd fixes
7450F: drivers/media/tuners/tea5761.*
7451
7452TEA5767 TUNER DRIVER
7453M: Mauro Carvalho Chehab <mchehab@redhat.com>
7454L: linux-media@vger.kernel.org
7455W: http://linuxtv.org
7456T: git git://linuxtv.org/media_tree.git
7457S: Maintained
7458F: drivers/media/tuners/tea5767.*
7459
Jiri Pirko3d249d42011-11-11 22:16:48 +00007460TEAM DRIVER
7461M: Jiri Pirko <jpirko@redhat.com>
7462L: netdev@vger.kernel.org
7463S: Supported
7464F: drivers/net/team/
7465F: include/linux/if_team.h
7466
Sean Young40ad4a32012-11-19 10:32:53 -03007467TECHNOTREND USB IR RECEIVER
7468M: Sean Young <sean@mess.org>
7469L: linux-media@vger.kernel.org
7470S: Maintained
7471F: drivers/media/rc/ttusbir.c
7472
Erik Gilling84b94142010-06-09 15:35:53 -07007473TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007474M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007475L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007476Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7477T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007478S: Supported
7479F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007480F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007481F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007482
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007483TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007484M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007485L: netdev@vger.kernel.org
7486S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007487F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007488
Alan Cox4e688522008-04-30 00:52:11 -07007489Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007490M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007492F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007493
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007494TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007495M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007496M: Max Filippov <jcmvbkbc@gmail.com>
7497L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007499F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007500
Zhang Ruid3fb6952012-11-15 08:58:27 +08007501THERMAL
7502M: Zhang Rui <rui.zhang@intel.com>
7503L: linux-pm@vger.kernel.org
7504T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7505S: Supported
7506F: drivers/thermal/
7507F: include/linux/thermal.h
7508
Alan Cox4e688522008-04-30 00:52:11 -07007509THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007510M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007511L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007512L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007513W: http://ibm-acpi.sourceforge.net
7514W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007515T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007517F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007518
Alex Dubov4020f2d2006-10-04 02:15:37 -07007519TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007520M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007522F: drivers/misc/tifm*
7523F: drivers/mmc/host/tifm_sd.c
7524F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007525
M R Swami Reddy152ad442012-04-02 20:02:31 +05307526TI LM49xxx FAMILY ASoC CODEC DRIVERS
7527M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307528M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307529L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7530S: Maintained
7531F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307532F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307533
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007534TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007535M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007536L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7537S: Maintained
7538F: sound/soc/codecs/twl4030*
7539
Luciano Coelho90921012011-11-20 21:40:41 +02007540TI WILINK WIRELESS DRIVERS
7541M: Luciano Coelho <coelho@ti.com>
7542L: linux-wireless@vger.kernel.org
7543W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7544W: http://wireless.kernel.org/en/users/Drivers/wl1251
7545T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7546S: Maintained
7547F: drivers/net/wireless/ti/
7548F: include/linux/wl12xx.h
7549
Per Lidene86eaa32006-01-12 16:45:18 +01007550TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007551M: Jon Maloy <jon.maloy@ericsson.com>
7552M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007553L: netdev@vger.kernel.org (core kernel code)
7554L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007555W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007557F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007558F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007559
Chris Metcalf867e3592010-05-28 23:09:12 -04007560TILE ARCHITECTURE
7561M: Chris Metcalf <cmetcalf@tilera.com>
7562W: http://www.tilera.com/scm/
7563S: Supported
7564F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007565F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007566F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007567F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007568
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007570M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007571L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572W: http://sourceforge.net/projects/tlan/
7573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007574F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007575F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007577TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007578M: Kentaro Takeda <takedakn@nttdata.co.jp>
7579M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007580L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7581L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007582L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7583L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7584W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007585T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007587F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007588
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007589TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007590M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007591L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007592S: Maintained
7593F: drivers/platform/x86/topstar-laptop.c
7594
Linus Torvalds1da177e2005-04-16 15:20:36 -07007595TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007596L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007597S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007598F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599
7600TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007601M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602L: tlinux-users@tce.toshiba-dme.co.jp
7603W: http://www.buzzard.org.uk/toshiba/
7604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007605F: drivers/char/toshiba.c
7606F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607
Pierre Ossmand719f902009-03-24 21:06:09 +01007608TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007609M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007610M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007611L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007612S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007613F: drivers/mmc/host/tmio_mmc*
7614F: drivers/mmc/host/sh_mobile_sdhi.c
7615F: include/linux/mmc/tmio.h
7616F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007617
Hugh Dickins98f32602009-05-21 20:33:58 +01007618TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007619M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007620L: linux-mm@kvack.org
7621S: Maintained
7622F: include/linux/shmem_fs.h
7623F: mm/shmem.c
7624
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007625TM6000 VIDEO4LINUX DRIVER
7626M: Mauro Carvalho Chehab <mchehab@redhat.com>
7627L: linux-media@vger.kernel.org
7628W: http://linuxtv.org
7629T: git git://linuxtv.org/media_tree.git
7630S: Odd fixes
7631F: drivers/media/usb/tm6000/
7632
Alan Cox4e688522008-04-30 00:52:11 -07007633TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007634M: Kent Yoder <key@linux.vnet.ibm.com>
7635M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007636W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007637M: Marcel Selhorst <tpmdd@selhorst.net>
7638M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007639W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007640L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007642F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007643
Joe Perchesd6f005a2009-10-26 16:49:40 -07007644TRACING
7645M: Steven Rostedt <rostedt@goodmis.org>
7646M: Frederic Weisbecker <fweisbec@gmail.com>
7647M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007648T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007649S: Maintained
7650F: Documentation/trace/ftrace.txt
7651F: arch/*/*/*/ftrace.h
7652F: arch/*/kernel/ftrace.c
7653F: include/*/ftrace.h
7654F: include/linux/trace*.h
7655F: include/trace/
7656F: kernel/trace/
7657
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007660T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007662K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663
Alan Cox4e688522008-04-30 00:52:11 -07007664TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007665M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007666M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007667S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007668T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007669F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007670F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007671F: include/linux/serial_core.h
7672F: include/linux/serial.h
7673F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007674
Antti Palosaari91952bc2012-10-01 12:28:46 -03007675TUA9001 MEDIA DRIVER
7676M: Antti Palosaari <crope@iki.fi>
7677L: linux-media@vger.kernel.org
7678W: http://linuxtv.org/
7679W: http://palosaari.fi/linux/
7680Q: http://patchwork.linuxtv.org/project/linux-media/list/
7681T: git git://linuxtv.org/anttip/media_tree.git
7682S: Maintained
7683F: drivers/media/tuners/tua9001*
7684
Grant Grundler740db6d2008-02-17 11:53:49 -07007685TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007686M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007687L: netdev@vger.kernel.org
7688S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007689F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690
7691TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007692M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693W: http://vtun.sourceforge.net/tun
7694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007695F: Documentation/networking/tuntap.txt
7696F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007698TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007699M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007701F: drivers/tc/
7702F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007703
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007705M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706L: linux-scsi@vger.kernel.org
7707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007708F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007709
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007710UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007711M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007712M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007713L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007714T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007715W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007717F: Documentation/filesystems/ubifs.txt
7718F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007719
Alan Coxcc2020e2008-05-19 14:21:51 +01007720UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007721M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007722W: http://www.uclinux.org/
7723L: uclinux-dev@uclinux.org (subscribers-only)
7724S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007725F: arch/m68k/*/*_no.*
7726F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007727
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007728UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007729M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007730W: http://uclinux-h8.sourceforge.jp/
7731S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007732F: arch/h8300/
7733F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007734F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007735
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007737M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007739F: Documentation/filesystems/udf.txt
7740F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741
Alan Coxcc2020e2008-05-19 14:21:51 +01007742UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007743M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007745F: Documentation/filesystems/ufs.txt
7746F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007747
David Herrmann0a09d3a2012-06-10 15:16:28 +02007748UHID USERSPACE HID IO DRIVER:
7749M: David Herrmann <dh.herrmann@googlemail.com>
7750L: linux-input@vger.kernel.org
7751S: Maintained
7752F: drivers/hid/uhid.c
7753F: include/linux/uhid.h
7754
David Vrabel18332a82008-09-17 16:34:44 +01007755ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007756L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007757S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007758F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007759F: include/linux/uwb.h
7760F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007761
GuanXuetaob31d8272011-01-16 00:35:49 +08007762UNICORE32 ARCHITECTURE:
7763M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7764W: http://mprc.pku.edu.cn/~guanxuetao/linux
7765S: Maintained
7766T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7767F: arch/unicore32/
7768
Tony Finchd8379ab2009-11-27 15:50:30 +00007769UNIFDEF
7770M: Tony Finch <dot@dotat.at>
7771W: http://dotat.at/prog/unifdef
7772S: Maintained
7773F: scripts/unifdef.c
7774
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007776M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777W: http://www.kernel.dk
7778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007779F: Documentation/cdrom/
7780F: drivers/cdrom/cdrom.c
7781F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307783UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7784M: Vinayak Holikatti <vinholikatti@gmail.com>
7785M: Santosh Y <santoshsy@gmail.com>
7786L: linux-scsi@vger.kernel.org
7787S: Supported
7788F: Documentation/scsi/ufs.txt
7789F: drivers/scsi/ufs/
7790
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007791UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007792M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007793W: http://www.linux-mtd.infradead.org/
7794L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007795T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007796S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007797F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007798F: include/linux/mtd/ubi.h
7799F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007800
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007801UNSORTED BLOCK IMAGES (UBI) Fastmap
7802M: Richard Weinberger <richard@nod.at>
7803L: linux-mtd@lists.infradead.org
7804S: Maintained
7805F: drivers/mtd/ubi/fastmap.c
7806
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007808M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007809L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007811F: Documentation/usb/acm.txt
7812F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007814USB AR5523 WIRELESS DRIVER
7815M: Pontus Fuchs <pontus.fuchs@gmail.com>
7816L: linux-wireless@vger.kernel.org
7817S: Maintained
7818F: drivers/net/wireless/ath/ar5523/
7819
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007820USB ATTACHED SCSI
7821M: Matthew Wilcox <willy@linux.intel.com>
7822M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7823L: linux-usb@vger.kernel.org
7824L: linux-scsi@vger.kernel.org
7825S: Supported
7826F: drivers/usb/storage/uas.c
7827
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007829M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007830L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007832F: drivers/net/usb/cdc_*.c
7833F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007835USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007836M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007837L: linux-usb@vger.kernel.org
7838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007839F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007840
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007841USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007842M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007843L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007844W: http://www.linux-usb.org/usbnet
7845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007846F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007847
Alan Coxcc2020e2008-05-19 14:21:51 +01007848USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007849M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007850L: rio500-users@lists.sourceforge.net
7851W: http://rio500.sourceforge.net
7852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007853F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007854
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007856M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007857L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007859F: Documentation/usb/ehci.txt
7860F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861
David Brownell69ae9e32006-11-14 02:03:31 -08007862USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007863M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007864L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007865W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007866T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007868F: drivers/usb/gadget/
7869F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007870
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007871USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007872M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007873L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007875S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007876F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007877F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878
matt mooney857aab32011-06-17 15:50:46 -07007879USB/IP DRIVERS
7880M: Matt Mooney <mfm@muteddisk.com>
7881L: linux-usb@vger.kernel.org
7882S: Maintained
7883F: drivers/staging/usbip/
7884
Olav Kongas959eea22005-11-03 17:38:14 +02007885USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007886M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007887L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007889F: drivers/usb/host/isp116x*
7890F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007891
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007893M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007894L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007896F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897
7898USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007899M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007900L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007901L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902S: Maintained
7903W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007904F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007905
Clemens Ladischaf399172011-01-10 16:32:54 +01007906USB MIDI DRIVER
7907M: Clemens Ladisch <clemens@ladisch.de>
7908L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7909T: git git://git.alsa-project.org/alsa-kernel.git
7910S: Maintained
7911F: sound/usb/midi.*
7912
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007914M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007915L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007917F: Documentation/usb/ohci.txt
7918F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007919
Matthias Urlichsba460e42005-07-14 00:33:47 -07007920USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007921M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007922L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007924F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007925
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007927M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007928L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007929L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007930W: http://pegasus2.sourceforge.net/
7931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007932F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933
Felipe Balbid3ad5582012-05-21 16:24:49 +03007934USB PHY LAYER
7935M: Felipe Balbi <balbi@ti.com>
7936L: linux-usb@vger.kernel.org
7937T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7938S: Maintained
7939F: drivers/usb/phy/
7940F: drivers/usb/otg/
7941
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007942USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007943M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007944L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007945S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007946F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947
7948USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007949M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007950L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007951L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007952W: http://pegasus2.sourceforge.net/
7953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007954F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955
Alan Cox4e688522008-04-30 00:52:11 -07007956USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007957M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007958L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007960F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007961
7962USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007963M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007964L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007965S: Maintained
7966W: http://geocities.com/i0xox0i
7967W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007968F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007969
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007971M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007974F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007975
7976USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007977M: Peter Berger <pberger@brimson.com>
7978M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007979L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007981F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982
7983USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007984M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007985L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007987F: Documentation/usb/usb-serial.txt
7988F: drivers/usb/serial/generic.c
7989F: drivers/usb/serial/usb-serial.c
7990F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007993M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007994L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007996F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997
7998USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007999M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008000L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008002F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003
8004USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008005M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008006L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007W: http://www.connecttech.com
8008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008009F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008011USB SMSC75XX ETHERNET DRIVER
8012M: Steve Glendinning <steve.glendinning@shawell.net>
8013L: netdev@vger.kernel.org
8014S: Maintained
8015F: drivers/net/usb/smsc75xx.*
8016
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008017USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008018M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008019L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008021F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008022
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008023USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008024M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008025L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008026L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008027T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028W: http://www.linux-projects.org
8029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008030F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008031F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032
8033USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008034M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008035L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008036W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008037T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008039F: Documentation/usb/
8040F: drivers/net/usb/
8041F: drivers/usb/
8042F: include/linux/usb.h
8043F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008044
8045USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008046M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008047L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008049F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050
David Brownell69ae9e32006-11-14 02:03:31 -08008051USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008052M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008053L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008054W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008056F: drivers/net/usb/usbnet.c
8057F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008058
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008059USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008060M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008061L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008062L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008063T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008064W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008065S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008066F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008067F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068
Laurent Pinchart8282da42012-10-04 02:32:42 +02008069USB WEBCAM GADGET
8070M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8071L: linux-usb@vger.kernel.org
8072S: Maintained
8073F: drivers/usb/gadget/*uvc*.c
8074F: drivers/usb/gadget/webcam.c
8075
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008076USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008077M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008078L: linux-wireless@vger.kernel.org
8079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008080F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008081
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008082USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008083M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008084L: linux-usb@vger.kernel.org
8085S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008086F: drivers/usb/host/xhci*
8087F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008088
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008090L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008092S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008093F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008095USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008096M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008097L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008098L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008099T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008100W: http://royale.zerezo.com/zr364xx/
8101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008102F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008103F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008104
Randy Dunlape7839f22008-10-12 16:11:45 -07008105USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008106M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008107M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108L: user-mode-linux-devel@lists.sourceforge.net
8109L: user-mode-linux-user@lists.sourceforge.net
8110W: http://user-mode-linux.sourceforge.net
8111S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008112F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008113F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008114F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008115F: fs/hostfs/
8116F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008117
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008118USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008119M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008120M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008122F: Documentation/DocBook/uio-howto.tmpl
8123F: drivers/uio/
8124F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008125
Karel Zak256cccb2012-06-01 10:13:09 +02008126UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008127M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008128L: util-linux@vger.kernel.org
8129W: http://en.wikipedia.org/wiki/Util-linux
8130T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008131S: Maintained
8132
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008133UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008134M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008135L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008136W: http://dev.gentoo.org/~spock/projects/uvesafb/
8137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008138F: Documentation/fb/uvesafb.txt
8139F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008140
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008141VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008142M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008144F: Documentation/filesystems/vfat.txt
8145F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146
Alex Williamsoncba33452012-07-31 08:16:22 -06008147VFIO DRIVER
8148M: Alex Williamson <alex.williamson@redhat.com>
8149L: kvm@vger.kernel.org
8150S: Maintained
8151F: Documentation/vfio.txt
8152F: drivers/vfio/
8153F: include/linux/vfio.h
8154
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008155VIDEOBUF2 FRAMEWORK
8156M: Pawel Osciak <pawel@osciak.com>
8157M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008158M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008159L: linux-media@vger.kernel.org
8160S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008161F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008162F: include/media/videobuf2-*
8163
Amit Shah9a824462010-03-23 18:23:09 +05308164VIRTIO CONSOLE DRIVER
8165M: Amit Shah <amit.shah@redhat.com>
8166L: virtualization@lists.linux-foundation.org
8167S: Maintained
8168F: drivers/char/virtio_console.c
8169F: include/linux/virtio_console.h
8170
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308171VIRTIO CORE, NET AND BLOCK DRIVERS
8172M: Rusty Russell <rusty@rustcorp.com.au>
8173M: "Michael S. Tsirkin" <mst@redhat.com>
8174L: virtualization@lists.linux-foundation.org
8175S: Maintained
8176F: drivers/virtio/
8177F: drivers/net/virtio_net.c
8178F: drivers/block/virtio_blk.c
8179F: include/linux/virtio_*.h
8180
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008181VIRTIO HOST (VHOST)
8182M: "Michael S. Tsirkin" <mst@redhat.com>
8183L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008184L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008185L: netdev@vger.kernel.org
8186S: Maintained
8187F: drivers/vhost/
8188F: include/linux/vhost.h
8189
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008191M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008193F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194
Harald Weltef0bf7f62009-06-17 20:22:39 +02008195VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008196M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008197M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008198S: Maintained
8199F: drivers/mmc/host/via-sdmmc.c
8200
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008201VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008202M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008203L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008204S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008205F: include/linux/via-core.h
8206F: include/linux/via-gpio.h
8207F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008208F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008209
Francois Romieu01f20732007-01-26 00:57:17 -08008210VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008211M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008212L: netdev@vger.kernel.org
8213S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008214F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215
Patrick McHardybe7f8272007-10-23 20:26:36 -07008216VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008217M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008218L: netdev@vger.kernel.org
8219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008220F: drivers/net/macvlan.c
8221F: include/linux/if_*vlan.h
8222F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008223
Florian Fainelli55e331c2009-06-16 15:33:53 -07008224VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008225M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008226L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008227S: Maintained
8228F: drivers/vlynq/vlynq.c
8229F: include/linux/vlynq.h
8230
Martyn Welch390beae2012-05-03 17:52:36 +01008231VME SUBSYSTEM
8232M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008233M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008234M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8235L: devel@driverdev.osuosl.org
8236S: Maintained
8237T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8238F: Documentation/vme_api.txt
8239F: drivers/staging/vme/
8240F: drivers/vme/
8241F: include/linux/vme*
8242
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008243VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008244M: Shreyas Bhatewara <sbhatewara@vmware.com>
8245M: "VMware, Inc." <pv-drivers@vmware.com>
8246L: netdev@vger.kernel.org
8247S: Maintained
8248F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008249
Alok Kataria851b1642009-10-13 14:51:05 -07008250VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008251M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008252M: VMware PV-Drivers <pv-drivers@vmware.com>
8253L: linux-scsi@vger.kernel.org
8254S: Maintained
8255F: drivers/scsi/vmw_pvscsi.c
8256F: drivers/scsi/vmw_pvscsi.h
8257
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008258VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008259M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008260M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008261W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008262W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008263T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008265F: drivers/regulator/
8266F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008267
Juerg Haefligerab413192006-09-24 20:54:04 +02008268VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008269M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008270L: lm-sensors@lm-sensors.org
8271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008272F: Documentation/hwmon/vt1211
8273F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008274
Roger Lucas1de9e372005-11-26 20:20:05 +01008275VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008276M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008277L: lm-sensors@lm-sensors.org
8278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008279F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008280
Tony Olech88095e72011-05-14 16:48:13 -04008281VUB300 USB to SDIO/SD/MMC bridge chip
8282M: Tony Olech <tony.olech@elandigitalsystems.com>
8283L: linux-mmc@vger.kernel.org
8284L: linux-usb@vger.kernel.org
8285S: Supported
8286F: drivers/mmc/host/vub300.c
8287
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008289M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008291F: Documentation/w1/
8292F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293
Charles Spirakis13927072006-07-05 18:05:15 +02008294W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008295M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008296L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008298F: Documentation/hwmon/w83791d
8299F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008300
Rudolf Marek61db0112006-12-12 18:18:30 +01008301W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008302M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008303L: lm-sensors@lm-sensors.org
8304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008305F: Documentation/hwmon/w83793
8306F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008307
Jean Delvaree3760b42010-10-28 20:31:49 +02008308W83795 HARDWARE MONITORING DRIVER
8309M: Jean Delvare <khali@linux-fr.org>
8310L: lm-sensors@lm-sensors.org
8311S: Maintained
8312F: drivers/hwmon/w83795.c
8313
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008315M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008317F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008319WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008320M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008321L: linux-watchdog@vger.kernel.org
8322W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008323T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008325F: Documentation/watchdog/
8326F: drivers/watchdog/
8327F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008328
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008330M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331L: linux-scsi@vger.kernel.org
8332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008333F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334
David Herrmannb22e00f2011-09-06 13:50:40 +02008335WIIMOTE HID DRIVER
8336M: David Herrmann <dh.herrmann@googlemail.com>
8337L: linux-input@vger.kernel.org
8338S: Maintained
8339F: drivers/hid/hid-wiimote*
8340
David Härdemane258b802009-09-21 17:04:53 -07008341WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008342M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008343S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008344F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008345
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008346WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008347M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008348M: linux-wimax@intel.com
8349L: wimax@linuxwimax.org
8350S: Supported
8351W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008352F: Documentation/wimax/README.wimax
8353F: include/linux/wimax.h
8354F: include/linux/wimax/debug.h
8355F: include/net/wimax.h
8356F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008357
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008358WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008359M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008361F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008362
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008364M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008365L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008366W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008368F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
Mark Brownfebf1df2008-04-02 00:51:09 -04008370WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008371M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8372M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008373L: linux-input@vger.kernel.org
8374T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8375W: http://opensource.wolfsonmicro.com/node/7
8376S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008377F: drivers/input/touchscreen/*wm97*
8378F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008379
Mark Brown055bcbc2010-08-13 14:18:12 +01008380WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008381M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008382L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008383T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008384T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008385W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008386S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008387F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008388F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008389F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008390F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008391F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008392F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008393F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008394F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008395F: drivers/input/misc/wm831x-on.c
8396F: drivers/input/touchscreen/wm831x-ts.c
8397F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008398F: drivers/mfd/arizona*
8399F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008400F: drivers/power/wm83*.c
8401F: drivers/rtc/rtc-wm83*.c
8402F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008403F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008404F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008405F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008406F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008407F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008408F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008409F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008410F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008411F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008412F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008413
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008414WORKQUEUE
8415M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008416T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8417S: Maintained
8418F: include/linux/workqueue.h
8419F: kernel/workqueue.c
8420F: Documentation/workqueue.txt
8421
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008423M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008425S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008426F: Documentation/networking/x25*
8427F: include/net/x25*
8428F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008430X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008431M: Thomas Gleixner <tglx@linutronix.de>
8432M: Ingo Molnar <mingo@redhat.com>
8433M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008434M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008435T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008437F: Documentation/x86/
8438F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008439
Matthew Garrettd0944852010-02-11 10:40:13 -05008440X86 PLATFORM DRIVERS
8441M: Matthew Garrett <mjg@redhat.com>
8442L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008443T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008444S: Maintained
8445F: drivers/platform/x86
8446
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008447X86 MCE INFRASTRUCTURE
8448M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008449M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008450L: linux-edac@vger.kernel.org
8451S: Maintained
8452F: arch/x86/kernel/cpu/mcheck/*
8453
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008454XC2028/3028 TUNER DRIVER
8455M: Mauro Carvalho Chehab <mchehab@redhat.com>
8456L: linux-media@vger.kernel.org
8457W: http://linuxtv.org
8458T: git git://linuxtv.org/media_tree.git
8459S: Maintained
8460F: drivers/media/tuners/tuner-xc2028.*
8461
Ian Campbellc4468082011-04-27 15:26:46 -07008462XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008463M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008464M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008465L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8466L: virtualization@lists.linux-foundation.org
8467S: Supported
8468F: arch/x86/xen/
8469F: drivers/*/xen-*front.c
8470F: drivers/xen/
8471F: arch/x86/include/asm/xen/
8472F: include/xen/
8473
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008474XEN HYPERVISOR ARM
8475M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8476L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8477S: Supported
8478F: arch/arm/xen/
8479F: arch/arm/include/asm/xen/
8480
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008481XEN NETWORK BACKEND DRIVER
8482M: Ian Campbell <ian.campbell@citrix.com>
8483L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8484L: netdev@vger.kernel.org
8485S: Supported
8486F: drivers/net/xen-netback/*
8487
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008488XEN PCI SUBSYSTEM
8489M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008490L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008491S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008492F: arch/x86/pci/*xen*
8493F: drivers/pci/*xen*
8494
8495XEN SWIOTLB SUBSYSTEM
8496M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008497L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008498S: Supported
8499F: arch/x86/xen/*swiotlb*
8500F: drivers/xen/*swiotlb*
8501
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502XFS FILESYSTEM
8503P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008504M: Ben Myers <bpm@sgi.com>
8505M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008506M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008507L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008509T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008511F: Documentation/filesystems/xfs.txt
8512F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008513
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008514XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008515M: Anirudha Sarangi <anirudh@xilinx.com>
8516M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008517S: Maintained
8518F: drivers/net/ethernet/xilinx/xilinx_axienet*
8519
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008520XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008521M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008522W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008524F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008525
Peter Korsgaard238b8722006-12-06 20:35:17 -08008526XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008527M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008528L: linux-serial@vger.kernel.org
8529S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008530F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008531
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008533M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534L: linux-hams@vger.kernel.org
8535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008536F: drivers/net/hamradio/yam*
8537F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008538
Henkaf64a5e2005-10-12 15:02:56 +02008539YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008540M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008541L: usbb2k-api-dev@nongnu.org
8542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008543F: Documentation/input/yealink.txt
8544F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008545
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008547M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548W: http://yaina.de/jreuter/
8549W: http://www.qsl.net/dl1bke/
8550L: linux-hams@vger.kernel.org
8551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008552F: Documentation/networking/z8530drv.txt
8553F: drivers/net/hamradio/*scc.c
8554F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008556ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008557M: Daniel Drake <dsd@gentoo.org>
8558M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008559W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008560L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008561L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008563F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008564
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008566L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008567L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008569T: Mercurial http://linuxtv.org/hg/v4l-dvb
8570S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008571F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008572
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008573ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008574M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008575S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008576F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008577
Linus Torvalds1da177e2005-04-16 15:20:36 -07008578THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008579M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008580L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008581Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008582T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008584F: *
8585F: */