blob: 9f78c28a848b273d2a5eb3e80911509eb6ae969b [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>
Len Brown6968e502005-12-30 00:32:49 -0500238L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400239W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800240Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400241T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700243F: drivers/acpi/
244F: drivers/pnp/pnpacpi/
245F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700246F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500247
Len Brown8b59a452007-01-08 19:03:28 -0500248ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700249M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500250L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300251W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500252S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700253F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Len Brown8b59a452007-01-08 19:03:28 -0500255ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700256M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500257L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300258W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700260F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700261
Len Brown359acec2007-02-10 01:59:24 -0500262ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700263M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500264L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300265W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700267F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500268
Carlos Corbachobff431e2008-02-05 02:17:04 +0000269ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500270L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100271S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700272F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000273
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100274AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700275M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200276W: http://wiki.parisc-linux.org/AD1889
277L: linux-parisc@vger.kernel.org
278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700279F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100280
Michael Hennerich527a1a82010-10-28 11:31:28 +0000281AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
282M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100283L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700284W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000285S: Supported
286F: drivers/misc/ad525x_dpot.c
287
288AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
289M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100290L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700291W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000292S: Supported
293F: drivers/regulator/ad5398.c
294
295AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
296M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100297L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700298W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000299S: Supported
300F: drivers/input/misc/ad714x.c
301
302AD7877 TOUCHSCREEN DRIVER
303M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100304L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700305W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000306S: Supported
307F: drivers/input/touchscreen/ad7877.c
308
309AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
310M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100311L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700312W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000313S: Supported
314F: drivers/input/touchscreen/ad7879.c
315
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700316ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
317M: Jiri Kosina <jkosina@suse.cz>
318S: Maintained
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700321M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200322L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700324F: Documentation/hwmon/adm1025
325F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Corentin Labbecae2caa2007-02-14 21:15:04 +0100327ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700328M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100329L: lm-sensors@lm-sensors.org
330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700331F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100332
Michael Wucc0b88c2007-08-31 01:15:25 -0400333ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400334L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200335W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400336S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700337F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400338
Michael Hennerich527a1a82010-10-28 11:31:28 +0000339ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
340M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100341L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700342W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000343S: Supported
344F: drivers/mfd/adp5520.c
345F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700346F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800347F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000348F: drivers/input/keyboard/adp5520-keys.c
349
350ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
351M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100352L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700353W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000354S: Supported
355F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800356F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000357
358ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
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/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/video/backlight/adp8860_bl.c
364
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100365ADS1015 HARDWARE MONITOR DRIVER
366M: Dirk Eibach <eibach@gdsys.de>
367L: lm-sensors@lm-sensors.org
368S: Maintained
369F: Documentation/hwmon/ads1015
370F: drivers/hwmon/ads1015.c
371F: include/linux/i2c/ads1015.h
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700374M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700376F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Jean Delvareb058b852009-12-09 20:36:08 +0100378ADT7475 HARDWARE MONITOR DRIVER
379M: Jean Delvare <khali@linux-fr.org>
380L: lm-sensors@lm-sensors.org
381S: Maintained
382F: Documentation/hwmon/adt7475
383F: drivers/hwmon/adt7475.c
384
Michael Hennerich527a1a82010-10-28 11:31:28 +0000385ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
386M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100387L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700388W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000389S: Supported
390F: drivers/input/misc/adxl34x.c
391
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400392ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700393M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400394L: linux-scsi@vger.kernel.org
395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700396F: Documentation/scsi/advansys.txt
397F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700400M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700402F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Antti Palosaari91952bc2012-10-01 12:28:46 -0300404AF9013 MEDIA DRIVER
405M: Antti Palosaari <crope@iki.fi>
406L: linux-media@vger.kernel.org
407W: http://linuxtv.org/
408W: http://palosaari.fi/linux/
409Q: http://patchwork.linuxtv.org/project/linux-media/list/
410T: git git://linuxtv.org/anttip/media_tree.git
411S: Maintained
412F: drivers/media/dvb-frontends/af9013*
413
414AF9033 MEDIA DRIVER
415M: Antti Palosaari <crope@iki.fi>
416L: linux-media@vger.kernel.org
417W: http://linuxtv.org/
418W: http://palosaari.fi/linux/
419Q: http://patchwork.linuxtv.org/project/linux-media/list/
420T: git git://linuxtv.org/anttip/media_tree.git
421S: Maintained
422F: drivers/media/dvb-frontends/af9033*
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200425L: linux-fsdevel@vger.kernel.org
426S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700427F: Documentation/filesystems/affs.txt
428F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700430AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700431M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700432L: linux-afs@lists.infradead.org
433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700434F: fs/afs/
435F: include/net/af_rxrpc.h
436F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700440T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700442F: drivers/char/agp/
443F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700446M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447L: linux-scsi@vger.kernel.org
448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700449F: drivers/scsi/aha152x*
450F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Hannes Reinecke64624d42007-10-19 10:32:29 +0200452AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700453M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200454L: linux-scsi@vger.kernel.org
455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700456F: drivers/scsi/aic7xxx/
457F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700459AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700460M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700461L: linux-aio@kvack.org
462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700463F: fs/aio.c
464F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700467M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700468L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469W: http://www.linux-usb.org/SpeedTouch/
470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700471F: drivers/usb/atm/speedtch.c
472F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Pierre Ossman272f1332007-05-14 21:25:26 +0200474ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700477F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200478
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000479ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700480M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100481L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: Documentation/i2c/busses/i2c-ali1563
484F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700487M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500489M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700490S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700491L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700492F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Tobias Klauseradf92512011-02-09 10:58:29 +0100494ALTERA UART/JTAG UART SERIAL DRIVERS
495M: Tobias Klauser <tklauser@distanz.ch>
496L: linux-serial@vger.kernel.org
497L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
498S: Maintained
499F: drivers/tty/serial/altera_uart.c
500F: drivers/tty/serial/altera_jtaguart.c
501F: include/linux/altera_uart.h
502F: include/linux/altera_jtaguart.h
503
Andreas Herrmann512d1022011-05-25 20:43:31 +0200504AMD FAM15H PROCESSOR POWER MONITORING DRIVER
505M: Andreas Herrmann <andreas.herrmann3@amd.com>
506L: lm-sensors@lm-sensors.org
507S: Maintained
508F: Documentation/hwmon/fam15h_power
509F: drivers/hwmon/fam15h_power.c
510
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700511AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700513L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700515F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700516
Jordan Crousef90b8112006-01-06 00:12:14 -0800517AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800518P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700519L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800520W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700522F: drivers/char/hw_random/geode-rng.c
523F: drivers/crypto/geode*
524F: drivers/video/geode/
525F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800526
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200527AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700528M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200529L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100530T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200531S: Supported
Joe Perchesb2c16392011-12-08 20:21:40 -0800532F: drivers/iommu/amd_iommu*.[ch]
533F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200534
Peter Orubae7f5b302008-07-28 18:44:11 +0200535AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700536M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700537L: amd64-microcode@amd64.org
538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700539F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200540
Stelian Pop284f42b2006-12-12 18:18:31 +0100541AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700542M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100543S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200544F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100545
Tom Tuckerf94b5332006-09-22 15:22:48 -0700546AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700547M: Tom Tucker <tom@opengridcomputing.com>
548M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700549L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700552
Michael Hennerich527a1a82010-10-28 11:31:28 +0000553ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200554M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100555L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000556L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700557W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000558S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100559F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200560F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000561F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100563F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000564
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400565ANALOG DEVICES INC ASOC DRIVERS
566L: uclinux-dist-devel@blackfin.uclinux.org
567L: alsa-devel@alsa-project.org (moderated for non-subscribers)
568W: http://blackfin.uclinux.org/
569S: Supported
570F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400571
Johannes Berg42269062006-07-25 16:15:50 +0200572AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700573M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000574L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700575L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700577F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200580M: Jiri Kosina <jkosina@suse.cz>
581S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700582F: arch/x86/kernel/apm_32.c
583F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200584F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700586APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700587M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700588L: linux-input@vger.kernel.org
589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700590F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700591
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700592APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200593M: Henrik Rydberg <rydberg@euromail.se>
594L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700596F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700601F: drivers/net/appletalk/
602F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Viresh Kumara4801672011-02-22 15:46:07 +0530604ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700605M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530606L: linux-ide@vger.kernel.org
607S: Maintained
608F: include/linux/pata_arasan_cf_data.h
609F: drivers/ata/pata_arasan_cf.c
610
Jaya Kumar1154ea72005-06-21 17:17:04 -0700611ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700612M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700614F: drivers/video/arcfb.c
615F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700618M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700620F: arch/arm/lib/floppydma.S
621F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Will Deacon6f965212011-07-01 14:38:53 +0100623ARM PMU PROFILING AND DEBUGGING
624M: Will Deacon <will.deacon@arm.com>
625S: Maintained
626F: arch/arm/kernel/perf_event*
627F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100628F: arch/arm/include/asm/pmu.h
629F: arch/arm/kernel/hw_breakpoint.c
630F: arch/arm/include/asm/hw_breakpoint.h
631
Russell Kingd4275352009-04-16 14:05:27 +0100632ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700633M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700634L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100635W: http://www.arm.linux.org.uk/
636S: Maintained
637F: arch/arm/
638
Russell Kingcefbf4e2009-11-22 17:40:28 +0000639ARM PRIMECELL AACI PL041 DRIVER
640M: Russell King <linux@arm.linux.org.uk>
641S: Maintained
642F: sound/arm/aaci.*
643
644ARM PRIMECELL CLCD PL110 DRIVER
645M: Russell King <linux@arm.linux.org.uk>
646S: Maintained
647F: drivers/video/amba-clcd.*
648
649ARM PRIMECELL KMI PL050 DRIVER
650M: Russell King <linux@arm.linux.org.uk>
651S: Maintained
652F: drivers/input/serio/ambakmi.*
653F: include/linux/amba/kmi.h
654
Russell King2761f5c2007-05-24 06:56:08 +0200655ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200656S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700657F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200658
Russell Kingcefbf4e2009-11-22 17:40:28 +0000659ARM PRIMECELL BUS SUPPORT
660M: Russell King <linux@arm.linux.org.uk>
661S: Maintained
662F: drivers/amba/
663F: include/linux/amba/bus.h
664
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800665ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700666M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800668S: Maintained
669
Sergey Lapin9c784f92008-08-03 02:29:48 +0100670ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700671M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700672L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100673S: Maintained
674
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800675ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700676M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700677L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800678S: Maintained
679
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800680ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700681M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800682M: Nicolas Ferre <nicolas.ferre@atmel.com>
683M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700684L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200685W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800686W: http://www.linux4sam.org
687S: Supported
688F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100689
Rob Herring986cf2e2011-06-22 11:28:53 -0500690ARM/CALXEDA HIGHBANK ARCHITECTURE
691M: Rob Herring <rob.herring@calxeda.com>
692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
693S: Maintained
694F: arch/arm/mach-highbank/
695
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300696ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
697M: Anton Vorontsov <avorontsov@mvista.com>
698S: Maintained
699F: arch/arm/mach-cns3xxx/
700T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
701
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800702ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100703M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000704M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800706S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100707F: arch/arm/mach-ep93xx/
708F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800709
710ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713S: Maintained
714
Russell Kingd4275352009-04-16 14:05:27 +0100715ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700718S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100719F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700720F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100721
Mike Rapoportd48134e2008-08-20 09:03:26 +0100722ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700723M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100725S: Maintained
726
Hubert Feurstein94150092009-10-07 08:36:07 +0100727ARM/CONTEC MICRO9 MACHINE SUPPORT
728M: Hubert Feurstein <hubert.feurstein@contec.at>
729S: Maintained
730F: arch/arm/mach-ep93xx/micro9.c
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700733M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734S: Maintained
735
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200736ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100737M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100739T: git git://git.berlios.de/gemini-board
740S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300741F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200742
Barry Songa990cbd2011-07-12 21:44:10 +0800743ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
744M: Barry Song <baohua.song@csr.com>
745L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
746S: Maintained
747F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800748F: drivers/dma/sirf-dma.c
749F: drivers/i2c/busses/i2c-sirf.c
750F: drivers/pinctrl/pinctrl-sirf.c
751F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800752
Russell Kingd4275352009-04-16 14:05:27 +0100753ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700754M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700755L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100756W: http://www.arm.linux.org.uk/
757S: Maintained
758F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700759F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100760
Russell Kinga9da4f72008-07-12 21:42:04 +0100761ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Daniel Ribeiro <drwyrm@gmail.com>
763M: Stefan Schmidt <stefan@openezx.org>
764M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200765L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100766W: http://www.openezx.org/
767S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200768T: topgit git://git.openezx.org/openezx.git
769F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100770
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200771ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100772M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100774S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700775T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300776F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200777
Russell Kingd4275352009-04-16 14:05:27 +0100778ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700779M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100781W: http://www.arm.linux.org.uk/
782S: Maintained
783F: arch/arm/include/asm/hardware/dec21285.h
784F: arch/arm/mach-footbridge/
785
Sascha Hauer86183a52008-07-24 23:50:35 +0200786ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200789S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700790T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100791F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700792F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200793
Shawn Guo8bcb9762011-10-07 22:24:18 +0800794ARM/FREESCALE IMX6
795M: Shawn Guo <shawn.guo@linaro.org>
796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
797S: Maintained
798T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
799F: arch/arm/mach-imx/*imx6*
800
Shawn Guoa9866a092011-10-21 11:53:34 +0800801ARM/FREESCALE MXS ARM ARCHITECTURE
802M: Shawn Guo <shawn.guo@linaro.org>
803L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
804S: Maintained
805T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
806F: arch/arm/mach-mxs/
807
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800808ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700809M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800811S: Maintained
812
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100813ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100816S: Maintained
817
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200818ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700819M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100820M: Paul Parsons <lost.distance@yahoo.com>
821L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200822S: Maintained
823F: arch/arm/mach-pxa/hx4700.c
824F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100825F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200826
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100827ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200829W: www.jlime.com
830S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700831T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
832F: arch/arm/mach-sa1100/jornada720.c
833F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100834
Marek Vasut403d2972010-05-22 00:29:39 +0200835ARM/INCOME PXA270 SUPPORT
836M: Marek Vasut <marek.vasut@gmail.com>
837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
838S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700839F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200840
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800841ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700842M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700843M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700844L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700845S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100846
847ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700848M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700849L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700850S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800851
852ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700853M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700854M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700855L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700856S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800857
858ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700859M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700860M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700861L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700862S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800864ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700865M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700866L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800867S: Maintained
868
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200869ARM/INTEL IXP4XX ARM ARCHITECTURE
870M: Imre Kaloz <kaloz@openwrt.org>
871M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200873S: Maintained
874F: arch/arm/mach-ixp4xx/
875
Joe Perches838553c2010-10-26 14:22:59 -0700876ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100877M: Jonathan Cameron <jic23@cam.ac.uk>
878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
879S: Maintained
880F: arch/arm/mach-pxa/stargate2.c
881F: drivers/pcmcia/pxa2xx_stargate2.c
882
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800883ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700884M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700885M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700886L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700887S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800888
889ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700890M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892S: Maintained
893
894ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700895M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800897S: Maintained
898
Philipp Zabel3b8861712008-07-09 21:27:15 +0100899ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700900M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100901S: Maintained
902
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200903ARM/Marvell Armada 370 and Armada XP SOC support
904M: Jason Cooper <jason@lakedaemon.net>
905M: Andrew Lunn <andrew@lunn.ch>
906M: Gregory Clement <gregory.clement@free-electrons.com>
907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
908S: Maintained
909F: arch/arm/mach-mvebu/
910
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400911ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
912M: Jason Cooper <jason@lakedaemon.net>
913M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400915S: Maintained
916F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400917F: arch/arm/mach-kirkwood/
918F: arch/arm/mach-mv78xx0/
919F: arch/arm/mach-orion5x/
920F: arch/arm/plat-orion/
921
Alexander Clouterd69ac132011-04-14 15:22:02 -0700922ARM/Orion SoC/Technologic Systems TS-78xx platform support
923M: Alexander Clouter <alex@digriz.org.uk>
924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
925W: http://www.digriz.org.uk/ts78xx/kernel
926S: Maintained
927F: arch/arm/mach-orion5x/ts78xx-*
928
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000929ARM/MICREL KS8695 ARCHITECTURE
930M: Greg Ungerer <gerg@uclinux.org>
931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932F: arch/arm/mach-ks8695
933S: Odd Fixes
934
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200935ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700936M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700937L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200938F: arch/arm/mach-pxa/mioa701.c
939S: Maintained
940
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100941ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700942M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100943S: Maintained
944
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100945ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700946M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200947M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700948M: STEricsson <STEricsson_nomadik_linux@list.st.com>
949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
950S: Maintained
951F: arch/arm/mach-nomadik/
952F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100953F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200954T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100955
Andy Green9d762952009-05-19 06:41:42 -0300956ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700957M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300958L: openmoko-kernel@lists.openmoko.org (subscribers-only)
959W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
960S: Supported
961
Daniel Walker0c19d212009-12-07 16:53:51 -0800962ARM/QUALCOMM MSM MACHINE SUPPORT
963M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800964M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800965M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800966L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800967F: arch/arm/mach-msm/
968F: drivers/video/msm/
969F: drivers/mmc/host/msm_sdcc.c
970F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800971F: drivers/tty/serial/msm_serial.h
972F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700973F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700974F: drivers/*/pm8???-*
975F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800976T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800977S: Maintained
978
Dirk Opfer8459c152005-11-06 14:27:52 +0000979ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700980M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
981M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000982S: Maintained
983
Marek Vasut5d783a22009-07-16 13:26:48 +0200984ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700985M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200986L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100987W: http://hackndev.com
988S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700989F: arch/arm/mach-pxa/include/mach/palmtx.h
990F: arch/arm/mach-pxa/palmtx.c
991F: arch/arm/mach-pxa/include/mach/palmt5.h
992F: arch/arm/mach-pxa/palmt5.c
993F: arch/arm/mach-pxa/include/mach/palmld.h
994F: arch/arm/mach-pxa/palmld.c
995F: arch/arm/mach-pxa/include/mach/palmte2.h
996F: arch/arm/mach-pxa/palmte2.c
997F: arch/arm/mach-pxa/include/mach/palmtc.h
998F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100999
Joe Perchesb57fe922009-12-14 18:00:52 -08001000ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001001M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001002L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001003W: http://hackndev.com
1004S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001005F: arch/arm/mach-pxa/include/mach/palmtreo.h
1006F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001007
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001008ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001009M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001010L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001011W: http://hackndev.com
1012S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001013F: arch/arm/mach-pxa/include/mach/palmz72.h
1014F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1019S: Maintained
1020
1021ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001022M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001023L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024W: http://www.arm.linux.org.uk/
1025S: Maintained
1026
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001027ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001028M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001029L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001030S: Maintained
1031
Russell Kingd4275352009-04-16 14:05:27 +01001032ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001033M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001034L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001035W: http://www.arm.linux.org.uk/
1036S: Maintained
1037F: arch/arm/common/time-acorn.c
1038F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1039F: arch/arm/include/asm/hardware/ioc.h
1040F: arch/arm/include/asm/hardware/iomd.h
1041F: arch/arm/include/asm/hardware/memc.h
1042F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001043F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001044F: drivers/net/ethernet/i825xx/ether1*
1045F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001046F: drivers/scsi/arm/
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001049M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050W: http://www.shark-linux.de/shark.html
1051S: Maintained
1052
Ben Dooksb21477f2009-06-13 10:46:34 +01001053ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001054M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001055M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001056L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001057L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001058W: http://www.fluff.org/ben/linux/
1059S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001060F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001061F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001062F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001063F: arch/arm/mach-s3c24*/
1064F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001065F: drivers/*/*s3c2410*
1066F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001067F: drivers/spi/spi-s3c*
1068F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001070ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001071M: Kukjin Kim <kgene.kim@samsung.com>
1072L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1073L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1074S: Maintained
1075F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001076F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001077
Kyungmin Park10ffa962011-03-04 17:36:26 -08001078ARM/SAMSUNG MOBILE MACHINE SUPPORT
1079M: Kyungmin Park <kyungmin.park@samsung.com>
1080L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1081S: Maintained
1082F: arch/arm/mach-s5pv210/mach-aquila.c
1083F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001084F: arch/arm/mach-exynos/mach-universal_c210.c
1085F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001086
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001087ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1088M: Kyungmin Park <kyungmin.park@samsung.com>
1089M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1090L: linux-arm-kernel@lists.infradead.org
1091L: linux-media@vger.kernel.org
1092S: Maintained
1093F: arch/arm/plat-s5p/dev-fimc*
1094F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001095F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001096
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001097ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1098M: Kyungmin Park <kyungmin.park@samsung.com>
1099M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001100M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001101L: linux-arm-kernel@lists.infradead.org
1102L: linux-media@vger.kernel.org
1103S: Maintained
1104F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001105F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001106
1107ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1108M: Kyungmin Park <kyungmin.park@samsung.com>
1109M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1110L: linux-arm-kernel@lists.infradead.org
1111L: linux-media@vger.kernel.org
1112S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001113F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001114
Paul Mundtd48d38e2010-02-08 12:50:24 +09001115ARM/SHMOBILE ARM ARCHITECTURE
1116M: Paul Mundt <lethal@linux-sh.org>
1117M: Magnus Damm <magnus.damm@gmail.com>
1118L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001119W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001120Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001121T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001122S: Supported
1123F: arch/arm/mach-shmobile/
1124F: drivers/sh/
1125
Dinh Nguyen66314222012-07-18 16:07:18 -06001126ARM/SOCFPGA ARCHITECTURE
1127M: Dinh Nguyen <dinguyen@altera.com>
1128S: Maintained
1129F: arch/arm/mach-socfpga/
1130
1131ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1132M: Dinh Nguyen <dinguyen@altera.com>
1133S: Maintained
1134F: drivers/clk/socfpga/
1135
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001136ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001137M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001138L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001139S: Maintained
1140
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001141ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001142M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001143L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1144S: Maintained
1145
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001146ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001147M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001148L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001149S: Maintained
1150
wanzongshun98ad6e32009-02-13 06:04:32 +01001151ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001152M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001153L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001154W: http://www.mcuos.com
1155S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001156F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001157F: drivers/input/keyboard/w90p910_keypad.c
1158F: drivers/input/touchscreen/w90p910_ts.c
1159F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001160F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001161F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001162F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001163F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001164F: drivers/usb/host/ehci-w90x900.c
1165F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001166
Linus Walleij54274d72010-04-04 10:58:03 +01001167ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001168M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001169L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1170S: Supported
1171F: arch/arm/mach-u300/
1172F: drivers/i2c/busses/i2c-stu300.c
1173F: drivers/rtc/rtc-coh901331.c
1174F: drivers/watchdog/coh901327_wdt.c
1175F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001176F: drivers/mfd/ab3100*
1177F: drivers/rtc/rtc-ab3100.c
1178F: drivers/rtc/rtc-coh901331.c
1179T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001180
Linus Walleij87572882010-12-22 09:18:29 +01001181ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001182M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001183M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185S: Maintained
1186F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001187F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001188F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001189F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001190F: drivers/mfd/abx500*
1191F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001192F: drivers/mfd/dbx500*
1193F: drivers/mfd/db8500*
1194F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001195F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001196F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001197T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001198
Russell Kingd4275352009-04-16 14:05:27 +01001199ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001200M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001201L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001202W: http://www.arm.linux.org.uk/
1203S: Maintained
1204F: arch/arm/vfp/
1205
Marek Vasute66b6d82010-03-26 06:51:32 +01001206ARM/VOIPAC PXA270 SUPPORT
1207M: Marek Vasut <marek.vasut@gmail.com>
1208L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209S: Maintained
1210F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001211F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001212
Tony Prisk04529fe2012-07-24 04:19:37 +12001213ARM/VT8500 ARM ARCHITECTURE
1214M: Tony Prisk <linux@prisktech.co.nz>
1215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1216S: Maintained
1217F: arch/arm/mach-vt8500/
1218F: drivers/video/vt8500lcdfb.*
1219F: drivers/video/wm8505fb*
1220F: drivers/video/wmt_ge_rops.*
1221F: drivers/tty/serial/vt8500_serial.c
1222F: drivers/rtc/rtc-vt8500-c
1223
Marek Vasute66b6d82010-03-26 06:51:32 +01001224ARM/ZIPIT Z2 SUPPORT
1225M: Marek Vasut <marek.vasut@gmail.com>
1226L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227S: Maintained
1228F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001229F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001230
Catalin Marinas38074222012-03-05 11:49:34 +00001231ARM64 PORT (AARCH64 ARCHITECTURE)
1232M: Catalin Marinas <catalin.marinas@arm.com>
1233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234S: Maintained
1235F: arch/arm64/
1236
George Josephd58de032010-03-05 22:17:25 +01001237ASC7621 HARDWARE MONITOR DRIVER
1238M: George Joseph <george.joseph@fairview5.com>
1239L: lm-sensors@lm-sensors.org
1240S: Maintained
1241F: Documentation/hwmon/asc7621
1242F: drivers/hwmon/asc7621.c
1243
Corentin Charyb229ece2011-02-26 10:20:40 +01001244ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001245M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001247L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001248W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001250F: drivers/platform/x86/asus*.c
1251F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001253ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001254M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001255L: lm-sensors@lm-sensors.org
1256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001257F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001258
Andrew Morton953a6472008-11-06 12:53:28 -08001259ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001260M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001261W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001263F: Documentation/crypto/async-tx-api.txt
1264F: crypto/async_tx/
1265F: drivers/dma/
1266F: include/linux/dmaengine.h
1267F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001268
Wolfram Sanga1867d32009-09-18 22:45:51 +02001269AT24 EEPROM DRIVER
1270M: Wolfram Sang <w.sang@pengutronix.de>
1271L: linux-i2c@vger.kernel.org
1272S: Maintained
1273F: drivers/misc/eeprom/at24.c
1274F: include/linux/i2c/at24.h
1275
Randy Dunlape7839f22008-10-12 16:11:45 -07001276ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001277M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001278W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001280F: Documentation/aoe/
1281F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Joe Perches9a10a872010-12-01 09:37:55 -08001283ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001284M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001285L: linux-wireless@vger.kernel.org
1286S: Supported
1287F: drivers/net/wireless/ath/*
1288
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001289ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001290M: Jiri Slaby <jirislaby@gmail.com>
1291M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001292M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001293L: linux-wireless@vger.kernel.org
1294L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001295W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001296S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001297F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001298
Kalle Valo12e62d62011-09-13 10:21:25 +03001299ATHEROS ATH6KL WIRELESS DRIVER
1300M: Kalle Valo <kvalo@qca.qualcomm.com>
1301L: linux-wireless@vger.kernel.org
1302W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1303T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1304S: Supported
1305F: drivers/net/wireless/ath/ath6kl/
1306
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001307ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001308M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1309M: Jouni Malinen <jouni@qca.qualcomm.com>
1310M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1311M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001312L: linux-wireless@vger.kernel.org
1313L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001314W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001315S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001316F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001317
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001318CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1319M: Christian Lamparter <chunkeey@googlemail.com>
1320L: linux-wireless@vger.kernel.org
1321W: http://wireless.kernel.org/en/users/Drivers/carl9170
1322S: Maintained
1323F: drivers/net/wireless/ath/carl9170/
1324
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001325ATK0110 HWMON DRIVER
1326M: Luca Tettamanti <kronos.it@gmail.com>
1327L: lm-sensors@lm-sensors.org
1328S: Maintained
1329F: drivers/hwmon/asus_atk0110.c
1330
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001331ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001332M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001334F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001335
Chris Snook7ae115b2008-09-09 03:26:57 -04001336ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001337M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001338M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001339L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001340W: http://sourceforge.net/projects/atl1
1341W: http://atl1.sourceforge.net
1342S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001343F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001346M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001347L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001348L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349W: http://linux-atm.sourceforge.net
1350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001351F: drivers/atm/
1352F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Pierre Ossman272f1332007-05-14 21:25:26 +02001354ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001355M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001356L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001357W: http://www.atmel.com/products/AT91/
1358W: http://www.at91.com/
1359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001360F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001361
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001362ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001363M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001364S: Maintained
1365F: drivers/mmc/host/atmel-mci.c
1366F: drivers/mmc/host/atmel-mci-regs.h
1367
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001368ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001369M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001370S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001371F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001372
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001373ATMEL DMA DRIVER
1374M: Nicolas Ferre <nicolas.ferre@atmel.com>
1375L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1376S: Supported
1377F: drivers/dma/at_hdmac.c
1378F: drivers/dma/at_hdmac_regs.h
1379F: arch/arm/mach-at91/include/mach/at_hdmac.h
1380
Josh Wu15515542012-03-23 17:56:29 +08001381ATMEL ISI DRIVER
1382M: Josh Wu <josh.wu@atmel.com>
1383L: linux-media@vger.kernel.org
1384S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001385F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001386F: include/media/atmel-isi.h
1387
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001388ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001389M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001390L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001392F: drivers/video/atmel_lcdfb.c
1393F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001394
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001395ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001396M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001397S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001398F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001399
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001400ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001401M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001402S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001403F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001404
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001405ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1406M: Nicolas Ferre <nicolas.ferre@atmel.com>
1407L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1408S: Supported
1409F: drivers/misc/atmel_tclib.c
1410F: drivers/clocksource/tcb_clksrc.c
1411
Josh Wuff2675d2012-03-23 17:56:55 +08001412ATMEL TSADCC DRIVER
1413M: Josh Wu <josh.wu@atmel.com>
1414L: linux-input@vger.kernel.org
1415S: Supported
1416F: drivers/input/touchscreen/atmel_tsadcc.c
1417
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001418ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001419M: Nicolas Ferre <nicolas.ferre@atmel.com>
1420L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001422F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001425M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001426L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427W: http://www.thekelleys.org.uk/atmel
1428W: http://atmelwlandriver.sourceforge.net/
1429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001430F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Chris Wrighta92b7b82005-07-07 18:12:23 -07001432AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001433M: Al Viro <viro@zeniv.linux.org.uk>
1434M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001435L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001436W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001437T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001439F: include/linux/audit.h
1440F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001441
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001442AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001443M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001444W: http://miguelojeda.es/auxdisplay.htm
1445W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001447F: drivers/auxdisplay/
1448F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001449
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001450AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001451M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1452M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001453W: http://www.atmel.com/products/AVR32/
1454W: http://avr32linux.org/
1455W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001457F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001458
1459AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001460M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1461M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001463F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001466M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001468W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001470F: include/linux/ax25.h
1471F: include/net/ax25.h
1472F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001474B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001475M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001476L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001477L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001478W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001480F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001481
1482B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001483M: Larry Finger <Larry.Finger@lwfinger.net>
1484M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001485L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001486L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001487W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001489F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001490
Richard Purdie300abeb2007-02-07 22:21:07 +00001491BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001492M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001494F: drivers/video/backlight/
1495F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001496
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001497BATMAN ADVANCED
1498M: Marek Lindner <lindner_marek@yahoo.de>
1499M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001500M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001501L: b.a.t.m.a.n@lists.open-mesh.org
1502W: http://www.open-mesh.org/
1503S: Maintained
1504F: net/batman-adv/
1505
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001506BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001507M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001508L: linux-hams@vger.kernel.org
1509W: http://www.baycom.org/~tom/ham/ham.html
1510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001511F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001512
1513BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001514S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001515F: Documentation/filesystems/befs.txt
1516F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001517
1518BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001519M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001521F: Documentation/filesystems/bfs.txt
1522F: fs/bfs/
1523F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001524
Bryan Wu1394f032007-05-06 14:50:22 -07001525BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001526M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001527L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001528W: http://blackfin.uclinux.org
1529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001530F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001531
Bryan Wue190d6b2007-07-17 14:43:44 +08001532BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001533L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001534W: http://blackfin.uclinux.org
1535S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001536F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001537
Mike Frysinger566da5b2007-06-11 15:31:30 +08001538BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001539M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001540L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001541W: http://blackfin.uclinux.org
1542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001543F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001544
Mike Frysinger936ed492010-03-10 15:20:38 -08001545BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001546M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001547L: uclinux-dist-devel@blackfin.uclinux.org
1548W: http://blackfin.uclinux.org
1549S: Supported
1550F: drivers/mmc/host/bfin_sdh.c
1551
Bryan Wu1394f032007-05-06 14:50:22 -07001552BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001553M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001554L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001555W: http://blackfin.uclinux.org
1556S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001557F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001558
Bryan Wu1e6d3202007-07-15 02:50:02 +08001559BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001561L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001562W: http://blackfin.uclinux.org
1563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001564F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001565
Bryan Wud24ecfc2007-05-01 23:26:32 +02001566BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001567M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001568L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001569W: http://blackfin.uclinux.org/
1570S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001571F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001572
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001573BLINKM RGB LED DRIVER
1574M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1575S: Maintained
1576F: drivers/leds/leds-blinkm.c
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001579M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001580T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001582F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Joern Engel2b54aae2008-02-06 01:38:02 -08001584BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001586L: linux-mtd@lists.infradead.org
1587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001588F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001589
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001590BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001591M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001592M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001593M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001594L: linux-bluetooth@vger.kernel.org
1595W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001596T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1597T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001599F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001603M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001604M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001605L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001606W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001607T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1608T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001610F: net/bluetooth/
1611F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001615M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001616L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001617W: http://sourceforge.net/projects/bonding/
1618S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001619F: drivers/net/bonding/
1620F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Gary Zambrano39105892006-06-22 17:26:20 -07001622BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001623M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001624L: netdev@vger.kernel.org
1625S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001626F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001627
Michael Chan948c51e2006-06-04 02:51:39 -07001628BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001629M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001630L: netdev@vger.kernel.org
1631S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001632F: drivers/net/ethernet/broadcom/bnx2.*
1633F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001634
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001635BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001637L: netdev@vger.kernel.org
1638S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001639F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001640
Stephen Warrenf680f252012-09-15 00:18:54 -06001641BROADCOM BCM2835 ARM ARCHICTURE
1642M: Stephen Warren <swarren@wwwdotorg.org>
1643L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1644T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1645S: Maintained
1646F: arch/arm/mach-bcm2835/
1647F: arch/arm/boot/dts/bcm2835*
1648F: arch/arm/configs/bcm2835_defconfig
1649F: drivers/*/*bcm2835*
1650
Michael Chan948c51e2006-06-04 02:51:39 -07001651BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001652M: Matt Carlson <mcarlson@broadcom.com>
1653M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001654L: netdev@vger.kernel.org
1655S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001656F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001657
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001658BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1659M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001660M: Roland Vossen <rvossen@broadcom.com>
1661M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001662M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1663M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001664L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001665L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001666S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001667F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001668
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001669BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1670M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1671L: linux-scsi@vger.kernel.org
1672S: Supported
1673F: drivers/scsi/bnx2fc/
1674
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001675BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1676M: Rafał Miłecki <zajec5@gmail.com>
1677L: linux-wireless@vger.kernel.org
1678S: Maintained
1679F: drivers/bcma/
1680F: include/linux/bcma/
1681
Jing Huang7725ccf2009-09-23 17:46:15 -07001682BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001683M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001684L: linux-scsi@vger.kernel.org
1685S: Supported
1686F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001687
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001688BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1689M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001690L: netdev@vger.kernel.org
1691S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001692F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001693
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001694BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001695M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001696L: linux-scsi@vger.kernel.org
1697S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001698F: block/bsg.c
1699F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001700
Clemens Ladischaf399172011-01-10 16:32:54 +01001701BT87X AUDIO DRIVER
1702M: Clemens Ladisch <clemens@ladisch.de>
1703L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1704T: git git://git.alsa-project.org/alsa-kernel.git
1705S: Maintained
1706F: Documentation/sound/alsa/Bt87x.txt
1707F: sound/pci/bt87x.c
1708
Michael Bueschff1d5c22008-07-25 01:46:10 -07001709BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001710M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001711W: http://bu3sch.de/btgpio.php
1712S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001713F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001714
Joe Percheseb1eb042009-01-21 10:49:16 -05001715BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001716M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001717L: linux-btrfs@vger.kernel.org
1718W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001719Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001720T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001722F: Documentation/filesystems/btrfs.txt
1723F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001726M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001727L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001728W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001729T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001731F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001732F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Clemens Ladischaf399172011-01-10 16:32:54 +01001734C-MEDIA CMI8788 DRIVER
1735M: Clemens Ladisch <clemens@ladisch.de>
1736L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1737T: git git://git.alsa-project.org/alsa-kernel.git
1738S: Maintained
1739F: sound/pci/oxygen/
1740
Mark Salter21413552011-10-04 11:21:42 -04001741C6X ARCHITECTURE
1742M: Mark Salter <msalter@redhat.com>
1743M: Aurelien Jacquiot <a-jacquiot@ti.com>
1744L: linux-c6x-dev@linux-c6x.org
1745W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1746S: Maintained
1747F: arch/c6x/
1748
David Howellsa5432f52009-04-20 15:46:45 +01001749CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001750M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001751L: linux-cachefs@redhat.com
1752S: Supported
1753F: Documentation/filesystems/caching/cachefiles.txt
1754F: fs/cachefiles/
1755
Jonathan Corbet77d51402007-03-22 19:44:17 -03001756CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001757M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001758L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001759T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001761F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001762F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001763
Joe Perches201b6ba2010-09-07 20:33:24 +00001764CAIF NETWORK LAYER
1765M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1766L: netdev@vger.kernel.org
1767S: Supported
1768F: Documentation/networking/caif/
1769F: drivers/net/caif/
1770F: include/linux/caif/
1771F: include/net/caif/
1772F: net/caif/
1773
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001774CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001775M: Muli Ben-Yehuda <muli@il.ibm.com>
1776M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001777L: discuss@x86-64.org
1778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001779F: arch/x86/kernel/pci-calgary_64.c
1780F: arch/x86/kernel/tce_64.c
1781F: arch/x86/include/asm/calgary.h
1782F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001783
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001784CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001785M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001786L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001787W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001788T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001789S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001790F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001791F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001792F: include/linux/can/core.h
1793F: include/linux/can/bcm.h
1794F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001795F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001796
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001797CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001798M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001799M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001800L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001801W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001802T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001803S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001804F: drivers/net/can/
1805F: include/linux/can/dev.h
1806F: include/linux/can/error.h
1807F: include/linux/can/netlink.h
1808F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001809
James Morris95d16c72012-03-16 12:05:48 +11001810CAPABILITIES
1811M: Serge Hallyn <serge.hallyn@canonical.com>
1812L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001813S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001814F: include/linux/capability.h
1815F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001816F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001817F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001818
Arnd Bergmannb8154542008-05-16 11:10:59 +02001819CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001820M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001821L: linuxppc-dev@lists.ozlabs.org
1822L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001823W: http://www.ibm.com/developerworks/power/cell/
1824S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001825F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001826F: arch/powerpc/include/asm/spu*.h
1827F: arch/powerpc/oprofile/*cell*
1828F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001829
Sage Weil9030aaf2009-10-06 11:31:15 -07001830CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001831M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001832L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001833W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001834T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001835S: Supported
1836F: Documentation/filesystems/ceph.txt
1837F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001838F: net/ceph
1839F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001840F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001841
David Vrabel18332a82008-09-17 16:34:44 +01001842CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001843L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001844S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001845F: Documentation/usb/WUSB-Design-overview.txt
1846F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001847F: drivers/usb/host/hwa-hc.c
1848F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001849F: drivers/usb/wusbcore/
1850F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001851
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001852CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001853M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001854W: http://miguelojeda.es/auxdisplay.htm
1855W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001857F: drivers/auxdisplay/cfag12864b.c
1858F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001859
1860CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001861M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001862W: http://miguelojeda.es/auxdisplay.htm
1863W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001865F: drivers/auxdisplay/cfag12864bfb.c
1866F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001867
Johannes Berg704232c2007-04-23 12:20:05 -07001868CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001869M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001870L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001871W: http://wireless.kernel.org/
1872T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1873T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001875F: include/linux/nl80211.h
1876F: include/net/cfg80211.h
1877F: net/wireless/*
1878X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001879
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001880CHAR and MISC DRIVERS
1881M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001882M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001883T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001884S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001885F: drivers/char/*
1886F: drivers/misc/*
1887
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001888CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001889M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001890S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001891F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001892
Harry Weif8407f262011-02-25 14:44:15 -08001893CHINESE DOCUMENTATION
1894M: Harry Wei <harryxiyou@gmail.com>
1895L: xiyoulinuxkernelgroup@googlegroups.com
1896L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1897S: Maintained
1898F: Documentation/zh_CN/
1899
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001900CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1901M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1902L: linux-usb@vger.kernel.org
1903S: Maintained
1904F: drivers/usb/chipidea/
1905
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001906CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001907M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001908M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001909M: Neel Patel <neepatel@cisco.com>
1910M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001911S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001912F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001913
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001914CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001915M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001916L: netdev@vger.kernel.org
1917S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001918F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001919
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001920CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001921M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001922L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001924F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001925
Timur Tabid9e9d822008-04-24 08:45:26 +10001926CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001927M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001928L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001929S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001930F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001931
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001932CLEANCACHE API
1933M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1934L: linux-kernel@vger.kernel.org
1935S: Maintained
1936F: mm/cleancache.c
1937F: include/linux/cleancache.h
1938
Russell Kingd4275352009-04-16 14:05:27 +01001939CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001940M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001941S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001942F: include/linux/clk.h
1943
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001944CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001946M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1947M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001948L: linux-scsi@vger.kernel.org
1949S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001950F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001951
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001952CMPC ACPI DRIVER
1953M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1954M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001955L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001956S: Supported
1957F: drivers/platform/x86/classmate-laptop.c
1958
Nicolas Palix74425ee2010-06-06 17:15:01 +02001959COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001960M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001961M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001962M: Nicolas Palix <nicolas.palix@imag.fr>
1963L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001964W: http://coccinelle.lip6.fr/
1965S: Supported
1966F: scripts/coccinelle/
1967F: scripts/coccicheck
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001970M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971M: coda@cs.cmu.edu
1972L: codalist@coda.cs.cmu.edu
1973W: http://www.coda.cs.cmu.edu/
1974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001975F: Documentation/filesystems/coda.txt
1976F: fs/coda/
1977F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Mike Turquette7704add2012-05-02 18:37:45 -07001979COMMON CLK FRAMEWORK
1980M: Mike Turquette <mturquette@ti.com>
1981M: Mike Turquette <mturquette@linaro.org>
1982L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1983T: git git://git.linaro.org/people/mturquette/linux.git
1984S: Maintained
1985F: drivers/clk/clk.c
1986F: drivers/clk/clk-*
1987F: include/linux/clk-pr*
1988
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001989COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001990M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001991L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001992L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001993W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001994Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001995T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001997F: Documentation/filesystems/cifs.txt
1998F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002001M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002002L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002004F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002007M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002008L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002010F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002013M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002014L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002016F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002018COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002019M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002020L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002022F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002023
Simon Arlott949be0f2007-03-06 02:47:46 -08002024CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002025M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002026L: accessrunner-general@lists.sourceforge.net
2027W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002029F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002030
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002031CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002032M: Joel Becker <jlbec@evilplan.org>
2033T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002035F: fs/configfs/
2036F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002037
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002038CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002040L: netdev@vger.kernel.org
2041S: Maintained
2042F: drivers/connector/
2043
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002044CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002045M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002046M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002047L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002048L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002049T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: include/linux/cgroup*
2052F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002053F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002054
Rudolf Marekbebe4672007-05-08 17:22:02 +02002055CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002056M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002057L: lm-sensors@lm-sensors.org
2058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002059F: Documentation/hwmon/coretemp
2060F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002063M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064W: http://www.fi.muni.cz/~kas/cosa/
2065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002066F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Florian Fainelli4371ee32009-06-01 02:43:17 -07002068CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002069M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002070L: netdev@vger.kernel.org
2071S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002072F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002075M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002076L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002077L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002079F: drivers/cpufreq/
2080F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: arch/x86/kernel/cpuid.c
2086F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002088CPU POWER MONITORING SUBSYSTEM
2089M: Dominik Brodowski <linux@dominikbrodowski.net>
2090M: Thomas Renninger <trenn@suse.de>
2091S: Maintained
2092F: tools/power/cpupower
2093
Paul Jacksoned90fb42005-09-27 21:45:37 -07002094CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002095M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002096W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002097W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002099F: Documentation/cgroups/cpusets.txt
2100F: include/linux/cpuset.h
2101F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002104W: http://sourceforge.net/projects/cramfs/
2105S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002106F: Documentation/filesystems/cramfs.txt
2107F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002110M: Mikael Starvik <starvik@axis.com>
2111M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002112L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113W: http://developer.axis.com
2114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002116F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: Herbert Xu <herbert@gondor.apana.org.au>
2120M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002122T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002124F: Documentation/crypto/
2125F: arch/*/crypto/
2126F: crypto/
2127F: drivers/crypto/
2128F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Neil Horman5b07bd52009-02-05 16:03:04 +11002130CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002132L: linux-crypto@vger.kernel.org
2133S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002134F: crypto/ansi_cprng.c
2135F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002136
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002137CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002138M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002140F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002141
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002142CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002143M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002144L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002145L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002146T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002147W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002148W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002150F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002151F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002152
Antti Palosaari91952bc2012-10-01 12:28:46 -03002153CXD2820R MEDIA DRIVER
2154M: Antti Palosaari <crope@iki.fi>
2155L: linux-media@vger.kernel.org
2156W: http://linuxtv.org/
2157W: http://palosaari.fi/linux/
2158Q: http://patchwork.linuxtv.org/project/linux-media/list/
2159T: git git://linuxtv.org/anttip/media_tree.git
2160S: Maintained
2161F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002162
Steve Wisee5ec3782008-05-20 14:06:33 -07002163CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002164M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002165L: netdev@vger.kernel.org
2166W: http://www.chelsio.com
2167S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002168F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002169
2170CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002171M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002172L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002173W: http://www.openfabrics.org
2174S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002175F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002176
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002177CXGB4 ETHERNET DRIVER (CXGB4)
2178M: Dimitris Michailidis <dm@chelsio.com>
2179L: netdev@vger.kernel.org
2180W: http://www.chelsio.com
2181S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002182F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002183
2184CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2185M: Steve Wise <swise@chelsio.com>
2186L: linux-rdma@vger.kernel.org
2187W: http://www.openfabrics.org
2188S: Supported
2189F: drivers/infiniband/hw/cxgb4/
2190
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002191CXGB4VF ETHERNET DRIVER (CXGB4VF)
2192M: Casey Leedom <leedom@chelsio.com>
2193L: netdev@vger.kernel.org
2194W: http://www.chelsio.com
2195S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002196F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002197
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002198STMMAC ETHERNET DRIVER
2199M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2200L: netdev@vger.kernel.org
2201W: http://www.stlinux.com
2202S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002203F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002206M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208W: http://www.arm.linux.org.uk/
2209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002210F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002213M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002214W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002216F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002220S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002221F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002222F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002226S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002227F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002229CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002230M: Javier Martinez Canillas <javier@dowhile0.org>
2231L: linux-input@vger.kernel.org
2232S: Maintained
2233F: drivers/input/touchscreen/cyttsp*
2234F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238W: http://yaina.de/jreuter/
2239W: http://www.qsl.net/dl1bke/
2240L: linux-hams@vger.kernel.org
2241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002242F: net/ax25/af_ax25.c
2243F: net/ax25/ax25_dev.c
2244F: net/ax25/ax25_ds_*
2245F: net/ax25/ax25_in.c
2246F: net/ax25/ax25_out.c
2247F: net/ax25/ax25_timer.c
2248F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002250DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002251L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002252S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002253F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002254F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002255
2256DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002257M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002258W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002259M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002261F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002264M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002265M: Ali Akcaagac <aliakc@web.de>
2266M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002268L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269L: http://lists.twibble.org/mailman/listinfo/dc395x/
2270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002271F: Documentation/scsi/dc395x.txt
2272F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002274DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002275M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002276L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002277W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002279F: include/linux/dccp.h
2280F: include/linux/tfrc.h
2281F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284W: http://linux-decnet.sourceforge.net
2285L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002286S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002287F: Documentation/networking/decnet.txt
2288F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002291M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002293F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002295DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002296M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002297L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002299F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002302M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303W: http://www.debian.org/~dz/i8k/
2304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002305F: drivers/char/i8k.c
2306F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Doug Warzecha90563ec2005-09-06 15:17:15 -07002308DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002309M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002311F: Documentation/dcdbas.txt
2312F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002313
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002314DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002315M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002316S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002317F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002318
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002319DESIGNWARE USB3 DRD IP DRIVER
2320M: Felipe Balbi <balbi@ti.com>
2321L: linux-usb@vger.kernel.org
2322L: linux-omap@vger.kernel.org
2323T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2324S: Maintained
2325F: drivers/usb/dwc3/
2326
Kyungmin Park89d07762012-01-10 15:09:09 -08002327DEVICE FREQUENCY (DEVFREQ)
2328M: MyungJoo Ham <myungjoo.ham@samsung.com>
2329M: Kyungmin Park <kyungmin.park@samsung.com>
2330L: linux-kernel@vger.kernel.org
2331S: Maintained
2332F: drivers/devfreq/
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002335M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337S: Maintained
2338
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002339DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002340M: Alasdair Kergon <agk@redhat.com>
2341M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002342L: dm-devel@redhat.com
2343W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002344Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002345T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002347F: Documentation/device-mapper/
2348F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002349F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002350F: include/linux/device-mapper.h
2351F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002352
Guenter Roeck335d7c52011-01-26 11:45:49 -08002353DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002354M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002355L: linux-i2c@vger.kernel.org
2356S: Maintained
2357F: drivers/i2c/busses/i2c-diolan-u2c.c
2358
Randy Dunlape7839f22008-10-12 16:11:45 -07002359DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002360M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002362F: Documentation/filesystems/dnotify.txt
2363F: fs/notify/dnotify/
2364F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
2366DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002367M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2369W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2370W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2371S: Maintained
2372
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002373DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002374M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002376F: Documentation/filesystems/quota.txt
2377F: fs/quota/
2378F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Bernie Thompson702686a2012-03-01 13:52:13 -08002380DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2381M: Bernie Thompson <bernie@plugable.com>
2382L: linux-fbdev@vger.kernel.org
2383S: Maintained
2384W: http://plugable.com/category/projects/udlfb/
2385F: drivers/video/udlfb.c
2386F: include/video/udlfb.h
2387F: Documentation/fb/udlfb.txt
2388
Randy Dunlape7839f22008-10-12 16:11:45 -07002389DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002390M: Christine Caulfield <ccaulfie@redhat.com>
2391M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002392L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002393W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002394T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002395S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002396F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002397
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302398DMA BUFFER SHARING FRAMEWORK
2399M: Sumit Semwal <sumit.semwal@linaro.org>
2400S: Maintained
2401L: linux-media@vger.kernel.org
2402L: dri-devel@lists.freedesktop.org
2403L: linaro-mm-sig@lists.linaro.org
2404F: drivers/base/dma-buf*
2405F: include/linux/dma-buf*
2406F: Documentation/dma-buf-sharing.txt
2407T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2408
Dan Williamsb3e5f262007-08-07 10:26:35 -07002409DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002410M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002411M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002413F: drivers/dma/
2414F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302415T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2416T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002417
Juerg Haefligerb8250372007-06-09 10:11:16 -04002418DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002419M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002420L: lm-sensors@lm-sensors.org
2421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: Documentation/hwmon/dme1737
2423F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002424
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002425DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002426M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002427L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002428S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002429F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002430
Joe Perches7d2c86b2009-04-07 20:59:01 -07002431DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002432M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002433L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002434T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002436F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002439M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440L: blinux-list@redhat.com
2441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002442F: drivers/char/dtlk.c
2443F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002445DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002446M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002447L: linux-scsi@vger.kernel.org
2448W: http://www.adaptec.com/
2449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002450F: drivers/scsi/dpt*
2451F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002452
Philipp Reisnerb411b362009-09-25 16:07:19 -07002453DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002454P: Philipp Reisner
2455P: Lars Ellenberg
2456M: drbd-dev@lists.linbit.com
2457L: drbd-user@lists.linbit.com
2458W: http://www.drbd.org
2459T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2460T: git git://git.drbd.org/drbd-8.3.git
2461S: Supported
2462F: drivers/block/drbd/
2463F: lib/lru_cache.c
2464F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002465
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002466DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002467M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002468T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002470F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002471F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002472F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002473F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002474F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002475F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002476F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002479M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002480L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002481T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002483F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002484F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Chris Wilson8daf7472010-09-28 14:07:26 +01002486INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002487M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002488L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002489L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002490T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002491S: Supported
2492F: drivers/gpu/drm/i915
2493F: include/drm/i915*
2494
Kyungmin Park398a6d42011-11-02 11:33:16 +09002495DRM DRIVERS FOR EXYNOS
2496M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002497M: Joonyoung Shim <jy0922.shim@samsung.com>
2498M: Seung-Woo Kim <sw0312.kim@samsung.com>
2499M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002500L: dri-devel@lists.freedesktop.org
2501S: Supported
2502F: drivers/gpu/drm/exynos
2503F: include/drm/exynos*
2504
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002506M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002507L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002509F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Antti Palosaari91952bc2012-10-01 12:28:46 -03002511DVB_USB_AF9015 MEDIA DRIVER
2512M: Antti Palosaari <crope@iki.fi>
2513L: linux-media@vger.kernel.org
2514W: http://linuxtv.org/
2515W: http://palosaari.fi/linux/
2516Q: http://patchwork.linuxtv.org/project/linux-media/list/
2517T: git git://linuxtv.org/anttip/media_tree.git
2518S: Maintained
2519F: drivers/media/usb/dvb-usb-v2/af9015*
2520
2521DVB_USB_AF9035 MEDIA DRIVER
2522M: Antti Palosaari <crope@iki.fi>
2523L: linux-media@vger.kernel.org
2524W: http://linuxtv.org/
2525W: http://palosaari.fi/linux/
2526Q: http://patchwork.linuxtv.org/project/linux-media/list/
2527T: git git://linuxtv.org/anttip/media_tree.git
2528S: Maintained
2529F: drivers/media/usb/dvb-usb-v2/af9035*
2530
2531DVB_USB_ANYSEE MEDIA DRIVER
2532M: Antti Palosaari <crope@iki.fi>
2533L: linux-media@vger.kernel.org
2534W: http://linuxtv.org/
2535W: http://palosaari.fi/linux/
2536Q: http://patchwork.linuxtv.org/project/linux-media/list/
2537T: git git://linuxtv.org/anttip/media_tree.git
2538S: Maintained
2539F: drivers/media/usb/dvb-usb-v2/anysee*
2540
2541DVB_USB_AU6610 MEDIA DRIVER
2542M: Antti Palosaari <crope@iki.fi>
2543L: linux-media@vger.kernel.org
2544W: http://linuxtv.org/
2545W: http://palosaari.fi/linux/
2546Q: http://patchwork.linuxtv.org/project/linux-media/list/
2547T: git git://linuxtv.org/anttip/media_tree.git
2548S: Maintained
2549F: drivers/media/usb/dvb-usb-v2/au6610*
2550
2551DVB_USB_CE6230 MEDIA DRIVER
2552M: Antti Palosaari <crope@iki.fi>
2553L: linux-media@vger.kernel.org
2554W: http://linuxtv.org/
2555W: http://palosaari.fi/linux/
2556Q: http://patchwork.linuxtv.org/project/linux-media/list/
2557T: git git://linuxtv.org/anttip/media_tree.git
2558S: Maintained
2559F: drivers/media/usb/dvb-usb-v2/ce6230*
2560
Michael Krufkyd099dea2012-10-02 00:56:20 -03002561DVB_USB_CXUSB MEDIA DRIVER
2562M: Michael Krufky <mkrufky@linuxtv.org>
2563L: linux-media@vger.kernel.org
2564W: http://linuxtv.org/
2565W: http://github.com/mkrufky
2566Q: http://patchwork.linuxtv.org/project/linux-media/list/
2567T: git git://linuxtv.org/media_tree.git
2568S: Maintained
2569F: drivers/media/usb/dvb-usb-v2/cxusb*
2570
Antti Palosaari91952bc2012-10-01 12:28:46 -03002571DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2572M: Antti Palosaari <crope@iki.fi>
2573L: linux-media@vger.kernel.org
2574W: http://linuxtv.org/
2575W: http://palosaari.fi/linux/
2576Q: http://patchwork.linuxtv.org/project/linux-media/list/
2577T: git git://linuxtv.org/anttip/media_tree.git
2578S: Maintained
2579F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2580
2581DVB_USB_EC168 MEDIA DRIVER
2582M: Antti Palosaari <crope@iki.fi>
2583L: linux-media@vger.kernel.org
2584W: http://linuxtv.org/
2585W: http://palosaari.fi/linux/
2586Q: http://patchwork.linuxtv.org/project/linux-media/list/
2587T: git git://linuxtv.org/anttip/media_tree.git
2588S: Maintained
2589F: drivers/media/usb/dvb-usb-v2/ec168*
2590
Michael Krufky8856f5f2012-10-02 00:55:50 -03002591DVB_USB_MXL111SF MEDIA DRIVER
2592M: Michael Krufky <mkrufky@linuxtv.org>
2593L: linux-media@vger.kernel.org
2594W: http://linuxtv.org/
2595W: http://github.com/mkrufky
2596Q: http://patchwork.linuxtv.org/project/linux-media/list/
2597T: git git://linuxtv.org/mkrufky/mxl111sf.git
2598S: Maintained
2599F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2600
Antti Palosaari91952bc2012-10-01 12:28:46 -03002601DVB_USB_RTL28XXU MEDIA DRIVER
2602M: Antti Palosaari <crope@iki.fi>
2603L: linux-media@vger.kernel.org
2604W: http://linuxtv.org/
2605W: http://palosaari.fi/linux/
2606Q: http://patchwork.linuxtv.org/project/linux-media/list/
2607T: git git://linuxtv.org/anttip/media_tree.git
2608S: Maintained
2609F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2610
2611DVB_USB_V2 MEDIA DRIVER
2612M: Antti Palosaari <crope@iki.fi>
2613L: linux-media@vger.kernel.org
2614W: http://linuxtv.org/
2615W: http://palosaari.fi/linux/
2616Q: http://patchwork.linuxtv.org/project/linux-media/list/
2617T: git git://linuxtv.org/anttip/media_tree.git
2618S: Maintained
2619F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2620F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2621
Jason Baronac0ac382011-08-11 14:36:43 -04002622DYNAMIC DEBUG
2623M: Jason Baron <jbaron@redhat.com>
2624S: Maintained
2625F: lib/dynamic_debug.c
2626F: include/linux/dynamic_debug.h
2627
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002628DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002630S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002631F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002632
Antti Palosaari91952bc2012-10-01 12:28:46 -03002633E4000 MEDIA DRIVER
2634M: Antti Palosaari <crope@iki.fi>
2635L: linux-media@vger.kernel.org
2636W: http://linuxtv.org/
2637W: http://palosaari.fi/linux/
2638Q: http://patchwork.linuxtv.org/project/linux-media/list/
2639T: git git://linuxtv.org/anttip/media_tree.git
2640S: Maintained
2641F: drivers/media/tuners/e4000*
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002644M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002645L: linux-eata@i-connect.net
2646L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002648F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002651M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652L: linux-scsi@vger.kernel.org
2653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002654F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002657M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002658L: linux-eata@i-connect.net
2659L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002661F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002664M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002665L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666W: http://ebtables.sourceforge.net/
2667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002668F: include/linux/netfilter_bridge/ebt_*.h
2669F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Antti Palosaari91952bc2012-10-01 12:28:46 -03002671EC100 MEDIA DRIVER
2672M: Antti Palosaari <crope@iki.fi>
2673L: linux-media@vger.kernel.org
2674W: http://linuxtv.org/
2675W: http://palosaari.fi/linux/
2676Q: http://patchwork.linuxtv.org/project/linux-media/list/
2677T: git git://linuxtv.org/anttip/media_tree.git
2678S: Maintained
2679F: drivers/media/dvb-frontends/ec100*
2680
Michael Halcrow237fead2006-10-04 02:16:22 -07002681ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002682M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002683M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002684L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002685W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002687F: Documentation/filesystems/ecryptfs.txt
2688F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002689
Alan Coxda9bb1d2006-01-18 17:44:13 -08002690EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002691M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002692L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002693W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002694S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002695F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002696F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002697F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002698
Borislav Petkovc476c232009-05-20 20:31:58 +02002699EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002700M: Doug Thompson <dougthompson@xmission.com>
2701M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002702L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002703W: bluesmoke.sourceforge.net
2704S: Supported
2705F: drivers/edac/amd64_edac*
2706
Dave Peterson0e438e32006-03-26 01:38:55 -08002707EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002708M: Mark Gross <mark.gross@intel.com>
2709M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002710L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002711W: bluesmoke.sourceforge.net
2712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002713F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002714
2715EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002716M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002717L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002718W: bluesmoke.sourceforge.net
2719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002721
Douglas Thompson6bc78402007-07-19 01:50:12 -07002722EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002723M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002724L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002725W: bluesmoke.sourceforge.net
2726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002727F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002728
2729EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002730M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002731L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002732W: bluesmoke.sourceforge.net
2733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002734F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002735
2736EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002737M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002738L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002739W: bluesmoke.sourceforge.net
2740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002741F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002742
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002743EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002744M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002745L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002746W: bluesmoke.sourceforge.net
2747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002748F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002749
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002750EDAC-I7300
2751M: Mauro Carvalho Chehab <mchehab@redhat.com>
2752L: linux-edac@vger.kernel.org
2753W: bluesmoke.sourceforge.net
2754S: Maintained
2755F: drivers/edac/i7300_edac.c
2756
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002757EDAC-I7CORE
2758M: Mauro Carvalho Chehab <mchehab@redhat.com>
2759L: linux-edac@vger.kernel.org
2760W: bluesmoke.sourceforge.net
2761S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002762F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002763
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002764EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002765M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302766M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002767L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002768W: bluesmoke.sourceforge.net
2769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002770F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002771
2772EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002773M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002774L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002775W: bluesmoke.sourceforge.net
2776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002777F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002778
Dave Peterson0e438e32006-03-26 01:38:55 -08002779EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002780M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002781L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002782W: bluesmoke.sourceforge.net
2783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002784F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002785
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002786EDAC-SBRIDGE
2787M: Mauro Carvalho Chehab <mchehab@redhat.com>
2788L: linux-edac@vger.kernel.org
2789W: bluesmoke.sourceforge.net
2790S: Maintained
2791F: drivers/edac/sb_edac.c
2792
Clemens Ladischaf399172011-01-10 16:32:54 +01002793EDIROL UA-101/UA-1000 DRIVER
2794M: Clemens Ladisch <clemens@ladisch.de>
2795L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2796T: git git://git.alsa-project.org/alsa-kernel.git
2797S: Maintained
2798F: sound/usb/misc/ua101.c
2799
Matt Fleming1f7df952012-10-03 10:04:02 +01002800EXTENSIBLE FIRMWARE INTERFACE (EFI)
2801M: Matt Fleming <matt.fleming@intel.com>
2802L: linux-efi@vger.kernel.org
2803S: Maintained
2804F: Documentation/x86/efi-stub.txt
2805F: arch/ia64/kernel/efi.c
2806F: arch/x86/boot/compressed/eboot.[ch]
2807F: arch/x86/include/asm/efi.h
2808F: arch/x86/platform/efi/*
2809F: drivers/firmware/efivars.c
2810F: include/linux/efi*.h
2811
Peter Jones85a00d92010-09-22 13:05:04 -07002812EFIFB FRAMEBUFFER DRIVER
2813L: linux-fbdev@vger.kernel.org
2814M: Peter Jones <pjones@redhat.com>
2815S: Maintained
2816F: drivers/video/efifb.c
2817
Josh Triplett0bee8d22006-07-30 03:03:58 -07002818EFS FILESYSTEM
2819W: http://aeschi.ch.eu.org/efs/
2820S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002821F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002822
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002823EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002824M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2825M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002826L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002828F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002829
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002830EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002831M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002832L: netdev@vger.kernel.org
2833S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002834F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002835
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002836EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002837M: Paul Gortmaker <paul.gortmaker@windriver.com>
2838M: Matt Mackall <mpm@selenic.com>
2839M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002840L: linux-embedded@vger.kernel.org
2841S: Maintained
2842
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002843EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002844M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002845L: linux-scsi@vger.kernel.org
2846W: http://sourceforge.net/projects/lpfcxxxx
2847S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002848F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002849
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002850ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002851M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002852S: Maintained
2853F: drivers/misc/cb710/
2854F: drivers/mmc/host/cb710-mmc.*
2855F: include/linux/cb710.h
2856
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002857ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2858M: Maxim Levitsky <maximlevitsky@gmail.com>
2859S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002860F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002863M: Christopher Hoover <ch@murgatroid.com>
2864M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002866F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002868EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002869M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002870S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002871T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002872F: drivers/video/s1d13xxxfb.c
2873F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002876M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002877L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002879F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
2881ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002882M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002883L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002884L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002885W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002887F: include/linux/netfilter_bridge/
2888F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
2890ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002891M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002893F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002896M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002897L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002899F: Documentation/filesystems/ext2.txt
2900F: fs/ext2/
2901F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
2903EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002904M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002905M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002906M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002907L: linux-ext4@vger.kernel.org
2908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002909F: Documentation/filesystems/ext3.txt
2910F: fs/ext3/
2911F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002912
2913EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002914M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002915M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002916L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002917W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002918Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002920F: Documentation/filesystems/ext4.txt
2921F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Mimi Zoharc5532b02011-08-17 18:52:24 -04002923Extended Verification Module (EVM)
2924M: Mimi Zohar <zohar@us.ibm.com>
2925S: Supported
2926F: security/integrity/evm/
2927
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002928EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2929M: MyungJoo Ham <myungjoo.ham@samsung.com>
2930M: Chanwoo Choi <cw00.choi@samsung.com>
2931L: linux-kernel@vger.kernel.org
2932S: Maintained
2933F: drivers/extcon/
2934F: Documentation/extcon/
2935
Jingoo Han0a799512012-02-06 11:30:39 +09002936EXYNOS DP DRIVER
2937M: Jingoo Han <jg1.han@samsung.com>
2938L: linux-fbdev@vger.kernel.org
2939S: Maintained
2940F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002941F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002942
Donghwa Lee33ad3912012-03-06 11:44:58 +09002943EXYNOS MIPI DISPLAY DRIVERS
2944M: Inki Dae <inki.dae@samsung.com>
2945M: Donghwa Lee <dh09.lee@samsung.com>
2946M: Kyungmin Park <kyungmin.park@samsung.com>
2947L: linux-fbdev@vger.kernel.org
2948S: Maintained
2949F: drivers/video/exynos/exynos_mipi*
2950F: include/video/exynos_mipi*
2951
Jean Delvaree53004e2006-01-09 23:26:14 +01002952F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002953M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002954L: lm-sensors@lm-sensors.org
2955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002956F: Documentation/hwmon/f71805f
2957F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002958
Michael Büscheea977e2012-04-02 12:14:32 -03002959FC0011 TUNER DRIVER
2960M: Michael Buesch <m@bues.ch>
2961L: linux-media@vger.kernel.org
2962S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002963F: drivers/media/tuners/fc0011.h
2964F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002965
Antti Palosaari91952bc2012-10-01 12:28:46 -03002966FC2580 MEDIA DRIVER
2967M: Antti Palosaari <crope@iki.fi>
2968L: linux-media@vger.kernel.org
2969W: http://linuxtv.org/
2970W: http://palosaari.fi/linux/
2971Q: http://patchwork.linuxtv.org/project/linux-media/list/
2972T: git git://linuxtv.org/anttip/media_tree.git
2973S: Maintained
2974F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Eric Paris88b2dbd2010-08-18 12:25:50 -04002976FANOTIFY
2977M: Eric Paris <eparis@redhat.com>
2978S: Maintained
2979F: fs/notify/fanotify/
2980F: include/linux/fanotify.h
2981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002983M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984W: http://www.farsite.co.uk/
2985S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002986F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Akinobu Mitac5408b82007-04-23 14:41:20 -07002988FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002989M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002990S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002991F: Documentation/fault-injection/
2992F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002993
Robert Lovecae727d2010-02-16 12:16:00 -08002994FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2995M: Robert Love <robert.w.love@intel.com>
2996L: devel@open-fcoe.org
2997W: www.Open-FCoE.org
2998S: Supported
2999F: drivers/scsi/libfc/
3000F: drivers/scsi/fcoe/
3001F: include/scsi/fc/
3002F: include/scsi/libfc.h
3003F: include/scsi/libfcoe.h
3004
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003005FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003006M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003007L: linux-fsdevel@vger.kernel.org
3008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003009F: include/linux/fcntl.h
3010F: include/linux/fs.h
3011F: fs/fcntl.c
3012F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003013
3014FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003015M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003016L: linux-fsdevel@vger.kernel.org
3017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003018F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003019
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003020FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003021M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003022L: lm-sensors@lm-sensors.org
3023S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003024F: drivers/hwmon/f75375s.c
3025F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003026
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003027FIREWIRE AUDIO DRIVERS
3028M: Clemens Ladisch <clemens@ladisch.de>
3029L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3030T: git git://git.alsa-project.org/alsa-kernel.git
3031S: Maintained
3032F: sound/firewire/
3033
Chris Boota511ce32012-04-14 17:50:35 -07003034FIREWIRE SBP-2 TARGET
3035M: Chris Boot <bootc@bootc.net>
3036L: linux-scsi@vger.kernel.org
3037L: target-devel@vger.kernel.org
3038L: linux1394-devel@lists.sourceforge.net
3039T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3040S: Maintained
3041F: drivers/target/sbp/
3042
Joe Perches7d2c86b2009-04-07 20:59:01 -07003043FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003044M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003045L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003046W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003047T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003049F: drivers/firewire/
3050F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003051F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003052
3053FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003054M: Ming Lei <ming.lei@canonical.com>
3055L: linux-kernel@vger.kernel.org
3056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003057F: Documentation/firmware_class/
3058F: drivers/base/firmware*.c
3059F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003060
Jiri Kosina8206f662012-05-18 13:52:29 +02003061FLOPPY DRIVER
3062M: Jiri Kosina <jkosina@suse.cz>
3063T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3064S: Odd fixes
3065F: drivers/block/floppy.c
3066
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003067FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003068M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003069W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003071F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003072
3073FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003074L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003075S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003076F: drivers/net/wan/dlci.c
3077F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003080M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003081L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003083Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003084T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003086F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003087F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003088F: drivers/video/
3089F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003090F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Zhang Wei173acc72008-03-01 07:42:48 -07003092FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003093M: Li Yang <leoli@freescale.com>
3094M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003095L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003097F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003098
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003099FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003100M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003101L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003102L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003105
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003106FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003107M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003108L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003109L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003111F: arch/arm/plat-mxc/include/mach/imxfb.h
3112F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003113
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003114FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003115M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3116M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003117L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003118L: netdev@vger.kernel.org
3119S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003120F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003121F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003122
Timur Tabid9e9d822008-04-24 08:45:26 +10003123FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003124M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003125L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003126S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003127F: arch/powerpc/sysdev/qe_lib/
3128F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003129
Joe Perchesb55ef9292009-10-26 16:49:46 -07003130FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003131M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003132L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003133L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003134S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003135F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003136
Li Yangbeaf53b2007-05-25 13:54:02 +08003137FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003138M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003139L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003140L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003141S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003142F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003143
Timur Tabid9e9d822008-04-24 08:45:26 +10003144FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003145M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003146L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003147S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003148F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003149
3150FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003151M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003152L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003153L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003154S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003155F: sound/soc/fsl/fsl*
3156F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003157
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003159M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003162F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Pavel Machek71038f52009-01-15 13:51:02 -08003164FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003165M: Pavel Machek <pavel@ucw.cz>
3166M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003167L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003169F: Documentation/power/freezing-of-tasks.txt
3170F: include/linux/freezer.h
3171F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003172
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003173FRONTSWAP API
3174M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3175L: linux-kernel@vger.kernel.org
3176S: Maintained
3177F: mm/frontswap.c
3178F: include/linux/frontswap.h
3179
David Howellsa5432f52009-04-20 15:46:45 +01003180FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003182L: linux-cachefs@redhat.com
3183S: Supported
3184F: Documentation/filesystems/caching/
3185F: fs/fscache/
3186F: include/linux/fscache*.h
3187
David Howells5ab7ffe2007-04-10 15:10:45 +01003188FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003189M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Jonathan Woithe20b93732008-06-11 10:14:56 +09303193FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303194M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003195L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003197F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303198
Heungjun Kim4da621b2011-11-11 08:05:33 -03003199FUJITSU M-5MO LS CAMERA ISP DRIVER
3200M: Kyungmin Park <kyungmin.park@samsung.com>
3201M: Heungjun Kim <riverful.kim@samsung.com>
3202L: linux-media@vger.kernel.org
3203S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003204F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003205F: include/media/m5mols.h
3206
Robert Gerlach2d24c492012-01-18 14:26:22 +01003207FUJITSU TABLET EXTRAS
3208M: Robert Gerlach <khnz@gmx.de>
3209L: platform-driver-x86@vger.kernel.org
3210S: Maintained
3211F: drivers/platform/x86/fujitsu-tablet.c
3212
Miklos Szeredi04578f12005-09-09 13:10:22 -07003213FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003214M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003215L: fuse-devel@lists.sourceforge.net
3216W: http://fuse.sourceforge.net/
3217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003218F: fs/fuse/
3219F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003222M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003224S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003225F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
3227GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003228M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229L: linux-scsi@vger.kernel.org
3230W: http://www.icp-vortex.com/
3231S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003232F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003234GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003235M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003237F: drivers/i2c/busses/i2c-gpio.c
3238F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003239
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003240GENERIC GPIO I2C MULTIPLEXER DRIVER
3241M: Peter Korsgaard <peter.korsgaard@barco.com>
3242L: linux-i2c@vger.kernel.org
3243S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003244F: drivers/i2c/muxes/i2c-mux-gpio.c
3245F: include/linux/i2c-mux-gpio.h
3246F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003247
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003248GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003249M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003252F: drivers/net/wan/c101.c
3253F: drivers/net/wan/hd6457*
3254F: drivers/net/wan/hdlc*
3255F: drivers/net/wan/n2.c
3256F: drivers/net/wan/pc300too.c
3257F: drivers/net/wan/pci200syn.c
3258F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003260GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003261M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003262L: linux-arch@vger.kernel.org
3263T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3264S: Maintained
3265F: include/asm-generic
3266
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003267GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003268M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003269L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003270S: Supported
3271F: drivers/uio/uio_pci_generic.c
3272
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003273GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003274M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003275L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003276W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003277T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3278T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003280F: Documentation/filesystems/gfs2*.txt
3281F: fs/gfs2/
3282F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003283
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003284GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003285M: Hansjoerg Lipp <hjlipp@web.de>
3286M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003287L: gigaset307x-common@lists.sourceforge.net
3288W: http://gigaset307x.sourceforge.net/
3289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003290F: Documentation/isdn/README.gigaset
3291F: drivers/isdn/gigaset/
3292F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003293
Grant Likelya0dc00b2011-02-12 01:48:14 -07003294GPIO SUBSYSTEM
3295M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003296M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003297S: Maintained
3298T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003299F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003300F: drivers/gpio/
3301F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003302F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003303
Harry Wei71a6d0a2011-05-11 15:13:33 -07003304GRE DEMULTIPLEXER DRIVER
3305M: Dmitry Kozlov <xeb@mail.ru>
3306L: netdev@vger.kernel.org
3307S: Maintained
3308F: net/ipv4/gre.c
3309F: include/net/gre.h
3310
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003311GRETH 10/100/1G Ethernet MAC device driver
3312M: Kristoffer Glembo <kristoffer@gaisler.com>
3313L: netdev@vger.kernel.org
3314S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003315F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003316
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003317GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003318M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003319L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003320T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003321S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003322F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003323
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003324GSPCA GL860 SUBDRIVER
3325M: Olivier Lorin <o.lorin@laposte.net>
3326L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003327T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003328S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003329F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003330
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003331GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003332M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003333L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003334T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003335S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003336F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003337
3338GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003340L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003341T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003342S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003343F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003344
Brian Johnson261982f2009-07-19 15:58:56 -03003345GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003346M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003347L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003348T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003349S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003350F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003351
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003352GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003353M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003354L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003355T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003356S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003357F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003358
3359GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003360M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003361L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003362T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003363S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003364F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003365
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003366STK1160 USB VIDEO CAPTURE DRIVER
3367M: Ezequiel Garcia <elezegarcia@gmail.com>
3368L: linux-media@vger.kernel.org
3369T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3370S: Maintained
3371F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003372
Harry Wei71a6d0a2011-05-11 15:13:33 -07003373HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3374M: Frank Seidel <frank@f-seidel.de>
3375L: platform-driver-x86@vger.kernel.org
3376W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3377S: Maintained
3378F: drivers/platform/x86/hdaps.c
3379
3380HWPOISON MEMORY FAILURE HANDLING
3381M: Andi Kleen <andi@firstfloor.org>
3382L: linux-mm@kvack.org
3383T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3384S: Maintained
3385F: mm/memory-failure.c
3386F: mm/hwpoison-inject.c
3387
3388HYPERVISOR VIRTUAL CONSOLE DRIVER
3389L: linuxppc-dev@lists.ozlabs.org
3390S: Odd Fixes
3391F: drivers/tty/hvc/
3392
Michael Buesch844dd052006-06-26 00:24:59 -07003393HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003394M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003395M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003396L: lm-sensors@lm-sensors.org
3397W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003398T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003399T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003400S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003401F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003402F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003403F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003404
3405HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003406M: Matt Mackall <mpm@selenic.com>
3407M: Herbert Xu <herbert@gondor.apana.org.au>
3408S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003409F: Documentation/hw_random.txt
3410F: drivers/char/hw_random/
3411F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003412
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003413HARDWARE SPINLOCK CORE
3414M: Ohad Ben-Cohen <ohad@wizery.com>
3415S: Maintained
3416F: Documentation/hwspinlock.txt
3417F: drivers/hwspinlock/hwspinlock_*
3418F: include/linux/hwspinlock.h
3419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003421L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003423F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Antti Palosaari91952bc2012-10-01 12:28:46 -03003425HD29L2 MEDIA DRIVER
3426M: Antti Palosaari <crope@iki.fi>
3427L: linux-media@vger.kernel.org
3428W: http://linuxtv.org/
3429W: http://palosaari.fi/linux/
3430Q: http://patchwork.linuxtv.org/project/linux-media/list/
3431T: git git://linuxtv.org/anttip/media_tree.git
3432S: Maintained
3433F: drivers/media/dvb-frontends/hd29l2*
3434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003435HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003436M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003437L: iss_storagedev@hp.com
3438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003439F: Documentation/blockdev/cpqarray.txt
3440F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003441
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003442HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003443M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003444L: iss_storagedev@hp.com
3445S: Supported
3446F: Documentation/scsi/hpsa.txt
3447F: drivers/scsi/hpsa*.[ch]
3448F: include/linux/cciss*.h
3449
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003450HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003451M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003452L: iss_storagedev@hp.com
3453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003454F: Documentation/blockdev/cciss.txt
3455F: drivers/block/cciss*
3456F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003457
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003459L: linux-fsdevel@vger.kernel.org
3460S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003461F: Documentation/filesystems/hfs.txt
3462F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003465M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466L: linux-nvidia@lists.surfsouth.com
3467W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003469F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003471HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003472M: Pavel Machek <pavel@ucw.cz>
3473M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003474L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003475S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003476F: arch/x86/power/
3477F: drivers/base/power/
3478F: kernel/power/
3479F: include/linux/suspend.h
3480F: include/linux/freezer.h
3481F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003482F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003483
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003484HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003485M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003486L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003487T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003489F: drivers/hid/
3490F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003491
Ingo Molnar38bed542007-02-22 09:09:34 +01003492HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003493M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003494T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003496F: Documentation/timers/
3497F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003498F: kernel/time/clockevents.c
3499F: kernel/time/tick*.*
3500F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003501F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003502F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003503
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003506S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003507F: drivers/net/hamradio/dmascc.c
3508F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003510HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003511M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003512W: http://www.highpoint-tech.com
3513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003514F: Documentation/scsi/hptiop.txt
3515F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003516
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003518M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519L: linux-hippi@sunsite.dk
3520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003521F: include/linux/hippidevice.h
3522F: include/linux/if_hippi.h
3523F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003524F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
Jouni Malinenff1d2762005-05-12 22:54:16 -04003526HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003527M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003528L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003529L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003530W: http://hostap.epitest.fi/
3531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003532F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003533
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003534HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003535L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003536S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003537F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003538
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003539HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003540M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003541S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003542F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003543
Joe Perches7d2c86b2009-04-07 20:59:01 -07003544HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003545M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003547F: Documentation/timers/hpet.txt
3548F: drivers/char/hpet.c
3549F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003550
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003551HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003552M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003554F: arch/x86/kernel/hpet.c
3555F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003558M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003561F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562
Joe Perches7d2c86b2009-04-07 20:59:01 -07003563HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003565W: http://www.pharscape.org
3566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003567F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003568
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003569HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003570M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003571L: linux-input@vger.kernel.org
3572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003573F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003574
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003576M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003580Hyper-V CORE AND DRIVERS
3581M: K. Y. Srinivasan <kys@microsoft.com>
3582M: Haiyang Zhang <haiyangz@microsoft.com>
3583L: devel@linuxdriverproject.org
3584S: Maintained
3585F: drivers/hv/
3586F: drivers/hid/hid-hyperv.c
3587F: drivers/net/hyperv/
3588F: drivers/staging/hv/
3589
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003590I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003591M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003592L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003594F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003595
Jean Delvare5b543962005-08-15 19:51:02 +02003596I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003597M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3598M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003599M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003600L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003601W: http://i2c.wiki.kernel.org/
3602T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003603T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003605F: Documentation/i2c/
3606F: drivers/i2c/
3607F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003608F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
Till Harbaume8c76ee2007-05-01 23:26:35 +02003610I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003611M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003612L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003613W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003615F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003616
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003618M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003620F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
3622i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003623M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003624T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625S: Maintained
3626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003628M: Tony Luck <tony.luck@intel.com>
3629M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003631T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003633F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634
Kent Yoder956c2032012-09-07 04:17:01 +08003635IBM Power in-Nest Crypto Acceleration
3636M: Kent Yoder <key@linux.vnet.ibm.com>
3637L: linux-crypto@vger.kernel.org
3638S: Supported
3639F: drivers/crypto/nx/
3640
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003641IBM Power 842 compression accelerator
3642M: Robert Jennings <rcj@linux.vnet.ibm.com>
3643S: Supported
3644F: drivers/crypto/nx/nx-842.c
3645F: include/linux/nx842.h
3646
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003648M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003650F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
Santiago Leon9d348af2010-09-03 18:29:53 +00003652IBM Power Virtual Ethernet Device Driver
3653M: Santiago Leon <santil@linux.vnet.ibm.com>
3654L: netdev@vger.kernel.org
3655S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003656F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003657
Robert Jennings4b7652c2012-07-31 12:34:36 -05003658IBM Power Virtual SCSI/FC Device Drivers
3659M: Robert Jennings <rcj@linux.vnet.ibm.com>
3660L: linux-scsi@vger.kernel.org
3661S: Supported
3662F: drivers/scsi/ibmvscsi/
3663X: drivers/scsi/ibmvscsi/ibmvstgt.c
3664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665IBM ServeRAID RAID DRIVER
3666P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003667M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003670F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003672ICH LPC AND GPIO DRIVER
3673M: Peter Tyser <ptyser@xes-inc.com>
3674S: Maintained
3675F: drivers/mfd/lpc_ich.c
3676F: drivers/gpio/gpio-ich.c
3677
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003678IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003679M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003681Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003682T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003684F: Documentation/ide/
3685F: drivers/ide/
3686F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687
Ike Panhc6cb8c132011-08-25 22:28:45 +08003688IDEAPAD LAPTOP EXTRAS DRIVER
3689M: Ike Panhc <ike.pan@canonical.com>
3690L: platform-driver-x86@vger.kernel.org
3691W: http://launchpad.net/ideapad-laptop
3692S: Maintained
3693F: drivers/platform/x86/ideapad-laptop.c
3694
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003695IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003696M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003697L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003699F: Documentation/cdrom/ide-cd
3700F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Andy Henroid27471fd2008-10-09 11:45:22 -07003702IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003703M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003704L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003705S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003706F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003707
Sergey Lapin02cf2282009-06-08 12:18:50 +00003708IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003709M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003710M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003711L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003712W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003713T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003714S: Maintained
3715F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003716F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003717F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003718
Ameya Palande9545f862012-01-10 09:00:58 -08003719IIO SUBSYSTEM AND DRIVERS
3720M: Jonathan Cameron <jic23@cam.ac.uk>
3721L: linux-iio@vger.kernel.org
3722S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003723F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003724F: drivers/staging/iio/
3725
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003726IKANOS/ADI EAGLE ADSL USB DRIVER
3727M: Matthieu Castet <castet.matthieu@free.fr>
3728M: Stanislaw Gruszka <stf_xl@wp.pl>
3729S: Maintained
3730F: drivers/usb/atm/ueagle-atm.c
3731
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003732INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003733M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003735F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003738L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003739S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003740F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
3742INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003743M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003744M: Sean Hefty <sean.hefty@intel.com>
3745M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003746L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003747W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003748Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003749T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003751F: Documentation/infiniband/
3752F: drivers/infiniband/
3753F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
Robert Lovec9f04f52005-07-15 12:21:07 -04003755INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003756M: John McCutchan <john@johnmccutchan.com>
3757M: Robert Love <rlove@rlove.org>
3758M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: Documentation/filesystems/inotify.txt
3761F: fs/notify/inotify/
3762F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003763
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003764INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003765M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3766M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003767L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003768Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003769T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003772F: include/linux/input.h
3773F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003774
Henrik Rydberg3267a872010-06-24 19:10:40 -07003775INPUT MULTITOUCH (MT) PROTOCOL
3776M: Henrik Rydberg <rydberg@euromail.se>
3777L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003778T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003779S: Maintained
3780F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003781F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003782K: \b(ABS|SYN)_MT_
3783
Dave Jiang4ac13e12011-07-29 17:16:55 -07003784INTEL C600 SERIES SAS CONTROLLER DRIVER
3785M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003786M: Lukasz Dorau <lukasz.dorau@intel.com>
3787M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003788M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003789L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003790T: git git://git.code.sf.net/p/intel-sas/isci
3791S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003792F: drivers/scsi/isci/
3793F: firmware/isci/
3794
Len Brown26717172010-03-08 14:07:30 -05003795INTEL IDLE DRIVER
3796M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003797L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003798T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003799S: Supported
3800F: drivers/idle/intel_idle.c
3801
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003802INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003803M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003804L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003806F: Documentation/fb/intelfb.txt
3807F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003811L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003813F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303815INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003816M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003817L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303818W: http://www.lesswatts.org/projects/acpi/
3819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003820F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003823M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003825F: arch/x86/kernel/microcode_core.c
3826F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003828INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003829M: Dan Williams <djbw@fb.com>
3830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003831F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003832
David Woodhouse6c8909b2008-10-18 16:12:17 +01003833INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003834M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003835L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003836T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003837S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003838F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003839F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003840
Dan Williamsb3e5f262007-08-07 10:26:35 -07003841INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003842M: Dan Williams <djbw@fb.com>
3843S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003844F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003845
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003846INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003847M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003849F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3850F: arch/arm/mach-ixp4xx/include/mach/npe.h
3851F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3852F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003853F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003854F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003855
Michael Buesch844dd052006-06-26 00:24:59 -07003856INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003857M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003859F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003860
Jeff Kirsher0d164402010-10-05 01:15:17 +00003861INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003862M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3863M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3864M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003865M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3866M: Don Skidmore <donald.c.skidmore@intel.com>
3867M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003868M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003869M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003870M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003871L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003872W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003873T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003876F: Documentation/networking/e100.txt
3877F: Documentation/networking/e1000.txt
3878F: Documentation/networking/e1000e.txt
3879F: Documentation/networking/igb.txt
3880F: Documentation/networking/igbvf.txt
3881F: Documentation/networking/ixgb.txt
3882F: Documentation/networking/ixgbe.txt
3883F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003884F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Len Brown6dccf9c2011-07-12 22:29:32 -04003886INTEL MRST PMU DRIVER
3887M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003888L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003889S: Supported
3890F: arch/x86/platform/mrst/pmu.*
3891
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003892INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3893M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003894L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003896F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003897F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003898F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003899
Shane Wang4bd96a72010-03-10 14:36:10 +08003900INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003901M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3902M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003903M: Shane Wang <shane.wang@intel.com>
3904L: tboot-devel@lists.sourceforge.net
3905W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003906T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003907S: Supported
3908F: Documentation/intel_txt.txt
3909F: include/linux/tboot.h
3910F: arch/x86/kernel/tboot.c
3911
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003912INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003913M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003914M: linux-wimax@intel.com
3915L: wimax@linuxwimax.org
3916S: Supported
3917W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003918F: Documentation/wimax/README.i2400m
3919F: drivers/net/wimax/i2400m/
3920F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003921
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003922INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3923M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003924L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003925S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003926F: drivers/net/wireless/iwlegacy/
3927
Zhu Yib481de92007-09-25 17:54:57 -07003928INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003929M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003930M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003931M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003932L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003933W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003934T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003935S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003936F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003937
Tomas Winklerde8fe022012-05-09 16:39:02 +03003938INTEL MANAGEMENT ENGINE (mei)
3939M: Tomas Winkler <tomas.winkler@intel.com>
3940L: linux-kernel@vger.kernel.org
3941S: Supported
3942F: include/linux/mei.h
3943F: drivers/misc/mei/*
3944F: Documentation/mei/*
3945
Ralf Baechlecb109a02007-08-30 23:56:30 -07003946IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003947M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948L: linux-mips@linux-mips.org
3949S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003950F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Ralf Baechlecb109a02007-08-30 23:56:30 -07003952IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003953M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003954L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003955S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003956F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003957
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003958IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003959M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003961F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
Francois Romieu1202d6f2007-09-17 17:13:55 -07003963IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003964M: Francois Romieu <romieu@fr.zoreil.com>
3965M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003966L: netdev@vger.kernel.org
3967S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003968F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003969
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003970IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003971M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003972L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003975
Corey Minyard4409ebe2006-04-20 02:43:12 -07003976IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003977M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003978L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003979W: http://openipmi.sourceforge.net/
3980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003981F: Documentation/IPMI.txt
3982F: drivers/char/ipmi/
3983F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003984
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003985IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003986M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003987L: linux-scsi@vger.kernel.org
3988W: http://www.adaptec.com/
3989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003990F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003991
3992IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003993M: Wensong Zhang <wensong@linux-vs.org>
3994M: Simon Horman <horms@verge.net.au>
3995M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003996L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003997L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003999F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004000F: include/net/ip_vs.h
4001F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004002F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003
Randy Dunlape7839f22008-10-12 16:11:45 -07004004IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004005M: Jiri Kosina <jkosina@suse.cz>
4006M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004007S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004008F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004009
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004010IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004011M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004012L: netdev@vger.kernel.org
4013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004014F: include/linux/ipx.h
4015F: include/net/ipx.h
4016F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004017
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004020L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004021L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004023S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004024T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004025F: Documentation/networking/irda.txt
4026F: drivers/net/irda/
4027F: include/net/irda/
4028F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004030IRQ SUBSYSTEM
4031M: Thomas Gleixner <tglx@linutronix.de>
4032S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004033T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004034F: kernel/irq/
4035
Grant Likely7ab3a832012-02-14 14:06:47 -07004036IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4037M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4038M: Grant Likely <grant.likely@secretlab.ca>
4039T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4040S: Maintained
4041F: Documentation/IRQ-domain.txt
4042F: include/linux/irqdomain.h
4043F: kernel/irq/irqdomain.c
4044
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004045ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004046M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004048F: Documentation/isapnp.txt
4049F: drivers/pnp/isapnp/
4050F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004051
Harry Wei71a6d0a2011-05-11 15:13:33 -07004052iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4053M: Peter Jones <pjones@redhat.com>
4054M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4055S: Maintained
4056F: drivers/firmware/iscsi_ibft*
4057
Mike Christie14816b1e2007-11-28 16:22:06 -08004058ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004059M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004060L: open-iscsi@googlegroups.com
4061W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004062T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004064F: drivers/scsi/*iscsi*
4065F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004066
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004068M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004069L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004070L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004072T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004074F: Documentation/isdn/
4075F: drivers/isdn/
4076F: include/linux/isdn.h
4077F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004080M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004081L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082W: http://www.melware.de
4083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004084F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Jean Delvared6248702010-03-05 22:17:20 +01004086IT87 HARDWARE MONITORING DRIVER
4087M: Jean Delvare <khali@linux-fr.org>
4088L: lm-sensors@lm-sensors.org
4089S: Maintained
4090F: Documentation/hwmon/it87
4091F: drivers/hwmon/it87.c
4092
Hans Verkuil91821ff2007-12-02 09:35:33 -03004093IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004094M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004095L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004096L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004097T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004098W: http://www.ivtvdriver.org
4099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004100F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004101F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004102F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004103
Guenter Roeck4453d732010-08-09 17:21:08 -07004104JC42.4 TEMPERATURE SENSOR DRIVER
4105M: Guenter Roeck <linux@roeck-us.net>
4106L: lm-sensors@lm-sensors.org
4107S: Maintained
4108F: drivers/hwmon/jc42.c
4109F: Documentation/hwmon/jc42
4110
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004111JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004112M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004113L: jfs-discussion@lists.sourceforge.net
4114W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004115T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/filesystems/jfs.txt
4118F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004119
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004120JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004121M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004122L: netdev@vger.kernel.org
4123S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004124F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004125
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004128L: linux-mtd@lists.infradead.org
4129W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004131F: fs/jffs2/
4132F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
Josh Triplettde456d32006-07-30 03:04:00 -07004134JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004135M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004136M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004137L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004138S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004139F: fs/jbd/
4140F: include/linux/ext3_jbd.h
4141F: include/linux/jbd.h
4142
4143JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4144M: "Theodore Ts'o" <tytso@mit.edu>
4145L: linux-ext4@vger.kernel.org
4146S: Maintained
4147F: fs/jbd2/
4148F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004149
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004150JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004151M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004152L: linux-serial@vger.kernel.org
4153S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004154F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004155
Clemens Ladischaf399172011-01-10 16:32:54 +01004156K10TEMP HARDWARE MONITORING DRIVER
4157M: Clemens Ladisch <clemens@ladisch.de>
4158L: lm-sensors@lm-sensors.org
4159S: Maintained
4160F: Documentation/hwmon/k10temp
4161F: drivers/hwmon/k10temp.c
4162
Rudolf Marek4660cb32006-10-08 22:01:26 +02004163K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004164M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004165L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004167F: Documentation/hwmon/k8temp
4168F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
4170KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004171M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004172L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004173S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004174F: Documentation/kbuild/kconfig-language.txt
4175F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Vivek Goyalea6c2082006-05-20 14:59:55 -07004177KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004178M: Vivek Goyal <vgoyal@redhat.com>
4179M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004180L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004181W: http://lse.sourceforge.net/kdump/
4182S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004183F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004184
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004187L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004189F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Michal Marek70fb7ba2010-01-29 14:22:43 +01004191KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004192M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004193T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4194T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004195L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004197F: Documentation/kbuild/
4198F: Makefile
4199F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004200F: scripts/basic/
4201F: scripts/mk*
4202F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203
4204KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004205L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004206W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004207S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004209KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004210M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004211L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004214F: fs/nfsd/
4215F: include/linux/nfsd/
4216F: fs/lockd/
4217F: fs/nfs_common/
4218F: net/sunrpc/
4219F: include/linux/lockd/
4220F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Avi Kivity426d62e2006-12-13 00:34:03 -08004222KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004223M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004224M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004225L: kvm@vger.kernel.org
4226W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004227S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004228F: Documentation/*/kvm.txt
4229F: arch/*/kvm/
4230F: arch/*/include/asm/kvm*
4231F: include/linux/kvm*
4232F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004233
Joerg Roedelad8003d2008-09-10 20:01:07 +02004234KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004235M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004236L: kvm@vger.kernel.org
4237W: http://kvm.qumranet.com
4238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004239F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004240F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004241
Hollis Blanchard513014b2008-04-16 23:28:08 -05004242KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004243M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004244L: kvm-ppc@vger.kernel.org
4245W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004246S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004247F: arch/powerpc/include/asm/kvm*
4248F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004249
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004250KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004251M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004252L: kvm-ia64@vger.kernel.org
4253W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004255F: Documentation/ia64/kvm.txt
4256F: arch/ia64/include/asm/kvm*
4257F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004258
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004259KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004260M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004261M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004262M: linux390@de.ibm.com
4263L: linux-s390@vger.kernel.org
4264W: http://www.ibm.com/developerworks/linux/linux390/
4265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004266F: Documentation/s390/kvm.txt
4267F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004268F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004269F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004270
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004271KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004272M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004273W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004274L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004276F: include/linux/kexec.h
4277F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004278
David Howellse9714612010-03-29 23:42:09 +01004279KEYS/KEYRINGS:
4280M: David Howells <dhowells@redhat.com>
4281L: keyrings@linux-nfs.org
4282S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004283F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004284F: include/linux/key.h
4285F: include/linux/key-type.h
4286F: include/keys/
4287F: security/keys/
4288
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004289KEYS-TRUSTED
4290M: David Safford <safford@watson.ibm.com>
4291M: Mimi Zohar <zohar@us.ibm.com>
4292L: linux-security-module@vger.kernel.org
4293L: keyrings@linux-nfs.org
4294S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004295F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004296F: include/keys/trusted-type.h
4297F: security/keys/trusted.c
4298F: security/keys/trusted.h
4299
4300KEYS-ENCRYPTED
4301M: Mimi Zohar <zohar@us.ibm.com>
4302M: David Safford <safford@watson.ibm.com>
4303L: linux-security-module@vger.kernel.org
4304L: keyrings@linux-nfs.org
4305S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004306F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004307F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004308F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004309
Jason Wessel5b778da2010-05-20 21:04:28 -05004310KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004311M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004312W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004313L: kgdb-bugreport@lists.sourceforge.net
4314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004315F: Documentation/DocBook/kgdb.tmpl
4316F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004317F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004318F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004319F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004320F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004321
Pekka Enberg456db8c2008-04-28 22:47:29 +03004322KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004323M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004324M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004325S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004326F: Documentation/kmemcheck.txt
4327F: arch/x86/include/asm/kmemcheck.h
4328F: arch/x86/mm/kmemcheck/
4329F: include/linux/kmemcheck.h
4330F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004331
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004332KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004333M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004334S: Maintained
4335F: Documentation/kmemleak.txt
4336F: include/linux/kmemleak.h
4337F: mm/kmemleak.c
4338F: mm/kmemleak-test.c
4339
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004340KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4342M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4343M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004344M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004346F: Documentation/kprobes.txt
4347F: include/linux/kprobes.h
4348F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004349
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004350KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004351M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004352W: http://miguelojeda.es/auxdisplay.htm
4353W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004355F: Documentation/auxdisplay/ks0108
4356F: drivers/auxdisplay/ks0108.c
4357F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004361S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004362F: Documentation/networking/lapb-module.txt
4363F: include/*/lapb.h
4364F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
4366LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004367M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368L: linux-scsi@vger.kernel.org
4369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004370F: Documentation/scsi/53c700.txt
4371F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
Richard Purdie263de9b2006-05-15 09:44:16 -07004373LED SUBSYSTEM
Bryan Wu17ff3c12012-05-10 13:01:47 -07004374M: Bryan Wu <bryan.wu@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004375M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004376L: linux-leds@vger.kernel.org
4377T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004379F: drivers/leds/
4380F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004381
Jean Delvareb0461a42011-06-15 15:08:46 -07004382LEGACY EEPROM DRIVER
4383M: Jean Delvare <khali@linux-fr.org>
4384S: Maintained
4385F: Documentation/misc-devices/eeprom
4386F: drivers/misc/eeprom/eeprom.c
4387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004389M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390L: legousb-devel@lists.sourceforge.net
4391W: http://legousb.sourceforge.net/
4392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004393F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
Michael Krufky055616a2012-10-02 00:56:06 -03004395LG2160 MEDIA DRIVER
4396M: Michael Krufky <mkrufky@linuxtv.org>
4397L: linux-media@vger.kernel.org
4398W: http://linuxtv.org/
4399W: http://github.com/mkrufky
4400Q: http://patchwork.linuxtv.org/project/linux-media/list/
4401T: git git://linuxtv.org/mkrufky/tuners.git
4402S: Maintained
4403F: drivers/media/dvb-frontends/lg2160.*
4404
Michael Krufky6f0e7722012-10-02 00:56:00 -03004405LGDT3305 MEDIA DRIVER
4406M: Michael Krufky <mkrufky@linuxtv.org>
4407L: linux-media@vger.kernel.org
4408W: http://linuxtv.org/
4409W: http://github.com/mkrufky
4410Q: http://patchwork.linuxtv.org/project/linux-media/list/
4411T: git git://linuxtv.org/mkrufky/tuners.git
4412S: Maintained
4413F: drivers/media/dvb-frontends/lgdt3305.*
4414
Rusty Russell568a17f2007-10-25 14:12:24 +10004415LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004416M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004417L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004418W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004419S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004420F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004421F: arch/x86/lguest/
4422F: drivers/lguest/
4423F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004424F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428W: http://www.ibm.com/linux/ltc/projects/ppc
4429S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004430F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004432LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004433M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4434M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004436L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004437Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004438T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004440F: Documentation/powerpc/
4441F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
4443LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004446L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004448F: arch/powerpc/platforms/powermac/
4449F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450
Grant Likely77a76362008-07-12 12:11:43 -06004451LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004452M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004453L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004454T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004456F: arch/powerpc/platforms/512x/
4457F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458
4459LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004460M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004463L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004464T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004466F: arch/powerpc/platforms/40x/
4467F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Grant Likely260c02a2007-10-02 12:15:34 +10004469LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004470M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004471W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004472L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004473T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004475F: arch/powerpc/*/*virtex*
4476F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Tom Rinie93adf12005-07-26 12:49:53 -07004478LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004479M: Vitaly Bordug <vitb@kernel.crashing.org>
4480M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004481W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004482L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004483S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004484F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004487M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004488W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004489L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004490S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004491F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004492F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493
Olof Johanssonab06ff32006-09-06 14:44:54 -05004494LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004495M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004496L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004497S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004498F: arch/powerpc/platforms/pasemi/
4499F: drivers/*/*pasemi*
4500F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004501
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004503M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004504L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505S: Supported
4506
Harry Weia23ce6d2011-02-11 16:52:20 +01004507LIS3LV02D ACCELEROMETER DRIVER
4508M: Eric Piel <eric.piel@tremplin-utc.net>
4509S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004510F: Documentation/misc-devices/lis3lv02d
4511F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004512F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004513
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004514LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004515M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004517F: include/linux/llc.h
4518F: include/net/llc*
4519F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004520
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004521LM73 HARDWARE MONITOR DRIVER
4522M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4523L: lm-sensors@lm-sensors.org
4524S: Maintained
4525F: drivers/hwmon/lm73.c
4526
Jean Delvare156e2d12011-07-25 21:46:11 +02004527LM78 HARDWARE MONITOR DRIVER
4528M: Jean Delvare <khali@linux-fr.org>
4529L: lm-sensors@lm-sensors.org
4530S: Maintained
4531F: Documentation/hwmon/lm78
4532F: drivers/hwmon/lm78.c
4533
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004535M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004536L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004538F: Documentation/hwmon/lm83
4539F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
4541LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004543L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004545F: Documentation/hwmon/lm90
4546F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004548LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: Peter Zijlstra <peterz@infradead.org>
4550M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004551T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004553F: Documentation/lockdep*.txt
4554F: Documentation/lockstat.txt
4555F: include/linux/lockdep.h
4556F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004557
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004558LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004560L: linux-ntfs-dev@lists.sourceforge.net
4561W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004563F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004564F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Joern Engelef6ada32009-11-20 22:17:12 +01004566LogFS
4567M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304568M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004569L: logfs@logfs.org
4570W: logfs.org
4571S: Maintained
4572F: fs/logfs/
4573
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004574LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004575M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004576M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004577L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004578L: linux-scsi@vger.kernel.org
4579W: http://www.lsilogic.com/support
4580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004581F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004582
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585L: linux-scsi@vger.kernel.org
4586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004587F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
Guenter Roecke5f5c992010-06-25 11:59:54 -07004589LTC4261 HARDWARE MONITOR DRIVER
4590M: Guenter Roeck <linux@roeck-us.net>
4591L: lm-sensors@lm-sensors.org
4592S: Maintained
4593F: Documentation/hwmon/ltc4261
4594F: drivers/hwmon/ltc4261.c
4595
Mike Frysinger81365c32008-10-29 14:01:12 -07004596LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004597M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004598M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004599M: Cyril Hrubis <chrubis@suse.cz>
4600M: Caspar Zhang <caspar@casparzhang.com>
4601M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004602L: ltp-list@lists.sourceforge.net (subscribers-only)
4603W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004604T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004605T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004606S: Maintained
4607
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004608M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004609M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004610L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004611L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4612W: http://www.linux-m32r.org/
4613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004614F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004615
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004617M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618L: linux-m68k@lists.linux-m68k.org
4619W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004620T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004622F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004623F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
4625M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004626M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004628L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004630F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
4632M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004633M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634W: http://www.tazenda.demon.co.uk/phil/linux-hp
4635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004636F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
Jiri Benc64a327a2007-05-05 11:47:08 -07004638MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004639M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004640L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004641W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004642T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4643T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004645F: Documentation/networking/mac80211-injection.txt
4646F: include/net/mac80211.h
4647F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004648
Stefano Brivio1036d862007-12-23 04:46:27 +01004649MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Stefano Brivio <stefano.brivio@polimi.it>
4651M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004652L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004653W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004654T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4655T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004657F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004658
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004659MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004660M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004661L: netdev@vger.kernel.org
4662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004663F: drivers/net/macvlan.c
4664F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004665
Michael Kerriskfaf16682005-07-31 22:34:47 -07004666MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004668W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004669L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004670S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004671
stephen hemminger44c14c12012-04-02 12:59:47 +00004672MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4673M: Mirko Lindner <mlindner@marvell.com>
4674M: Stephen Hemminger <shemminger@vyatta.com>
4675L: netdev@vger.kernel.org
4676S: Maintained
4677F: drivers/net/ethernet/marvell/sk*
4678
Stefano Brivio74cda162007-11-19 20:27:46 +01004679MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004680M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004681L: libertas-dev@lists.infradead.org
4682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004683F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004684
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004685MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004686M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004687L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004688S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004689F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004690F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Bing Zhaofcad5842011-07-13 13:11:58 -07004692MARVELL MWIFIEX WIRELESS DRIVER
4693M: Bing Zhao <bzhao@marvell.com>
4694L: linux-wireless@vger.kernel.org
4695S: Maintained
4696F: drivers/net/wireless/mwifiex/
4697
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004698MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004699M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004700L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004701S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004702F: drivers/net/wireless/mwl8k.c
4703
Pierre Ossman2a695672009-03-16 19:52:26 +01004704MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004705M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004706S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004707F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004708
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004710L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004711S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004712F: drivers/video/matrox/matroxfb_*
4713F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Guenter Roeckca462082012-06-01 23:28:23 -07004715MAX16065 HARDWARE MONITOR DRIVER
4716M: Guenter Roeck <linux@roeck-us.net>
4717L: lm-sensors@lm-sensors.org
4718S: Maintained
4719F: Documentation/hwmon/max16065
4720F: drivers/hwmon/max16065.c
4721
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004722MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004723M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004724L: lm-sensors@lm-sensors.org
4725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004726F: Documentation/hwmon/max6650
4727F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004728
Joe Perches127c49a2009-04-08 08:34:04 -07004729MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004730M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004731P: LinuxTV.org Project
4732L: linux-media@vger.kernel.org
4733W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004734Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004735T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004736S: Maintained
4737F: Documentation/dvb/
4738F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004739F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004740F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004741F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004742F: include/media/
4743F: include/linux/dvb/
4744F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004745
4746MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004747M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004748L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004749W: http://megaraid.lsilogic.com
4750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004751F: Documentation/scsi/megaraid.txt
4752F: drivers/scsi/megaraid.*
4753F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004754
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004755MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757W: http://www.linux-mm.org
4758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004759F: include/linux/mm.h
4760F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004761
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004762MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004763M: Johannes Weiner <hannes@cmpxchg.org>
4764M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004765M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004766M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004767L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004768L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004770F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004771F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004772
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004774M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004776W: http://www.linux-mtd.infradead.org/
4777Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004778T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004780F: drivers/mtd/
4781F: include/linux/mtd/
4782F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Michal Simekc6375b02009-03-27 14:25:52 +01004784MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004785M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004786L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004787W: http://www.monstr.eu/fdt/
4788T: git git://git.monstr.eu/linux-2.6-microblaze.git
4789S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004790F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
4792MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004793M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004795F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796
4797MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004798M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004800W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004801T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004802Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004803S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004804F: Documentation/mips/
4805F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004808M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004810F: include/linux/module.h
4811F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
4813MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004815S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004816F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004817F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004818F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
Pavel Pisac58ff042007-05-16 01:10:41 +02004820MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004821M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004824F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004825
Jiri Slabyb9705b62008-04-30 00:53:48 -07004826MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004827M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004829F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004830F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004831
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004832MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004833M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004834L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004836F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004837
Anisse Astier0f1006b2009-12-17 11:28:49 +01004838MSI WMI SUPPORT
4839M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004840L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004841S: Supported
4842F: drivers/platform/x86/msi-wmi.c
4843
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004844MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004845M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004846T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004847S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004848F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004849
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004850MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004851M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004852L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004853T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004855F: drivers/mmc/
4856F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004857
David Brownell15a05802007-08-08 09:12:54 -07004858MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004859S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004860F: drivers/mmc/host/mmc_spi.c
4861F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004862
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004864M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004866F: Documentation/sound/oss/MultiSound
4867F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
Jiri Slabyd7354102006-12-08 02:38:35 -08004869MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004870S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004871F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004872F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004873
Felipe Balbi550a7372008-07-24 12:27:36 +03004874MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004875M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004876L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004877T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004879F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004880
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004881MXL5007T MEDIA DRIVER
4882M: Michael Krufky <mkrufky@linuxtv.org>
4883L: linux-media@vger.kernel.org
4884W: http://linuxtv.org/
4885W: http://github.com/mkrufky
4886Q: http://patchwork.linuxtv.org/project/linux-media/list/
4887T: git git://linuxtv.org/mkrufky/tuners.git
4888S: Maintained
4889F: drivers/media/tuners/mxl5007t.*
4890
Brice Goglin2d3cf582008-05-17 12:45:36 +02004891MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004892M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004893L: netdev@vger.kernel.org
4894W: http://www.myri.com/scs/download-Myri10GE.html
4895S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004896F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004897
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004899S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004900F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901
Daniel Mack23dc05a2011-05-18 11:28:38 +02004902NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4903M: Daniel Mack <zonque@gmail.com>
4904S: Maintained
4905L: alsa-devel@alsa-project.org
4906W: http://www.native-instruments.com
4907F: sound/usb/caiaq/
4908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004910M: Petr Vandrovec <petr@vandrovec.name>
4911S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004912F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913
4914NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004915M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916L: linux-scsi@vger.kernel.org
4917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004918F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004920NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004921M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004922L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004923W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004924S: Supported
4925F: drivers/infiniband/hw/nes/
4926
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004927NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004928M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004929L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004931F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004932
Jon Masonb2f5a052010-07-15 08:47:27 +00004933NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004934M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004935L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004937F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004938F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004939F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004940
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942P: Harald Welte
4943P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004944M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004945M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004946L: netfilter-devel@vger.kernel.org
4947L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004948L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949W: http://www.netfilter.org/
4950W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004951T: git git://1984.lsi.us.es/nf
4952T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004954F: include/linux/netfilter*
4955F: include/linux/netfilter/
4956F: include/net/netfilter/
4957F: net/*/netfilter.c
4958F: net/*/netfilter/
4959F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
Paul Moore4cc67732006-09-25 15:57:13 -07004961NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004962M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004963W: http://netlabel.sf.net
4964L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004965S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004966F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004967F: include/net/netlabel.h
4968F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004969
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004971M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004973W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004975F: include/linux/netrom.h
4976F: include/net/netrom.h
4977F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004979NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004980M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004982F: Documentation/blockdev/nbd.txt
4983F: drivers/block/nbd.c
4984F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Neil Horman6e436502009-10-05 03:56:55 +00004986NETWORK DROP MONITOR
4987M: Neil Horman <nhorman@tuxdriver.com>
4988L: netdev@vger.kernel.org
4989S: Maintained
4990W: https://fedorahosted.org/dropwatch/
4991F: net/core/drop_monitor.c
4992
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004994M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004995L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004996W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004997W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00004998T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
4999T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: net/
5002F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005003F: include/linux/in.h
5004F: include/linux/net.h
5005F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006
5007NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005008M: "David S. Miller" <davem@davemloft.net>
5009M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: James Morris <jmorris@namei.org>
5011M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5012M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005013L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005014T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005016F: net/ipv4/
5017F: net/ipv6/
5018F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005019F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
James Morris10e2ff12007-08-25 14:41:28 -07005021NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005022M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005023L: netdev@vger.kernel.org
5024S: Maintained
5025
John W. Linville29f8f632006-01-18 14:52:48 -08005026NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005027M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005028L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005029Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005030T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005031S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005032F: net/mac80211/
5033F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005034F: net/wireless/
5035F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005036F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005037F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005038F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005039
Joe Perches788873a2009-04-16 09:38:45 +00005040NETWORKING DRIVERS
5041L: netdev@vger.kernel.org
5042W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005043T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5044T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005045S: Odd Fixes
5046F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005047F: include/linux/if_*
5048F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00005049
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005050NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005051M: Sony Chacko <sony.chacko@qlogic.com>
5052M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005053L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005054W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005055S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005056F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005057
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005058NFC SUBSYSTEM
5059M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5060M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5061M: Samuel Ortiz <sameo@linux.intel.com>
5062L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005063L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005064S: Maintained
5065F: net/nfc/
5066F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005067F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005068F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005070NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005071M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005072L: linux-nfs@vger.kernel.org
5073W: http://client.linux-nfs.org
5074T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005076F: fs/lockd/
5077F: fs/nfs/
5078F: fs/nfs_common/
5079F: net/sunrpc/
5080F: include/linux/lockd/
5081F: include/linux/nfs*
5082F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
5084NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005085M: Jan-Pascal van Best <janpascal@vanbest.org>
5086M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005087L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005089F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005091NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005092M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005093L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005094W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005095T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005097F: Documentation/filesystems/nilfs2.txt
5098F: fs/nilfs2/
5099F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005102M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005105F: Documentation/scsi/NinjaSCSI.txt
5106F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
5108NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005109M: GOTO Masanori <gotom@debian.or.jp>
5110M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005113F: Documentation/scsi/NinjaSCSI.txt
5114F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005117M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005119W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005120T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005122F: Documentation/filesystems/ntfs.txt
5123F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005125NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005126M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005127L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005129F: drivers/video/riva/
5130F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
Tony Lindgrenf5525782009-05-28 13:23:53 -07005132OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005133M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005134L: linux-omap@vger.kernel.org
5135W: http://www.muru.com/linux/omap/
5136W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005137Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005138T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005139S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005140F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005141F: drivers/i2c/busses/i2c-omap.c
5142F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005143
5144OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005145M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005146L: linux-omap@vger.kernel.org
5147S: Maintained
5148F: arch/arm/*omap*/*clock*
5149
5150OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005151M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005152L: linux-omap@vger.kernel.org
5153S: Maintained
5154F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005155F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005156
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005157OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5158M: Rajendra Nayak <rnayak@ti.com>
5159M: Paul Walmsley <paul@pwsan.com>
5160L: linux-omap@vger.kernel.org
5161S: Maintained
5162F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5163F: arch/arm/mach-omap2/powerdomain44xx.c
5164F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5165F: arch/arm/mach-omap2/clockdomain44xx.c
5166
Tony Lindgrenf5525782009-05-28 13:23:53 -07005167OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005168M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005169M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005170L: alsa-devel@alsa-project.org (subscribers-only)
5171L: linux-omap@vger.kernel.org
5172S: Maintained
5173F: sound/soc/omap/
5174
5175OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005176M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005177L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005178L: linux-omap@vger.kernel.org
5179S: Maintained
5180F: drivers/video/omap/
5181
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005182OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005183M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005184L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005185L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005186S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005187F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005188F: Documentation/arm/OMAP/DSS
5189
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005190OMAP HARDWARE SPINLOCK SUPPORT
5191M: Ohad Ben-Cohen <ohad@wizery.com>
5192L: linux-omap@vger.kernel.org
5193S: Maintained
5194F: drivers/hwspinlock/omap_hwspinlock.c
5195F: arch/arm/mach-omap2/hwspinlock.c
5196
Tony Lindgrenf5525782009-05-28 13:23:53 -07005197OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005198M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005199L: linux-omap@vger.kernel.org
5200S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005201F: drivers/mmc/host/omap.c
5202
5203OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305204M: Venkatraman S <svenkatr@ti.com>
5205L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005206L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305207S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005208F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005209
5210OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005211M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005212S: Maintained
5213F: drivers/char/hw_random/omap-rng.c
5214
Paul Walmsleyf400c822010-12-06 19:08:54 -07005215OMAP HWMOD SUPPORT
5216M: Benoît Cousson <b-cousson@ti.com>
5217M: Paul Walmsley <paul@pwsan.com>
5218L: linux-omap@vger.kernel.org
5219S: Maintained
5220F: arch/arm/mach-omap2/omap_hwmod.c
5221F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5222
5223OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5224M: Benoît Cousson <b-cousson@ti.com>
5225L: linux-omap@vger.kernel.org
5226S: Maintained
5227F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5228
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005229OMAP IMAGE SIGNAL PROCESSOR (ISP)
5230M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5231L: linux-media@vger.kernel.org
5232S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005233F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005234
Tony Lindgrenf5525782009-05-28 13:23:53 -07005235OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005236M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005237L: linux-usb@vger.kernel.org
5238L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005239T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005240S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005241F: drivers/usb/*/*omap*
5242F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005243
Kevin Hilman6d994712012-07-16 10:05:07 -07005244OMAP GPIO DRIVER
5245M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5246M: Kevin Hilman <khilman@ti.com>
5247L: linux-omap@vger.kernel.org
5248S: Maintained
5249F: drivers/gpio/gpio-omap.c
5250
Bob Copeland0ad122d2008-07-25 19:45:18 -07005251OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005252M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005253L: linux-karma-devel@lists.sourceforge.net
5254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005255F: Documentation/filesystems/omfs.txt
5256F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005257
Harald Weltec1986ee2005-11-13 16:06:29 -08005258OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005259M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005261F: drivers/char/pcmcia/cm4000_cs.c
5262F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005263
Harald Welte77c44ab2005-11-13 16:06:26 -08005264OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005265M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005267F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005268
Jonathan Corbet77d51402007-03-22 19:44:17 -03005269OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005270M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005271L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005272T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005273S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005274F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005275
Thomas Gleixner431bca72007-05-02 09:31:35 +02005276ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005277M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005278L: linux-mtd@lists.infradead.org
5279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: drivers/mtd/onenand/
5281F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005282
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285L: osst-users@lists.sourceforge.net
5286L: linux-scsi@vger.kernel.org
5287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005288F: drivers/scsi/osst*
5289F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005291OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005292M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005293L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005295F: Documentation/i2c/busses/i2c-ocores
5296F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005297
Grant Likely860c44c2009-10-26 16:49:49 -07005298OPEN FIRMWARE AND FLATTENED DEVICE TREE
5299M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005300M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005301L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005302W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005303T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005304S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005305F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005306F: drivers/of
5307F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005308F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005309K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005310K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005311
Jonas Bonn19f9d392011-06-04 22:00:38 +03005312OPENRISC ARCHITECTURE
5313M: Jonas Bonn <jonas@southpole.se>
5314W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005315L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005316S: Maintained
5317T: git git://openrisc.net/~jonas/linux
5318F: arch/openrisc
5319
Jesse Grossccb13522011-10-25 19:26:31 -07005320OPENVSWITCH
5321M: Jesse Gross <jesse@nicira.com>
5322L: dev@openvswitch.org
5323W: http://openvswitch.org
5324T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5325S: Maintained
5326F: net/openvswitch/
5327
Clemens Ladischaf399172011-01-10 16:32:54 +01005328OPL4 DRIVER
5329M: Clemens Ladisch <clemens@ladisch.de>
5330L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5331T: git git://git.alsa-project.org/alsa-kernel.git
5332S: Maintained
5333F: sound/drivers/opl4/
5334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005336M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337L: oprofile-list@lists.sf.net
5338S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005339F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005340F: arch/*/oprofile/
5341F: drivers/oprofile/
5342F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005344ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005345M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005346M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005347L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5348W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005349T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005351F: Documentation/filesystems/ocfs2.txt
5352F: Documentation/filesystems/dlmfs.txt
5353F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005354
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005356L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005357W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005358W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005359S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005362OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005363M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005364M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005365L: osd-dev@open-osd.org
5366W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005367T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005368S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005369F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005370F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005371F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005372
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005373P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005374M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005375L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005376W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005378F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005379
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005380PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005381M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005382L: netdev@vger.kernel.org
5383S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005384F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005385
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005386PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005387M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005388L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005390F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005391
Steffen Klassert48fc2672010-08-13 10:10:46 -04005392PADATA PARALLEL EXECUTION MECHANISM
5393M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005394L: linux-crypto@vger.kernel.org
5395S: Maintained
5396F: kernel/padata.c
5397F: include/linux/padata.h
5398F: Documentation/padata.txt
5399
Harald Welte709ee532008-09-23 17:46:57 +02005400PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005401M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005402L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005404F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005405
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005406PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005407M: David Howells <dhowells@redhat.com>
5408M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005409L: linux-am33-list@redhat.com (moderated for non-subscribers)
5410W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005412F: Documentation/mn10300/
5413F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005414
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005416L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005417S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005418F: drivers/parport/
5419F: include/linux/parport*.h
5420F: drivers/char/ppdev.c
5421F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005423PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005424M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005425M: Chris Wright <chrisw@sous-sol.org>
5426M: Alok Kataria <akataria@vmware.com>
5427M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005428L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005430F: Documentation/ia64/paravirt_ops.txt
5431F: arch/*/kernel/paravirt*
5432F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005433
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005435M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005436L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437W: http://www.torque.net/linux-pp.html
5438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005439F: Documentation/blockdev/paride.txt
5440F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441
5442PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005443M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005444M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005445L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005447Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005448T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005450F: arch/parisc/
5451F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
Jim Cromie1662d322006-10-06 00:43:59 -07005453PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005454M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005455L: lm-sensors@lm-sensors.org
5456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005457F: Documentation/hwmon/pc87360
5458F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005459
5460PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005461M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005463F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005464
Jean Delvare1ad107f2010-08-14 21:09:00 +02005465PC87427 HARDWARE MONITORING DRIVER
5466M: Jean Delvare <khali@linux-fr.org>
5467L: lm-sensors@lm-sensors.org
5468S: Maintained
5469F: Documentation/hwmon/pc87427
5470F: drivers/hwmon/pc87427.c
5471
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005472PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005473M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005474S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005475F: drivers/leds/leds-pca9532.c
5476F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005477
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005478PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005479M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005480L: linux-i2c@vger.kernel.org
5481S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005482F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005483
Wolfram Sanga1867d32009-09-18 22:45:51 +02005484PCA9564/PCA9665 I2C BUS DRIVER
5485M: Wolfram Sang <w.sang@pengutronix.de>
5486L: linux-i2c@vger.kernel.org
5487S: Maintained
5488F: drivers/i2c/algos/i2c-algo-pca.c
5489F: drivers/i2c/busses/i2c-pca-*
5490F: include/linux/i2c-algo-pca.h
5491F: include/linux/i2c-pca-platform.h
5492
Khalid Aziz3971dae2012-04-12 12:49:13 -07005493PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005494M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005495S: Maintained
5496F: drivers/firmware/pcdp.*
5497
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005498PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005499M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005500L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005502F: Documentation/PCI/pci-error-recovery.txt
5503F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005504
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005506M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005507L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005508Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005509T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005511F: Documentation/PCI/
5512F: drivers/pci/
5513F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005516P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005517L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005518W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005519T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005521F: Documentation/pcmcia/
5522F: drivers/pcmcia/
5523F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524
5525PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005526M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005527L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005529F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530
Steffen Klassert48fc2672010-08-13 10:10:46 -04005531PCRYPT PARALLEL CRYPTO ENGINE
5532M: Steffen Klassert <steffen.klassert@secunet.com>
5533L: linux-crypto@vger.kernel.org
5534S: Maintained
5535F: crypto/pcrypt.c
5536F: include/crypto/pcrypt.h
5537
Tejun Heoe72df0b2010-12-10 17:02:49 +01005538PER-CPU MEMORY ALLOCATOR
5539M: Tejun Heo <tj@kernel.org>
5540M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005541T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5542S: Maintained
5543F: include/linux/percpu*.h
5544F: mm/percpu*.c
5545F: arch/*/include/asm/percpu.h
5546
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005547PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005548M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005550F: include/linux/delayacct.h
5551F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005552
Ingo Molnar57c0c152009-09-21 12:20:38 +02005553PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005554M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5555M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005556M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005557M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005558T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005559S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005560F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005561F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005562F: arch/*/kernel/perf_event*.c
5563F: arch/*/kernel/*/perf_event*.c
5564F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005565F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005566F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005567F: arch/*/kernel/perf_callchain.c
5568F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005569
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005570PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005571M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005572L: linux-abi-devel@lists.sourceforge.net
5573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005574F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005575
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005576PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005577M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005578S: Supported
5579F: Documentation/networking/phonet.txt
5580F: include/linux/phonet.h
5581F: include/net/phonet/
5582F: net/phonet/
5583
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005585M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586L: linux-mtd@lists.infradead.org
5587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005588F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
Bruno Prémontefdbb102012-07-30 21:39:03 +02005590PICOLCD HID DRIVER
5591M: Bruno Prémont <bonbons@linux-vserver.org>
5592L: linux-input@vger.kernel.org
5593S: Maintained
5594F: drivers/hid/hid-picolcd*
5595
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005596PICOXCELL SUPPORT
5597M: Jamie Iles <jamie@jamieiles.com>
5598L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5599T: git git://github.com/jamieiles/linux-2.6-ji.git
5600S: Supported
5601F: arch/arm/mach-picoxcell
5602F: drivers/*/picoxcell*
5603F: drivers/*/*/picoxcell*
5604
Linus Walleij2744e8a2011-05-02 20:50:54 +02005605PIN CONTROL SUBSYSTEM
5606M: Linus Walleij <linus.walleij@linaro.org>
5607S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005608F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005609F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005610
Viresh Kumardeda8282012-03-28 22:27:07 +05305611PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005612M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305613L: spear-devel@list.st.com
5614L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5615W: http://www.st.com/spear
5616S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005617F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305618
Peter Osterlund249a6772005-09-27 21:45:30 -07005619PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005620M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005622F: drivers/block/pktcdvd.c
5623F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005624
GuanXuetaob31d8272011-01-16 00:35:49 +08005625PKUNITY SOC DRIVERS
5626M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5627W: http://mprc.pku.edu.cn/~guanxuetao/linux
5628S: Maintained
5629T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5630F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005631F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005632F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005633F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005634
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005635PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005636M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005637L: lm-sensors@lm-sensors.org
5638W: http://www.lm-sensors.org/
5639W: http://www.roeck-us.net/linux/drivers/
5640T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5641S: Maintained
5642F: Documentation/hwmon/pmbus
5643F: drivers/hwmon/pmbus/
5644F: include/linux/i2c/pmbus.h
5645
Anil Ravindranath89a36812009-08-25 17:35:18 -07005646PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005647M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005648L: linux-scsi@vger.kernel.org
5649W: http://www.pmc-sierra.com/
5650S: Supported
5651F: drivers/scsi/pmcraid.*
5652
jack wangdbf9bfe2009-10-14 16:19:21 +08005653PMC SIERRA PM8001 DRIVER
5654M: jack_wang@usish.com
5655M: lindar_liu@usish.com
5656L: linux-scsi@vger.kernel.org
5657S: Supported
5658F: drivers/scsi/pm8001/
5659
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005661M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005662T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005664F: fs/timerfd.c
5665F: include/linux/timer*
5666F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
Anton Vorontsov3be86142007-07-15 04:43:36 +04005668POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005669M: Anton Vorontsov <cbou@mail.ru>
5670M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005671T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005673F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005674F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005675
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005677M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005678M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Vitaly Wool999445d2007-01-04 13:07:03 +01005682PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005684L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005686F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005687
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690L: linux-ppp@vger.kernel.org
5691S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005692F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693
5694PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005695M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005697F: net/atm/pppoatm.c
5698F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
5700PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005701M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005703F: drivers/net/ppp/pppoe.c
5704F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705
James Chapmana6d23702007-06-27 15:53:17 -07005706PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005707M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005708S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005709F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005710F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005711
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005712PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005713M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005714W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5715L: linuxpps@ml.enneenne.com (subscribers-only)
5716S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005717F: Documentation/pps/
5718F: drivers/pps/
5719F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005720
Harry Wei71a6d0a2011-05-11 15:13:33 -07005721PPTP DRIVER
5722M: Dmitry Kozlov <xeb@mail.ru>
5723L: netdev@vger.kernel.org
5724S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005725F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005726W: http://sourceforge.net/projects/accel-pptp
5727
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005729M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730L: kpreempt-tech@lists.sourceforge.net
5731W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005733F: Documentation/preempt-locking.txt
5734F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735
5736PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005737M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005738L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005739W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005740S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005741F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005743PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005744M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005745L: linux-ide@vger.kernel.org
5746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005747F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005748
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005749PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005750M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005751L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005752L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005753S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005754F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005755
Geoff Levandf58a9d12006-11-23 00:46:51 +01005756PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005757M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005758L: linuxppc-dev@lists.ozlabs.org
5759L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005761F: arch/powerpc/boot/ps3*
5762F: arch/powerpc/include/asm/lv1call.h
5763F: arch/powerpc/include/asm/ps3*.h
5764F: arch/powerpc/platforms/ps3/
5765F: drivers/*/ps3*
5766F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005767F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005768F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005769F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005770
Jim Pariscffb4add2009-01-06 11:32:10 +00005771PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005772M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005773L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005774S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005775F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005776
Anton Vorontsov8defe592012-08-03 18:07:20 -07005777PSTORE FILESYSTEM
5778M: Anton Vorontsov <cbouatmailru@gmail.com>
5779M: Colin Cross <ccross@android.com>
5780M: Kees Cook <keescook@chromium.org>
5781M: Tony Luck <tony.luck@intel.com>
5782S: Maintained
5783T: git git://git.infradead.org/users/cbou/linux-pstore.git
5784F: fs/pstore/
5785F: include/linux/pstore*
5786F: drivers/firmware/efivars.c
5787F: drivers/acpi/apei/erst.c
5788
Richard Cochran7fbc4152012-03-10 01:55:53 +00005789PTP HARDWARE CLOCK SUPPORT
5790M: Richard Cochran <richardcochran@gmail.com>
5791S: Maintained
5792W: http://linuxptp.sourceforge.net/
5793F: Documentation/ABI/testing/sysfs-ptp
5794F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005795F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005796F: drivers/net/phy/dp83640*
5797F: drivers/ptp/*
5798F: include/linux/ptp_cl*
5799
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005800PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005801M: Roland McGrath <roland@redhat.com>
5802M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005803S: Maintained
5804F: include/asm-generic/syscall.h
5805F: include/linux/ptrace.h
5806F: include/linux/regset.h
5807F: include/linux/tracehook.h
5808F: kernel/ptrace.c
5809
Michael Krufky83202042006-07-03 00:24:18 -07005810PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005811M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005812L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005813L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005814W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005815T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005817F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005818F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005819
Thierry Reding200efed2012-03-27 13:16:18 +02005820PWM SUBSYSTEM
5821M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005822L: linux-kernel@vger.kernel.org
5823S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005824W: http://gitorious.org/linux-pwm
5825T: git git://gitorious.org/linux-pwm/linux-pwm.git
5826F: Documentation/pwm.txt
5827F: Documentation/devicetree/bindings/pwm/
5828F: include/linux/pwm.h
5829F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005830F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005831F: drivers/video/backlight/pwm_bl.c
5832F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005833
Eric Miao30ec2612008-06-12 15:21:41 -07005834PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005835M: Eric Miao <eric.y.miao@gmail.com>
5836M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005837M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005838L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005839T: git git://github.com/hzhuang1/linux.git
5840T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005842F: arch/arm/mach-pxa/
5843F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005844F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005845F: drivers/usb/gadget/pxa2*
5846F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005847F: sound/arm/pxa*
5848F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005850MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005852M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005853L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005854T: git git://github.com/hzhuang1/linux.git
5855T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005856S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005857F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005858
Pierre Ossman272f1332007-05-14 21:25:26 +02005859PXA MMCI DRIVER
5860S: Orphan
5861
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005862PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005863M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005864L: rtc-linux@googlegroups.com
5865S: Maintained
5866
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005867QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005868M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005869L: linux-rdma@vger.kernel.org
5870S: Supported
5871F: drivers/infiniband/hw/qib/
5872
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005873QLOGIC QLA1280 SCSI DRIVER
5874M: Michael Reed <mdr@sgi.com>
5875L: linux-scsi@vger.kernel.org
5876S: Maintained
5877F: drivers/scsi/qla1280.[ch]
5878
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005880M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005881M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882L: linux-scsi@vger.kernel.org
5883S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005884F: Documentation/scsi/LICENSE.qla2xxx
5885F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886
Ravi Anand883c98f2010-04-28 11:45:49 +05305887QLOGIC QLA4XXX iSCSI DRIVER
5888M: Ravi Anand <ravi.anand@qlogic.com>
5889M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5890M: iscsi-driver@qlogic.com
5891L: linux-scsi@vger.kernel.org
5892S: Supported
5893F: drivers/scsi/qla4xxx/
5894
Ron Mercer5a4faa872006-07-25 00:40:21 -07005895QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005896M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005898M: linux-driver@qlogic.com
5899L: netdev@vger.kernel.org
5900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005901F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005902F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005903
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005904QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005905M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005906M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005907M: linux-driver@qlogic.com
5908L: netdev@vger.kernel.org
5909S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005910F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005911
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005912QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005913M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005914M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005915M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005916L: netdev@vger.kernel.org
5917S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005918F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005919
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005921M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922W: http://www.alarsen.net/linux/qnx4fs/
5923S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005924F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005925F: include/linux/qnx4_fs.h
5926F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927
Antti Palosaari91952bc2012-10-01 12:28:46 -03005928QT1010 MEDIA DRIVER
5929M: Antti Palosaari <crope@iki.fi>
5930L: linux-media@vger.kernel.org
5931W: http://linuxtv.org/
5932W: http://palosaari.fi/linux/
5933Q: http://patchwork.linuxtv.org/project/linux-media/list/
5934T: git git://linuxtv.org/anttip/media_tree.git
5935S: Maintained
5936F: drivers/media/tuners/qt1010*
5937
Richard Kuo4f4567c2011-10-31 18:56:38 -05005938QUALCOMM HEXAGON ARCHITECTURE
5939M: Richard Kuo <rkuo@codeaurora.org>
5940L: linux-hexagon@vger.kernel.org
5941S: Supported
5942F: arch/hexagon/
5943
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005944RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005945M: Yehuda Sadeh <yehuda@inktank.com>
5946M: Sage Weil <sage@inktank.com>
5947M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005948M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005949W: http://ceph.com/
5950T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005951S: Supported
5952F: drivers/block/rbd.c
5953F: drivers/block/rbd_types.h
5954
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005956M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005957L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005959F: drivers/video/aty/radeon*
5960F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
5962RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005964L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005966F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
Randy Dunlape7839f22008-10-12 16:11:45 -07005968RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005969P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005970M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005971M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005972M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005973L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005974L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005975W: http://rt2x00.serialmonkey.com/
5976S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005977T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005978F: drivers/net/wireless/rt2x00/
5979
Nick Piggin9db55792008-02-08 04:19:49 -08005980RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005981M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005983F: Documentation/blockdev/ramdisk.txt
5984F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005985
Matt Mackall9e95ce22005-04-16 15:25:56 -07005986RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04005987M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005989F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005990
Matt Porter394b7012005-11-07 01:00:15 -08005991RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005992M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08005993M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08005994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005995F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08005996
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005997RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005998L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04005999S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006000F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006001
6002RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006003M: Josh Triplett <josh@freedesktop.org>
6004M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006005S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006006T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006007F: Documentation/RCU/torture.txt
6008F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006009
Florian Fainellic1f766b2008-02-06 22:39:44 +01006010RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006011M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006012S: Maintained
6013
Florian Fainellidb17f392007-12-19 11:30:30 +01006014RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006015M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006016L: netdev@vger.kernel.org
6017S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006018F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006019
Andy Grovera09ed662009-02-24 15:30:41 +00006020RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006021M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006022L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006024F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006025
Josh Triplett595182b2006-10-04 02:17:21 -07006026READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006027M: Dipankar Sarma <dipankar@in.ibm.com>
6028M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006029W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006030S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006031T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006032F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006033X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006034F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006035F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006036X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006037
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006038REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006039M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006040L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006041Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006043F: Documentation/rtc.txt
6044F: drivers/rtc/
6045F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006048L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006050F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051
Mark Brownb83a3132011-05-11 19:59:58 +02006052REGISTER MAP ABSTRACTION
6053M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6054T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6055S: Supported
6056F: drivers/base/regmap/
6057F: include/linux/regmap.h
6058
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006059REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6060M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006061T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006062S: Maintained
6063F: drivers/remoteproc/
6064F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006065F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006066
Ivo van Doorne08976452008-04-12 19:23:55 +02006067RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006068M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006069L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006070W: http://wireless.kernel.org/
6071T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6072T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006073S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006074F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006075F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006076
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006077RICOH SMARTMEDIA/XD DRIVER
6078M: Maxim Levitsky <maximlevitsky@gmail.com>
6079S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006080F: drivers/mtd/nand/r852.c
6081F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006082
Maxim Levitsky92634122011-03-25 01:56:59 -07006083RICOH R5C592 MEMORYSTICK DRIVER
6084M: Maxim Levitsky <maximlevitsky@gmail.com>
6085S: Maintained
6086F: drivers/memstick/host/r592.*
6087
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088ROCKETPORT DRIVER
6089P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090W: http://www.comtrol.com
6091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006092F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006093F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094
6095ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006096M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006098W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006100F: include/linux/rose.h
6101F: include/net/rose.h
6102F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103
Antti Palosaari91952bc2012-10-01 12:28:46 -03006104RTL2830 MEDIA DRIVER
6105M: Antti Palosaari <crope@iki.fi>
6106L: linux-media@vger.kernel.org
6107W: http://linuxtv.org/
6108W: http://palosaari.fi/linux/
6109Q: http://patchwork.linuxtv.org/project/linux-media/list/
6110T: git git://linuxtv.org/anttip/media_tree.git
6111S: Maintained
6112F: drivers/media/dvb-frontends/rtl2830*
6113
Larry Finger59840482008-11-12 17:13:09 -06006114RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006115M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006116L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006117W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006118T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006119S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006120F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006121
Larry Finger59840482008-11-12 17:13:09 -06006122RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006123M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006124M: Hin-Tak Leung <htl10@users.sourceforge.net>
6125M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006126L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006127W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006128T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006129S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006130F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006131
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006132RTL8192CE WIRELESS DRIVER
6133M: Larry Finger <Larry.Finger@lwfinger.net>
6134M: Chaoming Li <chaoming_li@realsil.com.cn>
6135L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006136W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006137T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6138S: Maintained
6139F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006140F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006141
6142S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006143M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006144L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006146F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006147
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148S390
Joe Perches8b58be82009-07-29 15:04:30 -07006149M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6150M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006152L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006153W: http://www.ibm.com/developerworks/linux/linux390/
6154S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006155F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006156F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006157F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006158F: Documentation/s390/
6159F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006160
6161S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006162M: Ursula Braun <ursula.braun@de.ibm.com>
6163M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006164M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006165L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006166W: http://www.ibm.com/developerworks/linux/linux390/
6167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006168F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006169
Felix Beckfeed9b62009-03-26 15:24:23 +01006170S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006171M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006172M: linux390@de.ibm.com
6173L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006174W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006175S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006176F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006177
Heiko Carstens5238da42006-02-11 17:56:01 -08006178S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006179M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006180M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006181L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006182W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006184F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185
Ursula Braundd96df22007-09-19 13:09:02 +02006186S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006187M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006188M: linux390@de.ibm.com
6189L: linux-s390@vger.kernel.org
6190W: http://www.ibm.com/developerworks/linux/linux390/
6191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006192F: drivers/s390/net/*iucv*
6193F: include/net/iucv/
6194F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006195
Ben Dooks4dde7f72008-06-30 22:40:38 +01006196S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006197M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006198L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006200F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006201
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006203M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006204L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006205T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206W: http://www.mihu.de/linux/saa7146
6207S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006208F: drivers/media/common/saa7146/
6209F: drivers/media/pci/saa7146/
6210F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211
Corentin Chary92304a42011-12-05 12:38:35 -05006212SAMSUNG LAPTOP DRIVER
6213M: Corentin Chary <corentincj@iksaif.net>
6214L: platform-driver-x86@vger.kernel.org
6215S: Maintained
6216F: drivers/platform/x86/samsung-laptop.c
6217
Mark Brown4a109cc2010-09-24 10:50:46 +01006218SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006219M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006220L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6221S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006222F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006223
Jingoo Han0d89a282011-12-19 11:09:35 +09006224SAMSUNG FRAMEBUFFER DRIVER
6225M: Jingoo Han <jg1.han@samsung.com>
6226L: linux-fbdev@vger.kernel.org
6227S: Maintained
6228F: drivers/video/s3c-fb.c
6229
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006230SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6231M: Sangbeom Kim <sbkim73@samsung.com>
6232L: linux-kernel@vger.kernel.org
6233S: Supported
6234F: drivers/mfd/sec*.c
6235F: drivers/regulator/s2m*.c
6236F: drivers/regulator/s5m*.c
6237F: drivers/rtc/rtc-sec.c
6238F: include/linux/mfd/samsung/
6239
Alan Coxca749e22011-03-18 13:56:14 +00006240SERIAL DRIVERS
6241M: Alan Cox <alan@linux.intel.com>
6242L: linux-serial@vger.kernel.org
6243S: Maintained
6244F: drivers/tty/serial
6245
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306246SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006247M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306248S: Maintained
6249F: include/linux/dw_dmac.h
6250F: drivers/dma/dw_dmac_regs.h
6251F: drivers/dma/dw_dmac.c
6252
Thomas Gleixner88606e82010-12-14 21:37:13 +01006253TIMEKEEPING, NTP
6254M: John Stultz <johnstul@us.ibm.com>
6255M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006256T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006257S: Supported
6258F: include/linux/clocksource.h
6259F: include/linux/time.h
6260F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006261F: kernel/time/clocksource.c
6262F: kernel/time/time*.c
6263F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006264F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006265
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006266TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006267M: Huang Shijie <shijie8@gmail.com>
6268M: Kang Yong <kangyong@telegent.com>
6269M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006270S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006271F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006272
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006274M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277
6278SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006279M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006280M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006281T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006283F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006284F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285
Chen Liqin6bcf6732009-06-13 15:24:33 +08006286SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006287M: Chen Liqin <liqin.chen@sunplusct.com>
6288M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006289W: http://www.sunplusct.com
6290S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006291F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006292
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006294M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295L: linux-scsi@vger.kernel.org
6296W: http://www.kernel.dk
6297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006298F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299
Roland Dreierfb50a832010-10-07 09:54:53 -07006300SCSI RDMA PROTOCOL (SRP) INITIATOR
6301M: David Dillow <dillowda@ornl.gov>
6302L: linux-rdma@vger.kernel.org
6303S: Supported
6304W: http://www.openfabrics.org
6305Q: http://patchwork.kernel.org/project/linux-rdma/list/
6306T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6307F: drivers/infiniband/ulp/srp/
6308F: include/scsi/srp.h
6309
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006311M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312L: linux-scsi@vger.kernel.org
6313W: http://www.torque.net/sg
6314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006315F: drivers/scsi/sg.c
6316F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317
6318SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006319M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006321T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6322T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6323T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006325F: drivers/scsi/
6326F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327
6328SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006329M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330L: linux-scsi@vger.kernel.org
6331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006332F: Documentation/scsi/st.txt
6333F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334
6335SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006336M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006337M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006338L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006339W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006341F: Documentation/networking/sctp.txt
6342F: include/linux/sctp.h
6343F: include/net/sctp/
6344F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345
6346SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006347M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006348S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006349F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006350F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006351F: drivers/watchdog/scx200_wdt.c
6352F: drivers/i2c/busses/scx200*
6353F: drivers/mtd/maps/scx200_docflash.c
6354F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006355
6356SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006357M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006359F: drivers/char/scx200_gpio.c
6360F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006361
6362SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006363M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006365F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366
Sascha Sommer6a369132008-07-15 14:21:29 +02006367SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006368M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006369L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006371F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006372
Randy Dunlape7839f22008-10-12 16:11:45 -07006373SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006374M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006375L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006376T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6377S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006378F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006379F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006380
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006381SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006382M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006383L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006384L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006386F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387
Ben Dooks0d1bb412009-06-14 13:52:37 +01006388SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006389M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006390L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006391S: Maintained
6392F: drivers/mmc/host/sdhci-s3c.c
6393
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006394SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006395M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006396L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006397L: linux-mmc@vger.kernel.org
6398S: Maintained
6399F: drivers/mmc/host/sdhci-spear.c
6400
James Morris8711cca2008-12-04 03:19:45 +11006401SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006402M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006403L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006404T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006405W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006406S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006407F: security/
James Morris8711cca2008-12-04 03:19:45 +11006408
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006410M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411S: Supported
6412
6413SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006414M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006415M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006416M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006417L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006418W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006419T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006421F: include/linux/selinux*
6422F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006423F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
John Johansenc1c124e2010-07-29 14:48:09 -07006425APPARMOR SECURITY MODULE
6426M: John Johansen <john.johansen@canonical.com>
6427L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6428W: apparmor.wiki.kernel.org
6429T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6430S: Supported
6431F: security/apparmor/
6432
Jiri Slabycef2cf02007-05-08 00:31:45 -07006433SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006434M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006436F: drivers/misc/phantom.c
6437F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006438
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006439SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006440M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006442T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006444F: drivers/ata/
6445F: include/linux/ata.h
6446F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306448SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006449M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006450L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006451W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006452S: Supported
6453F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306454
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006455SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006456M: Sathya Perla <sathya.perla@emulex.com>
6457M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6458M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006459L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006460W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006461S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006462F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006463
Ben Hutchings8ceee662008-04-27 12:55:59 +01006464SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006465M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006466M: Ben Hutchings <bhutchings@solarflare.com>
6467L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006468S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006469F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006470
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006471SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006472M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006474F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006475
6476SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006477M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006478L: linux-ia64@vger.kernel.org
6479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006480F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006481F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006482F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006483
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006485M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486L: linux-visws-devel@lists.sf.net
6487W: http://linux-visws.sf.net
6488S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006489F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490
Jack Steiner75312612008-08-15 00:40:42 -07006491SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006492M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006494F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006495
Len Brown6349d992009-08-14 15:07:14 -04006496SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006497M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006498L: sfi-devel@simplefirmware.org
6499W: http://simplefirmware.org/
6500T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006501S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006502F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006503F: drivers/sfi/
6504F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006505
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506SIMTEC EB110ATX (Chalice CATS)
6507P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006508P: Vincent Sanders <vince@simtec.co.uk>
6509M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510W: http://www.simtec.co.uk/products/EB110ATX/
6511S: Supported
6512
6513SIMTEC EB2410ITX (BAST)
6514P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006515P: Vincent Sanders <vince@simtec.co.uk>
6516M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517W: http://www.simtec.co.uk/products/EB2410ITX/
6518S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006519F: arch/arm/mach-s3c2410/mach-bast.c
6520F: arch/arm/mach-s3c2410/bast-ide.c
6521F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006523TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006524M: Sekhar Nori <nsekhar@ti.com>
6525M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306526L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306527T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006528Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006529S: Supported
6530F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006531F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006532
Francois Romieu92aab3c2005-07-30 13:11:18 +02006533SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006534M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006535L: netdev@vger.kernel.org
6536S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006537F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006538
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006540M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006542L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006544F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006546SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006547M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006548L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006550F: Documentation/i2c/busses/i2c-sis96x
6551F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006552
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006554M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006557F: Documentation/fb/sisfb.txt
6558F: drivers/video/sis/
6559F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560
6561SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006562M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006563W: http://www.winischhofer.at/linuxsisusbvga.shtml
6564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006565F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006567SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006568M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006569M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006570M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006571L: linux-mm@kvack.org
6572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006573F: include/linux/sl?b*.h
6574F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006575
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006576SLEEPABLE READ-COPY UPDATE (SRCU)
6577M: Lai Jiangshan <laijs@cn.fujitsu.com>
6578M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6579W: http://www.rdrop.com/users/paulmck/RCU/
6580S: Supported
6581T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6582F: include/linux/srcu*
6583F: kernel/srcu*
6584
Casey Schaufler66372842012-05-23 18:34:52 -07006585SMACK SECURITY MODULE
6586M: Casey Schaufler <casey@schaufler-ca.com>
6587L: linux-security-module@vger.kernel.org
6588W: http://schaufler-ca.com
6589T: git git://git.gitorious.org/smack-next/kernel.git
6590S: Maintained
6591F: Documentation/security/Smack.txt
6592F: security/smack/
6593
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006595M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006596S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006597F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006599SMM665 HARDWARE MONITOR DRIVER
6600M: Guenter Roeck <linux@roeck-us.net>
6601L: lm-sensors@lm-sensors.org
6602S: Maintained
6603F: Documentation/hwmon/smm665
6604F: drivers/hwmon/smm665.c
6605
Steve Glendinning9df73052010-08-14 21:08:54 +02006606SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006607M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006608L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006609S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006610F: Documentation/hwmon/emc2103
6611F: drivers/hwmon/emc2103.c
6612
Hans de Goedea98d5062011-03-21 17:59:36 +01006613SMSC SCH5627 HARDWARE MONITOR DRIVER
6614M: Hans de Goede <hdegoede@redhat.com>
6615L: lm-sensors@lm-sensors.org
6616S: Supported
6617F: Documentation/hwmon/sch5627
6618F: drivers/hwmon/sch5627.c
6619
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006620SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006621M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006622L: lm-sensors@lm-sensors.org
6623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006624F: Documentation/hwmon/smsc47b397
6625F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006626
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006627SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006628M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006629L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006631F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006632F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006633
Steve Glendinning2cb37722008-12-11 20:54:30 -08006634SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006635M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006636L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006637S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006638F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006639
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006640SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006641M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006642L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006643S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006644F: drivers/video/smscufx.c
6645
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006646SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006647M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006648L: linux-altix@sgi.com
6649L: linux-ia64@vger.kernel.org
6650W: http://www.sgi.com/altix
6651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006652F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006653
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006654SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006655M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006656L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006657T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006658S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006659F: include/media/soc*
6660F: drivers/media/i2c/soc_camera/
6661F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006662
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006663SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006664M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006666F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006667
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006669M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006671S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006672F: drivers/md/
6673F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006676M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006677L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006679F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680
Michael Buesch61e115a2007-09-18 15:12:50 -04006681SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006682M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006683L: netdev@vger.kernel.org
6684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006685F: drivers/ssb/
6686F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006687
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006689M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006690L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006691W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006693F: Documentation/laptops/sony-laptop.txt
6694F: drivers/char/sonypi.c
6695F: drivers/platform/x86/sony-laptop.c
6696F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697
Alex Dubovbaf85322008-02-09 10:20:54 -08006698SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006699M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006700W: http://tifmxx.berlios.de/
6701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006702F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006703
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006705M: Jaroslav Kysela <perex@perex.cz>
6706M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006707L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006708W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006709T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006710T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006712F: Documentation/sound/
6713F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006714F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715
Mark Brownbd903bd2008-11-19 19:16:05 +00006716SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006717M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006718M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006719T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006720L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006721W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006722S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006723F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006724F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006725
Sam Ravnborg473321f2009-01-04 15:47:49 -08006726SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006727M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006729Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006730T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6731T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006733F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006734F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735
David S. Miller6404fcc2010-03-16 01:00:17 -07006736SPARC SERIAL DRIVERS
6737M: "David S. Miller" <davem@davemloft.net>
6738L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006739T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6740T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006741S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006742F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006743F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006744F: drivers/tty/serial/sunhv.c
6745F: drivers/tty/serial/sunsab.c
6746F: drivers/tty/serial/sunsab.h
6747F: drivers/tty/serial/sunsu.c
6748F: drivers/tty/serial/sunzilog.c
6749F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006750
Christopher Li389325b2012-04-05 14:25:14 -07006751SPARSE CHECKER
6752M: "Christopher Li" <sparse@chrisli.org>
6753L: linux-sparse@vger.kernel.org
6754W: https://sparse.wiki.kernel.org/
6755T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6756T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6757S: Maintained
6758F: include/linux/compiler.h
6759
viresh kumarfc0c1952010-04-01 12:31:21 +01006760SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006761M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306762M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006763L: spear-devel@list.st.com
6764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006765W: http://www.st.com/spear
6766S: Maintained
6767F: arch/arm/plat-spear/
6768
Viresh Kumar71e09a92012-04-20 22:39:48 +05306769SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006770M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306771M: Shiraz Hashim <shiraz.hashim@st.com>
6772L: spear-devel@list.st.com
6773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6774W: http://www.st.com/spear
6775S: Maintained
6776F: arch/arm/mach-spear13xx/
6777
viresh kumarfc0c1952010-04-01 12:31:21 +01006778SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006779M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306780M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006781L: spear-devel@list.st.com
6782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006783W: http://www.st.com/spear
6784S: Maintained
6785F: arch/arm/mach-spear3xx/
6786
6787SPEAR6XX MACHINE SUPPORT
6788M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306789M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006790M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006791L: spear-devel@list.st.com
6792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006793W: http://www.st.com/spear
6794S: Maintained
6795F: arch/arm/mach-spear6xx/
6796
6797SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006798M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006799L: spear-devel@list.st.com
6800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006801W: http://www.st.com/spear
6802S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306803F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006804
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006805SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006806M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006807L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006808Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006809T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006811F: Documentation/spi/
6812F: drivers/spi/
6813F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006814
Jim Lewis2752e402006-09-29 02:01:19 -07006815SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006816M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6817M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006818L: netdev@vger.kernel.org
6819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006820F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006821F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006822
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006823SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006824M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006825L: linuxppc-dev@lists.ozlabs.org
6826L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006827W: http://www.ibm.com/developerworks/power/cell/
6828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006829F: Documentation/filesystems/spufs.txt
6830F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006831
Phillip Lougherfc555842009-01-05 08:46:29 +00006832SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006833M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006834L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6835W: http://squashfs.org.uk
6836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006837F: Documentation/filesystems/squashfs.txt
6838F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006839
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006841M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006843F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844
Linus Torvalds26e9a392008-10-17 09:50:12 -07006845STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006846M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006847L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006848S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006849
Linus Torvalds26e9a392008-10-17 09:50:12 -07006850STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006851M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006852T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006853L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006854S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006855F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006856
Joe Perchesc8c8b102011-07-05 09:42:12 -07006857STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6858M: Henk de Groot <pe1dnn@amsat.org>
6859S: Odd Fixes
6860F: drivers/staging/wlags49_h2/
6861F: drivers/staging/wlags49_h25/
6862
Joe Perchesc9555152011-07-05 09:42:01 -07006863STAGING - ASUS OLED
6864M: Jakub Schmidtke <sjakub@gmail.com>
6865S: Odd Fixes
6866F: drivers/staging/asus_oled/
6867
Joe Perchesebd3d012011-07-05 09:42:02 -07006868STAGING - COMEDI
6869M: Ian Abbott <abbotti@mev.co.uk>
6870M: Mori Hess <fmhess@users.sourceforge.net>
6871S: Odd Fixes
6872F: drivers/staging/comedi/
6873
Joe Perches8ca572c2011-07-05 09:42:03 -07006874STAGING - CRYSTAL HD VIDEO DECODER
6875M: Naren Sankar <nsankar@broadcom.com>
6876M: Jarod Wilson <jarod@wilsonet.com>
6877M: Scott Davilla <davilla@4pi.com>
6878M: Manu Abraham <abraham.manu@gmail.com>
6879S: Odd Fixes
6880F: drivers/staging/crystalhd/
6881
Joe Perches0f16ffc2011-07-05 09:42:04 -07006882STAGING - ECHO CANCELLER
6883M: Steve Underwood <steveu@coppice.org>
6884M: David Rowe <david@rowetel.com>
6885S: Odd Fixes
6886F: drivers/staging/echo/
6887
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006888STAGING - ET131X NETWORK DRIVER
6889M: Mark Einon <mark.einon@gmail.com>
6890S: Odd Fixes
6891F: drivers/staging/et131x/
6892
Joe Perchesa0138162011-07-05 15:21:34 -07006893STAGING - FLARION FT1000 DRIVERS
6894M: Marek Belisko <marek.belisko@gmail.com>
6895S: Odd Fixes
6896F: drivers/staging/ft1000/
6897
Joe Perchesec3fab92011-07-05 09:42:05 -07006898STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6899M: David Täht <d@teklibre.com>
6900S: Odd Fixes
6901F: drivers/staging/frontier/
6902
Joe Perches6c1bb422011-07-05 09:42:07 -07006903STAGING - INDUSTRIAL IO
6904M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006905L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006906S: Odd Fixes
6907F: drivers/staging/iio/
6908
Joe Perchesa0138162011-07-05 15:21:34 -07006909STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6910M: Jarod Wilson <jarod@wilsonet.com>
6911W: http://www.lirc.org/
6912S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006913F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006914
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006915STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006916M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006917M: Marc Dietrich <marvin24@gmx.de>
6918L: ac100@lists.launchpad.net (moderated for non-subscribers)
6919S: Maintained
6920F: drivers/staging/nvec/
6921
Joe Perchesa0138162011-07-05 15:21:34 -07006922STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6923M: Andres Salomon <dilinger@queued.net>
6924M: Chris Ball <cjb@laptop.org>
6925M: Jon Nettleton <jon.nettleton@gmail.com>
6926W: http://wiki.laptop.org/go/DCON
6927S: Odd Fixes
6928F: drivers/staging/olpc_dcon/
6929
Chris Kelly94cfdd12012-03-14 10:55:42 +00006930STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006931M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006932M: Chris Kelly <ckelly@ozmodevices.com>
6933S: Maintained
6934F: drivers/staging/ozwpan/
6935
Joe Perchesa0138162011-07-05 15:21:34 -07006936STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006937M: Willy Tarreau <willy@meta-x.org>
6938S: Odd Fixes
6939F: drivers/staging/panel/
6940
Joe Perchesa0138162011-07-05 15:21:34 -07006941STAGING - REALTEK RTL8712U DRIVERS
6942M: Larry Finger <Larry.Finger@lwfinger.net>
6943M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6944S: Odd Fixes
6945F: drivers/staging/rtl8712/
6946
Joe Perches9629fa82011-07-05 09:42:09 -07006947STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6948M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6949S: Odd Fixes
6950F: drivers/staging/sm7xx/
6951
Joe Perchesa0138162011-07-05 15:21:34 -07006952STAGING - SOFTLOGIC 6x10 MPEG CODEC
6953M: Ben Collins <bcollins@bluecherry.net>
6954S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006955F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006956
6957STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6958M: William Hubbs <w.d.hubbs@gmail.com>
6959M: Chris Brannon <chris@the-brannons.com>
6960M: Kirk Reiser <kirk@braille.uwo.ca>
6961M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6962L: speakup@braille.uwo.ca
6963W: http://www.linux-speakup.org/
6964S: Odd Fixes
6965F: drivers/staging/speakup/
6966
6967STAGING - TI DSP BRIDGE DRIVERS
6968M: Omar Ramirez Luna <omar.ramirez@ti.com>
6969S: Odd Fixes
6970F: drivers/staging/tidspbridge/
6971
Joe Perchesa0138162011-07-05 15:21:34 -07006972STAGING - USB ENE SM/MS CARD READER DRIVER
6973M: Al Cho <acho@novell.com>
6974S: Odd Fixes
6975F: drivers/staging/keucr/
6976
Joe Perchesb3e871c2011-07-05 09:42:10 -07006977STAGING - VIA VT665X DRIVERS
6978M: Forest Bond <forest@alittletooquiet.net>
6979S: Odd Fixes
6980F: drivers/staging/vt665?/
6981
Joe Perches81a9a522011-07-05 09:42:11 -07006982STAGING - WINBOND IS89C35 WLAN USB DRIVER
6983M: Pavel Machek <pavel@ucw.cz>
6984S: Odd Fixes
6985F: drivers/staging/winbond/
6986
Joe Perches709bcb02011-07-05 09:42:13 -07006987STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02006988M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07006989S: Odd Fixes
6990F: drivers/staging/xgifb/
6991
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006993M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07006994S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07006995F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006997SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07006998M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006999W: http://sammy.net/sun3/
7000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007001F: arch/m68k/kernel/*sun3*
7002F: arch/m68k/sun3*/
7003F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007004F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007005
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007006SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007007M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007008L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007010Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007011T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007012S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007013F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007014F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007015F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007017SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007018M: Len Brown <len.brown@intel.com>
7019M: Pavel Machek <pavel@ucw.cz>
7020M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007021L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007022S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007023F: Documentation/power/
7024F: arch/x86/kernel/acpi/
7025F: drivers/base/power/
7026F: kernel/power/
7027F: include/linux/suspend.h
7028F: include/linux/freezer.h
7029F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030
7031SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007032M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007033L: linux-video@atrey.karlin.mff.cuni.cz
7034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007035F: Documentation/svga.txt
7036F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007038SWIOTLB SUBSYSTEM
7039M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7040L: linux-kernel@vger.kernel.org
7041S: Supported
7042F: lib/swiotlb.c
7043F: arch/*/kernel/pci-swiotlb.c
7044F: include/linux/swiotlb.h
7045
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007047M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007049F: Documentation/filesystems/sysv-fs.txt
7050F: fs/sysv/
7051F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007053TARGET SUBSYSTEM
7054M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7055L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007056L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007057L: http://groups.google.com/group/linux-iscsi-target-dev
7058W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007059T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007060S: Supported
7061F: drivers/target/
7062F: include/target/
7063F: Documentation/target/
7064
Alan Cox4e688522008-04-30 00:52:11 -07007065TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007066M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007068F: Documentation/accounting/taskstats*
7069F: include/linux/taskstats*
7070F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007071
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007072TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007073M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007074L: netdev@vger.kernel.org
7075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007076F: include/linux/pkt_cls.h
7077F: include/net/pkt_cls.h
7078F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007079
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007080TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007081M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7082M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007083W: http://tcp-lp-mod.sourceforge.net/
7084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007085F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007086
Antti Palosaari91952bc2012-10-01 12:28:46 -03007087TDA10071 MEDIA DRIVER
7088M: Antti Palosaari <crope@iki.fi>
7089L: linux-media@vger.kernel.org
7090W: http://linuxtv.org/
7091W: http://palosaari.fi/linux/
7092Q: http://patchwork.linuxtv.org/project/linux-media/list/
7093T: git git://linuxtv.org/anttip/media_tree.git
7094S: Maintained
7095F: drivers/media/dvb-frontends/tda10071*
7096
7097TDA18212 MEDIA DRIVER
7098M: Antti Palosaari <crope@iki.fi>
7099L: linux-media@vger.kernel.org
7100W: http://linuxtv.org/
7101W: http://palosaari.fi/linux/
7102Q: http://patchwork.linuxtv.org/project/linux-media/list/
7103T: git git://linuxtv.org/anttip/media_tree.git
7104S: Maintained
7105F: drivers/media/tuners/tda18212*
7106
7107TDA18218 MEDIA DRIVER
7108M: Antti Palosaari <crope@iki.fi>
7109L: linux-media@vger.kernel.org
7110W: http://linuxtv.org/
7111W: http://palosaari.fi/linux/
7112Q: http://patchwork.linuxtv.org/project/linux-media/list/
7113T: git git://linuxtv.org/anttip/media_tree.git
7114S: Maintained
7115F: drivers/media/tuners/tda18218*
7116
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007117TDA18271 MEDIA DRIVER
7118M: Michael Krufky <mkrufky@linuxtv.org>
7119L: linux-media@vger.kernel.org
7120W: http://linuxtv.org/
7121W: http://github.com/mkrufky
7122Q: http://patchwork.linuxtv.org/project/linux-media/list/
7123T: git git://linuxtv.org/mkrufky/tuners.git
7124S: Maintained
7125F: drivers/media/tuners/tda18271*
7126
Michael Krufkye48307a2012-10-02 00:56:33 -03007127TDA827x MEDIA DRIVER
7128M: Michael Krufky <mkrufky@linuxtv.org>
7129L: linux-media@vger.kernel.org
7130W: http://linuxtv.org/
7131W: http://github.com/mkrufky
7132Q: http://patchwork.linuxtv.org/project/linux-media/list/
7133T: git git://linuxtv.org/mkrufky/tuners.git
7134S: Maintained
7135F: drivers/media/tuners/tda8290.*
7136
Michael Krufky66cf9212012-10-02 00:56:28 -03007137TDA8290 MEDIA DRIVER
7138M: Michael Krufky <mkrufky@linuxtv.org>
7139L: linux-media@vger.kernel.org
7140W: http://linuxtv.org/
7141W: http://github.com/mkrufky
7142Q: http://patchwork.linuxtv.org/project/linux-media/list/
7143T: git git://linuxtv.org/mkrufky/tuners.git
7144S: Maintained
7145F: drivers/media/tuners/tda8290.*
7146
Jiri Pirko3d249d42011-11-11 22:16:48 +00007147TEAM DRIVER
7148M: Jiri Pirko <jpirko@redhat.com>
7149L: netdev@vger.kernel.org
7150S: Supported
7151F: drivers/net/team/
7152F: include/linux/if_team.h
7153
Erik Gilling84b94142010-06-09 15:35:53 -07007154TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007155M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007156L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007157Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7158T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007159S: Supported
7160F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007161F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007162F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007163
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007164TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007165M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007166L: netdev@vger.kernel.org
7167S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007168F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007169
Alan Cox4e688522008-04-30 00:52:11 -07007170Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007171M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007173F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007174
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007175TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007176M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007177M: Max Filippov <jcmvbkbc@gmail.com>
7178L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007180F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007181
7182THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007183M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007184L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007185L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007186W: http://ibm-acpi.sourceforge.net
7187W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007188T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007190F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007191
Alex Dubov4020f2d2006-10-04 02:15:37 -07007192TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007193M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007195F: drivers/misc/tifm*
7196F: drivers/mmc/host/tifm_sd.c
7197F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007198
M R Swami Reddy152ad442012-04-02 20:02:31 +05307199TI LM49xxx FAMILY ASoC CODEC DRIVERS
7200M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307201M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307202L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7203S: Maintained
7204F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307205F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307206
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007207TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007208M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007209L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7210S: Maintained
7211F: sound/soc/codecs/twl4030*
7212
Luciano Coelho90921012011-11-20 21:40:41 +02007213TI WILINK WIRELESS DRIVERS
7214M: Luciano Coelho <coelho@ti.com>
7215L: linux-wireless@vger.kernel.org
7216W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7217W: http://wireless.kernel.org/en/users/Drivers/wl1251
7218T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7219S: Maintained
7220F: drivers/net/wireless/ti/
7221F: include/linux/wl12xx.h
7222
Per Lidene86eaa32006-01-12 16:45:18 +01007223TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007224M: Jon Maloy <jon.maloy@ericsson.com>
7225M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007226L: netdev@vger.kernel.org (core kernel code)
7227L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007228W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007230F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007231F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007232
Chris Metcalf867e3592010-05-28 23:09:12 -04007233TILE ARCHITECTURE
7234M: Chris Metcalf <cmetcalf@tilera.com>
7235W: http://www.tilera.com/scm/
7236S: Supported
7237F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007238F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007239F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007240F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007241
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007243M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007244L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007245W: http://sourceforge.net/projects/tlan/
7246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007247F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007248F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007250TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007251M: Kentaro Takeda <takedakn@nttdata.co.jp>
7252M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007253L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7254L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007255L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7256L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7257W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007258T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007260F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007261
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007262TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007263M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007264L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007265S: Maintained
7266F: drivers/platform/x86/topstar-laptop.c
7267
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007269L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007270S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007271F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272
7273TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007274M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275L: tlinux-users@tce.toshiba-dme.co.jp
7276W: http://www.buzzard.org.uk/toshiba/
7277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007278F: drivers/char/toshiba.c
7279F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280
Pierre Ossmand719f902009-03-24 21:06:09 +01007281TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007282M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007283M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007284L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007285S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007286F: drivers/mmc/host/tmio_mmc*
7287F: drivers/mmc/host/sh_mobile_sdhi.c
7288F: include/linux/mmc/tmio.h
7289F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007290
Hugh Dickins98f32602009-05-21 20:33:58 +01007291TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007292M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007293L: linux-mm@kvack.org
7294S: Maintained
7295F: include/linux/shmem_fs.h
7296F: mm/shmem.c
7297
Alan Cox4e688522008-04-30 00:52:11 -07007298TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007299M: Kent Yoder <key@linux.vnet.ibm.com>
7300M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007301W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007302M: Marcel Selhorst <tpmdd@selhorst.net>
7303M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007304W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007305L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007307F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007308
Joe Perchesd6f005a2009-10-26 16:49:40 -07007309TRACING
7310M: Steven Rostedt <rostedt@goodmis.org>
7311M: Frederic Weisbecker <fweisbec@gmail.com>
7312M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007313T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007314S: Maintained
7315F: Documentation/trace/ftrace.txt
7316F: arch/*/*/*/ftrace.h
7317F: arch/*/kernel/ftrace.c
7318F: include/*/ftrace.h
7319F: include/linux/trace*.h
7320F: include/trace/
7321F: kernel/trace/
7322
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007324M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007325T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007327K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328
Alan Cox4e688522008-04-30 00:52:11 -07007329TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007330M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7331S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007332T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007333F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007334F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007335F: include/linux/serial_core.h
7336F: include/linux/serial.h
7337F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007338
Antti Palosaari91952bc2012-10-01 12:28:46 -03007339TUA9001 MEDIA DRIVER
7340M: Antti Palosaari <crope@iki.fi>
7341L: linux-media@vger.kernel.org
7342W: http://linuxtv.org/
7343W: http://palosaari.fi/linux/
7344Q: http://patchwork.linuxtv.org/project/linux-media/list/
7345T: git git://linuxtv.org/anttip/media_tree.git
7346S: Maintained
7347F: drivers/media/tuners/tua9001*
7348
Grant Grundler740db6d2008-02-17 11:53:49 -07007349TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007350M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007351L: netdev@vger.kernel.org
7352S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007353F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354
7355TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007356M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357L: vtun@office.satix.net
7358W: http://vtun.sourceforge.net/tun
7359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007360F: Documentation/networking/tuntap.txt
7361F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007363TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007364M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007366F: drivers/tc/
7367F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007368
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007370M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371L: linux-scsi@vger.kernel.org
7372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007373F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007375UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007376M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007377M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007378L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007379T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007380W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007382F: Documentation/filesystems/ubifs.txt
7383F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007384
Alan Coxcc2020e2008-05-19 14:21:51 +01007385UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007386M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007387W: http://www.uclinux.org/
7388L: uclinux-dev@uclinux.org (subscribers-only)
7389S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007390F: arch/m68k/*/*_no.*
7391F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007392
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007393UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007394M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007395W: http://uclinux-h8.sourceforge.jp/
7396S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007397F: arch/h8300/
7398F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007399F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007400
Linus Torvalds1da177e2005-04-16 15:20:36 -07007401UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007402M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007404F: Documentation/filesystems/udf.txt
7405F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406
Alan Coxcc2020e2008-05-19 14:21:51 +01007407UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007408M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007410F: Documentation/filesystems/ufs.txt
7411F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007412
David Herrmann0a09d3a2012-06-10 15:16:28 +02007413UHID USERSPACE HID IO DRIVER:
7414M: David Herrmann <dh.herrmann@googlemail.com>
7415L: linux-input@vger.kernel.org
7416S: Maintained
7417F: drivers/hid/uhid.c
7418F: include/linux/uhid.h
7419
David Vrabel18332a82008-09-17 16:34:44 +01007420ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007421L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007422S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007423F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007424F: include/linux/uwb.h
7425F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007426
GuanXuetaob31d8272011-01-16 00:35:49 +08007427UNICORE32 ARCHITECTURE:
7428M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7429W: http://mprc.pku.edu.cn/~guanxuetao/linux
7430S: Maintained
7431T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7432F: arch/unicore32/
7433
Tony Finchd8379ab2009-11-27 15:50:30 +00007434UNIFDEF
7435M: Tony Finch <dot@dotat.at>
7436W: http://dotat.at/prog/unifdef
7437S: Maintained
7438F: scripts/unifdef.c
7439
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007441M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007442W: http://www.kernel.dk
7443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007444F: Documentation/cdrom/
7445F: drivers/cdrom/cdrom.c
7446F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307448UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7449M: Vinayak Holikatti <vinholikatti@gmail.com>
7450M: Santosh Y <santoshsy@gmail.com>
7451L: linux-scsi@vger.kernel.org
7452S: Supported
7453F: Documentation/scsi/ufs.txt
7454F: drivers/scsi/ufs/
7455
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007456UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007457M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007458W: http://www.linux-mtd.infradead.org/
7459L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007460T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007461S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007462F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007463F: include/linux/mtd/ubi.h
7464F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007465
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007466UNSORTED BLOCK IMAGES (UBI) Fastmap
7467M: Richard Weinberger <richard@nod.at>
7468L: linux-mtd@lists.infradead.org
7469S: Maintained
7470F: drivers/mtd/ubi/fastmap.c
7471
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007473M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007474L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007476F: Documentation/usb/acm.txt
7477F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007479USB ATTACHED SCSI
7480M: Matthew Wilcox <willy@linux.intel.com>
7481M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7482L: linux-usb@vger.kernel.org
7483L: linux-scsi@vger.kernel.org
7484S: Supported
7485F: drivers/usb/storage/uas.c
7486
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007488M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007489L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007491F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492
Linus Torvalds1da177e2005-04-16 15:20:36 -07007493USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007494M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007495L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007497F: drivers/net/usb/cdc_*.c
7498F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007500USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007501M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007502L: linux-usb@vger.kernel.org
7503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007504F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007505
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007506USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007507M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007508L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007509W: http://www.linux-usb.org/usbnet
7510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007511F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007512
Alan Coxcc2020e2008-05-19 14:21:51 +01007513USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007514M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007515L: rio500-users@lists.sourceforge.net
7516W: http://rio500.sourceforge.net
7517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007518F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007519
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007521M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007522L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007524F: Documentation/usb/ehci.txt
7525F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526
David Brownell69ae9e32006-11-14 02:03:31 -08007527USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007528M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007529L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007530W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007531T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007533F: drivers/usb/gadget/
7534F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007535
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007536USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007537M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007538L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007539T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007541F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007542F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007543
matt mooney857aab32011-06-17 15:50:46 -07007544USB/IP DRIVERS
7545M: Matt Mooney <mfm@muteddisk.com>
7546L: linux-usb@vger.kernel.org
7547S: Maintained
7548F: drivers/staging/usbip/
7549
Olav Kongas959eea22005-11-03 17:38:14 +02007550USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007551M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007552L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007554F: drivers/usb/host/isp116x*
7555F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007556
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007558M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007559L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007561F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562
7563USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007564M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007565L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007566L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567S: Maintained
7568W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007569F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570
Clemens Ladischaf399172011-01-10 16:32:54 +01007571USB MIDI DRIVER
7572M: Clemens Ladisch <clemens@ladisch.de>
7573L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7574T: git git://git.alsa-project.org/alsa-kernel.git
7575S: Maintained
7576F: sound/usb/midi.*
7577
Linus Torvalds1da177e2005-04-16 15:20:36 -07007578USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007579M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007580L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007582F: Documentation/usb/ohci.txt
7583F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584
Matthias Urlichsba460e42005-07-14 00:33:47 -07007585USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007586M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007587L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007589F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007590
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007592M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007593L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007594L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007595W: http://pegasus2.sourceforge.net/
7596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007597F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007598
Felipe Balbid3ad5582012-05-21 16:24:49 +03007599USB PHY LAYER
7600M: Felipe Balbi <balbi@ti.com>
7601L: linux-usb@vger.kernel.org
7602T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7603S: Maintained
7604F: drivers/usb/phy/
7605F: drivers/usb/otg/
7606
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007607USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007608M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007609L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007611F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612
7613USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007614M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007615L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007616L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617W: http://pegasus2.sourceforge.net/
7618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007619F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620
Alan Cox4e688522008-04-30 00:52:11 -07007621USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007622M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007623L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007625F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007626
7627USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007628M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007629L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007630S: Maintained
7631W: http://geocities.com/i0xox0i
7632W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007633F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007634
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007636M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007639F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640
7641USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007642M: Peter Berger <pberger@brimson.com>
7643M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007644L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007646F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647
7648USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007649M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007650L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007652F: Documentation/usb/usb-serial.txt
7653F: drivers/usb/serial/generic.c
7654F: drivers/usb/serial/usb-serial.c
7655F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007658M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007659L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007661F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662
7663USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007664M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007665L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007667F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668
7669USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007670M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007671L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672W: http://www.connecttech.com
7673S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007674F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007676USB SMSC75XX ETHERNET DRIVER
7677M: Steve Glendinning <steve.glendinning@shawell.net>
7678L: netdev@vger.kernel.org
7679S: Maintained
7680F: drivers/net/usb/smsc75xx.*
7681
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007682USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007683M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007684L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007686F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007687
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007688USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007689M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007690L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007691L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007692T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693W: http://www.linux-projects.org
7694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007695F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007696F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
7698USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007699M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007700L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007702T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007704F: Documentation/usb/
7705F: drivers/net/usb/
7706F: drivers/usb/
7707F: include/linux/usb.h
7708F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007709
7710USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007711M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007712L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007714F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715
David Brownell69ae9e32006-11-14 02:03:31 -08007716USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007717M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007718L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007719W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007721F: drivers/net/usb/usbnet.c
7722F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007723
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007724USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007725M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007726L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007727L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007728T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007729W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007730S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007731F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007733USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007734M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007735L: linux-wireless@vger.kernel.org
7736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007737F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007738
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007739USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007740M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007741L: linux-usb@vger.kernel.org
7742S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007743F: drivers/usb/host/xhci*
7744F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007745
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007747L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007749S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007750F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007752USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007753M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007754L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007755L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007756T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007757W: http://royale.zerezo.com/zr364xx/
7758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007759F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007760F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007761
Randy Dunlape7839f22008-10-12 16:11:45 -07007762USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007763M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007764M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765L: user-mode-linux-devel@lists.sourceforge.net
7766L: user-mode-linux-user@lists.sourceforge.net
7767W: http://user-mode-linux.sourceforge.net
7768S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007769F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007770F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007771F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007772F: fs/hostfs/
7773F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007774
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007775USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007776M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007777M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007779F: Documentation/DocBook/uio-howto.tmpl
7780F: drivers/uio/
7781F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007782
Karel Zak256cccb2012-06-01 10:13:09 +02007783UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007784M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007785L: util-linux@vger.kernel.org
7786W: http://en.wikipedia.org/wiki/Util-linux
7787T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007788S: Maintained
7789
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007790UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007791M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007792L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007793W: http://dev.gentoo.org/~spock/projects/uvesafb/
7794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007795F: Documentation/fb/uvesafb.txt
7796F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007797
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007798VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007799M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007801F: Documentation/filesystems/vfat.txt
7802F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803
Alex Williamsoncba33452012-07-31 08:16:22 -06007804VFIO DRIVER
7805M: Alex Williamson <alex.williamson@redhat.com>
7806L: kvm@vger.kernel.org
7807S: Maintained
7808F: Documentation/vfio.txt
7809F: drivers/vfio/
7810F: include/linux/vfio.h
7811
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007812VIDEOBUF2 FRAMEWORK
7813M: Pawel Osciak <pawel@osciak.com>
7814M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007815M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007816L: linux-media@vger.kernel.org
7817S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007818F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007819F: include/media/videobuf2-*
7820
Amit Shah9a824462010-03-23 18:23:09 +05307821VIRTIO CONSOLE DRIVER
7822M: Amit Shah <amit.shah@redhat.com>
7823L: virtualization@lists.linux-foundation.org
7824S: Maintained
7825F: drivers/char/virtio_console.c
7826F: include/linux/virtio_console.h
7827
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307828VIRTIO CORE, NET AND BLOCK DRIVERS
7829M: Rusty Russell <rusty@rustcorp.com.au>
7830M: "Michael S. Tsirkin" <mst@redhat.com>
7831L: virtualization@lists.linux-foundation.org
7832S: Maintained
7833F: drivers/virtio/
7834F: drivers/net/virtio_net.c
7835F: drivers/block/virtio_blk.c
7836F: include/linux/virtio_*.h
7837
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007838VIRTIO HOST (VHOST)
7839M: "Michael S. Tsirkin" <mst@redhat.com>
7840L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007841L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007842L: netdev@vger.kernel.org
7843S: Maintained
7844F: drivers/vhost/
7845F: include/linux/vhost.h
7846
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007848M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007850F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007851
Jean Delvare32c0a522005-09-22 21:47:58 +02007852VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007853M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007854L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007856F: Documentation/i2c/busses/i2c-viapro
7857F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007858
Harald Weltef0bf7f62009-06-17 20:22:39 +02007859VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007860M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007861M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007862S: Maintained
7863F: drivers/mmc/host/via-sdmmc.c
7864
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007865VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007866M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007867L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007868S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007869F: include/linux/via-core.h
7870F: include/linux/via-gpio.h
7871F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007872F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007873
Francois Romieu01f20732007-01-26 00:57:17 -08007874VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007875M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007876L: netdev@vger.kernel.org
7877S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007878F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879
Patrick McHardybe7f8272007-10-23 20:26:36 -07007880VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007881M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007882L: netdev@vger.kernel.org
7883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007884F: drivers/net/macvlan.c
7885F: include/linux/if_*vlan.h
7886F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007887
Florian Fainelli55e331c2009-06-16 15:33:53 -07007888VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007889M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007890L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007891S: Maintained
7892F: drivers/vlynq/vlynq.c
7893F: include/linux/vlynq.h
7894
Martyn Welch390beae2012-05-03 17:52:36 +01007895VME SUBSYSTEM
7896M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007897M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007898M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7899L: devel@driverdev.osuosl.org
7900S: Maintained
7901T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7902F: Documentation/vme_api.txt
7903F: drivers/staging/vme/
7904F: drivers/vme/
7905F: include/linux/vme*
7906
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007907VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007908M: Shreyas Bhatewara <sbhatewara@vmware.com>
7909M: "VMware, Inc." <pv-drivers@vmware.com>
7910L: netdev@vger.kernel.org
7911S: Maintained
7912F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007913
Alok Kataria851b1642009-10-13 14:51:05 -07007914VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007915M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007916M: VMware PV-Drivers <pv-drivers@vmware.com>
7917L: linux-scsi@vger.kernel.org
7918S: Maintained
7919F: drivers/scsi/vmw_pvscsi.c
7920F: drivers/scsi/vmw_pvscsi.h
7921
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007922VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007923M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007924M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007925W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007926W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007927T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007929F: drivers/regulator/
7930F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007931
Juerg Haefligerab413192006-09-24 20:54:04 +02007932VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007933M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007934L: lm-sensors@lm-sensors.org
7935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007936F: Documentation/hwmon/vt1211
7937F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007938
Roger Lucas1de9e372005-11-26 20:20:05 +01007939VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007940M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007941L: lm-sensors@lm-sensors.org
7942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007943F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007944
Tony Olech88095e72011-05-14 16:48:13 -04007945VUB300 USB to SDIO/SD/MMC bridge chip
7946M: Tony Olech <tony.olech@elandigitalsystems.com>
7947L: linux-mmc@vger.kernel.org
7948L: linux-usb@vger.kernel.org
7949S: Supported
7950F: drivers/mmc/host/vub300.c
7951
Linus Torvalds1da177e2005-04-16 15:20:36 -07007952W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007953M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007955F: Documentation/w1/
7956F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007957
Charles Spirakis13927072006-07-05 18:05:15 +02007958W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007959M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007960L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007962F: Documentation/hwmon/w83791d
7963F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007964
Rudolf Marek61db0112006-12-12 18:18:30 +01007965W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007966M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007967L: lm-sensors@lm-sensors.org
7968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007969F: Documentation/hwmon/w83793
7970F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007971
Jean Delvaree3760b42010-10-28 20:31:49 +02007972W83795 HARDWARE MONITORING DRIVER
7973M: Jean Delvare <khali@linux-fr.org>
7974L: lm-sensors@lm-sensors.org
7975S: Maintained
7976F: drivers/hwmon/w83795.c
7977
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007979M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007981F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007983WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007984M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00007985L: linux-watchdog@vger.kernel.org
7986W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01007987T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007989F: Documentation/watchdog/
7990F: drivers/watchdog/
7991F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007992
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007994M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995L: linux-scsi@vger.kernel.org
7996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007997F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998
David Herrmannb22e00f2011-09-06 13:50:40 +02007999WIIMOTE HID DRIVER
8000M: David Herrmann <dh.herrmann@googlemail.com>
8001L: linux-input@vger.kernel.org
8002S: Maintained
8003F: drivers/hid/hid-wiimote*
8004
David Härdemane258b802009-09-21 17:04:53 -07008005WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008006M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008007S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008008F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008009
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008010WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008011M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008012M: linux-wimax@intel.com
8013L: wimax@linuxwimax.org
8014S: Supported
8015W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008016F: Documentation/wimax/README.wimax
8017F: include/linux/wimax.h
8018F: include/linux/wimax/debug.h
8019F: include/net/wimax.h
8020F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008021
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008022WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008023M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008025F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008026
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008028M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008029L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008030W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008032F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033
Mark Brownfebf1df2008-04-02 00:51:09 -04008034WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008035M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8036M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008037L: linux-input@vger.kernel.org
8038T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8039W: http://opensource.wolfsonmicro.com/node/7
8040S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008041F: drivers/input/touchscreen/*wm97*
8042F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008043
Mark Brown055bcbc2010-08-13 14:18:12 +01008044WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008045M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008046L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008047T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008048T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008049W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008050S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008051F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008052F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008053F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008054F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008055F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008056F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008057F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008058F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008059F: drivers/input/misc/wm831x-on.c
8060F: drivers/input/touchscreen/wm831x-ts.c
8061F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008062F: drivers/mfd/arizona*
8063F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008064F: drivers/power/wm83*.c
8065F: drivers/rtc/rtc-wm83*.c
8066F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008067F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008068F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008069F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008070F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008071F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008072F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008073F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008074F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008075F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008076F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008077
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008078WORKQUEUE
8079M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008080T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8081S: Maintained
8082F: include/linux/workqueue.h
8083F: kernel/workqueue.c
8084F: Documentation/workqueue.txt
8085
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008087M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008089S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008090F: Documentation/networking/x25*
8091F: include/net/x25*
8092F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008094X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008095M: Thomas Gleixner <tglx@linutronix.de>
8096M: Ingo Molnar <mingo@redhat.com>
8097M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008098M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008099T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008101F: Documentation/x86/
8102F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008103
Matthew Garrettd0944852010-02-11 10:40:13 -05008104X86 PLATFORM DRIVERS
8105M: Matthew Garrett <mjg@redhat.com>
8106L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008107T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008108S: Maintained
8109F: drivers/platform/x86
8110
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008111X86 MCE INFRASTRUCTURE
8112M: Tony Luck <tony.luck@intel.com>
8113M: Borislav Petkov <bp@amd64.org>
8114L: linux-edac@vger.kernel.org
8115S: Maintained
8116F: arch/x86/kernel/cpu/mcheck/*
8117
Ian Campbellc4468082011-04-27 15:26:46 -07008118XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008119M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008120M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008121L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8122L: virtualization@lists.linux-foundation.org
8123S: Supported
8124F: arch/x86/xen/
8125F: drivers/*/xen-*front.c
8126F: drivers/xen/
8127F: arch/x86/include/asm/xen/
8128F: include/xen/
8129
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008130XEN HYPERVISOR ARM
8131M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8132L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8133S: Supported
8134F: arch/arm/xen/
8135F: arch/arm/include/asm/xen/
8136
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008137XEN NETWORK BACKEND DRIVER
8138M: Ian Campbell <ian.campbell@citrix.com>
8139L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8140L: netdev@vger.kernel.org
8141S: Supported
8142F: drivers/net/xen-netback/*
8143
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008144XEN PCI SUBSYSTEM
8145M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008146L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008147S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008148F: arch/x86/pci/*xen*
8149F: drivers/pci/*xen*
8150
8151XEN SWIOTLB SUBSYSTEM
8152M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008153L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008154S: Supported
8155F: arch/x86/xen/*swiotlb*
8156F: drivers/xen/*swiotlb*
8157
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158XFS FILESYSTEM
8159P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008160M: Ben Myers <bpm@sgi.com>
8161M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008162M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008163L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008164W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008165T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008167F: Documentation/filesystems/xfs.txt
8168F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008170XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008171M: Anirudha Sarangi <anirudh@xilinx.com>
8172M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008173S: Maintained
8174F: drivers/net/ethernet/xilinx/xilinx_axienet*
8175
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008176XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008177M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008178W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008180F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008181
Peter Korsgaard238b8722006-12-06 20:35:17 -08008182XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008183M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008184L: linux-serial@vger.kernel.org
8185S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008186F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008187
Linus Torvalds1da177e2005-04-16 15:20:36 -07008188YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008189M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190L: linux-hams@vger.kernel.org
8191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008192F: drivers/net/hamradio/yam*
8193F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194
Henkaf64a5e2005-10-12 15:02:56 +02008195YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008196M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008197L: usbb2k-api-dev@nongnu.org
8198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008199F: Documentation/input/yealink.txt
8200F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008201
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008203M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204W: http://yaina.de/jreuter/
8205W: http://www.qsl.net/dl1bke/
8206L: linux-hams@vger.kernel.org
8207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008208F: Documentation/networking/z8530drv.txt
8209F: drivers/net/hamradio/*scc.c
8210F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008212ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008213M: Daniel Drake <dsd@gentoo.org>
8214M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008215W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008216L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008217L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008219F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008220
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008222L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008223L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008225T: Mercurial http://linuxtv.org/hg/v4l-dvb
8226S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008227F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008229ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008230M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008231S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008232F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008233
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008235M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008236L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008237Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008238T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008240F: *
8241F: */