blob: 41c53491db60fe9cbf199e8afbf2a876a82412d3 [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önigb16533d2009-11-30 16:53:24 +0100792F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700793F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200794
Shawn Guo8bcb9762011-10-07 22:24:18 +0800795ARM/FREESCALE IMX6
796M: Shawn Guo <shawn.guo@linaro.org>
797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
798S: Maintained
799T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
800F: arch/arm/mach-imx/*imx6*
801
Shawn Guoa9866a092011-10-21 11:53:34 +0800802ARM/FREESCALE MXS ARM ARCHITECTURE
803M: Shawn Guo <shawn.guo@linaro.org>
804L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
805S: Maintained
806T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
807F: arch/arm/mach-mxs/
808
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800809ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700810M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700811L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800812S: Maintained
813
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100814ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700815M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700816L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100817S: Maintained
818
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200819ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700820M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100821M: Paul Parsons <lost.distance@yahoo.com>
822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200823S: Maintained
824F: arch/arm/mach-pxa/hx4700.c
825F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100826F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200827
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100828ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700829M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200830W: www.jlime.com
831S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700832T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
833F: arch/arm/mach-sa1100/jornada720.c
834F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100835
Marek Vasut403d2972010-05-22 00:29:39 +0200836ARM/INCOME PXA270 SUPPORT
837M: Marek Vasut <marek.vasut@gmail.com>
838L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
839S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700840F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200841
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800842ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700843M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700844M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700845L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700846S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100847
848ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700849M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700851S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800852
853ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700854M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700855M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700856L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700857S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800858
859ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700860M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700861M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700863S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800864
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800865ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800868S: Maintained
869
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200870ARM/INTEL IXP4XX ARM ARCHITECTURE
871M: Imre Kaloz <kaloz@openwrt.org>
872M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200874S: Maintained
875F: arch/arm/mach-ixp4xx/
876
Joe Perches838553c2010-10-26 14:22:59 -0700877ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100878M: Jonathan Cameron <jic23@cam.ac.uk>
879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
880S: Maintained
881F: arch/arm/mach-pxa/stargate2.c
882F: drivers/pcmcia/pxa2xx_stargate2.c
883
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700885M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700886M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700888S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800889
890ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700891M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800893S: Maintained
894
895ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700896M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898S: Maintained
899
Philipp Zabel3b8861712008-07-09 21:27:15 +0100900ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700901M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100902S: Maintained
903
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200904ARM/Marvell Armada 370 and Armada XP SOC support
905M: Jason Cooper <jason@lakedaemon.net>
906M: Andrew Lunn <andrew@lunn.ch>
907M: Gregory Clement <gregory.clement@free-electrons.com>
908L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
909S: Maintained
910F: arch/arm/mach-mvebu/
911
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400912ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
913M: Jason Cooper <jason@lakedaemon.net>
914M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700915L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400916S: Maintained
917F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400918F: arch/arm/mach-kirkwood/
919F: arch/arm/mach-mv78xx0/
920F: arch/arm/mach-orion5x/
921F: arch/arm/plat-orion/
922
Alexander Clouterd69ac132011-04-14 15:22:02 -0700923ARM/Orion SoC/Technologic Systems TS-78xx platform support
924M: Alexander Clouter <alex@digriz.org.uk>
925L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
926W: http://www.digriz.org.uk/ts78xx/kernel
927S: Maintained
928F: arch/arm/mach-orion5x/ts78xx-*
929
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000930ARM/MICREL KS8695 ARCHITECTURE
931M: Greg Ungerer <gerg@uclinux.org>
932L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
933F: arch/arm/mach-ks8695
934S: Odd Fixes
935
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200936ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700937M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700938L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200939F: arch/arm/mach-pxa/mioa701.c
940S: Maintained
941
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100942ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700943M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100944S: Maintained
945
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100946ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700947M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200948M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700949M: STEricsson <STEricsson_nomadik_linux@list.st.com>
950L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
951S: Maintained
952F: arch/arm/mach-nomadik/
953F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100954F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200955T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100956
Andy Green9d762952009-05-19 06:41:42 -0300957ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700958M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300959L: openmoko-kernel@lists.openmoko.org (subscribers-only)
960W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
961S: Supported
962
Daniel Walker0c19d212009-12-07 16:53:51 -0800963ARM/QUALCOMM MSM MACHINE SUPPORT
964M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800965M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800966M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800967L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800968F: arch/arm/mach-msm/
969F: drivers/video/msm/
970F: drivers/mmc/host/msm_sdcc.c
971F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800972F: drivers/tty/serial/msm_serial.h
973F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700974F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700975F: drivers/*/pm8???-*
976F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800977T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800978S: Maintained
979
Dirk Opfer8459c152005-11-06 14:27:52 +0000980ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700981M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
982M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000983S: Maintained
984
Marek Vasut5d783a22009-07-16 13:26:48 +0200985ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700986M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200987L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100988W: http://hackndev.com
989S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700990F: arch/arm/mach-pxa/include/mach/palmtx.h
991F: arch/arm/mach-pxa/palmtx.c
992F: arch/arm/mach-pxa/include/mach/palmt5.h
993F: arch/arm/mach-pxa/palmt5.c
994F: arch/arm/mach-pxa/include/mach/palmld.h
995F: arch/arm/mach-pxa/palmld.c
996F: arch/arm/mach-pxa/include/mach/palmte2.h
997F: arch/arm/mach-pxa/palmte2.c
998F: arch/arm/mach-pxa/include/mach/palmtc.h
999F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001000
Joe Perchesb57fe922009-12-14 18:00:52 -08001001ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001003L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001004W: http://hackndev.com
1005S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001006F: arch/arm/mach-pxa/include/mach/palmtreo.h
1007F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001008
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001009ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001011L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001012W: http://hackndev.com
1013S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001014F: arch/arm/mach-pxa/include/mach/palmz72.h
1015F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001018M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1020S: Maintained
1021
1022ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001023M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001024L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025W: http://www.arm.linux.org.uk/
1026S: Maintained
1027
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001028ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001029M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001030L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001031S: Maintained
1032
Russell Kingd4275352009-04-16 14:05:27 +01001033ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001035L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001036W: http://www.arm.linux.org.uk/
1037S: Maintained
1038F: arch/arm/common/time-acorn.c
1039F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1040F: arch/arm/include/asm/hardware/ioc.h
1041F: arch/arm/include/asm/hardware/iomd.h
1042F: arch/arm/include/asm/hardware/memc.h
1043F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001044F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001045F: drivers/net/ethernet/i825xx/ether1*
1046F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001047F: drivers/scsi/arm/
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001050M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051W: http://www.shark-linux.de/shark.html
1052S: Maintained
1053
Ben Dooksb21477f2009-06-13 10:46:34 +01001054ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001055M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001056M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001058L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001059W: http://www.fluff.org/ben/linux/
1060S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001061F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001062F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001063F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001064F: arch/arm/mach-s3c24*/
1065F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001066F: drivers/*/*s3c2410*
1067F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001068F: drivers/spi/spi-s3c*
1069F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001071ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001072M: Kukjin Kim <kgene.kim@samsung.com>
1073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1075S: Maintained
1076F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001077F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001078
Kyungmin Park10ffa962011-03-04 17:36:26 -08001079ARM/SAMSUNG MOBILE MACHINE SUPPORT
1080M: Kyungmin Park <kyungmin.park@samsung.com>
1081L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082S: Maintained
1083F: arch/arm/mach-s5pv210/mach-aquila.c
1084F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001085F: arch/arm/mach-exynos/mach-universal_c210.c
1086F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001087
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001088ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1089M: Kyungmin Park <kyungmin.park@samsung.com>
1090M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1091L: linux-arm-kernel@lists.infradead.org
1092L: linux-media@vger.kernel.org
1093S: Maintained
1094F: arch/arm/plat-s5p/dev-fimc*
1095F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001096F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001097
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001098ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1099M: Kyungmin Park <kyungmin.park@samsung.com>
1100M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001101M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001102L: linux-arm-kernel@lists.infradead.org
1103L: linux-media@vger.kernel.org
1104S: Maintained
1105F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001106F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001107
1108ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1109M: Kyungmin Park <kyungmin.park@samsung.com>
1110M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1111L: linux-arm-kernel@lists.infradead.org
1112L: linux-media@vger.kernel.org
1113S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001114F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001115
Paul Mundtd48d38e2010-02-08 12:50:24 +09001116ARM/SHMOBILE ARM ARCHITECTURE
1117M: Paul Mundt <lethal@linux-sh.org>
1118M: Magnus Damm <magnus.damm@gmail.com>
1119L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001120W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001121Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001122T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001123S: Supported
1124F: arch/arm/mach-shmobile/
1125F: drivers/sh/
1126
Dinh Nguyen66314222012-07-18 16:07:18 -06001127ARM/SOCFPGA ARCHITECTURE
1128M: Dinh Nguyen <dinguyen@altera.com>
1129S: Maintained
1130F: arch/arm/mach-socfpga/
1131
1132ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1133M: Dinh Nguyen <dinguyen@altera.com>
1134S: Maintained
1135F: drivers/clk/socfpga/
1136
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001137ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001138M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001139L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001140S: Maintained
1141
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001142ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001143M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1145S: Maintained
1146
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001147ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001148M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001149L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001150S: Maintained
1151
wanzongshun98ad6e32009-02-13 06:04:32 +01001152ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001153M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001154L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001155W: http://www.mcuos.com
1156S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001157F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001158F: drivers/input/keyboard/w90p910_keypad.c
1159F: drivers/input/touchscreen/w90p910_ts.c
1160F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001161F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001162F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001163F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001164F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001165F: drivers/usb/host/ehci-w90x900.c
1166F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001167
Linus Walleij54274d72010-04-04 10:58:03 +01001168ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001169M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171S: Supported
1172F: arch/arm/mach-u300/
1173F: drivers/i2c/busses/i2c-stu300.c
1174F: drivers/rtc/rtc-coh901331.c
1175F: drivers/watchdog/coh901327_wdt.c
1176F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001177F: drivers/mfd/ab3100*
1178F: drivers/rtc/rtc-ab3100.c
1179F: drivers/rtc/rtc-coh901331.c
1180T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001181
Linus Walleij87572882010-12-22 09:18:29 +01001182ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001183M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001184M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001185L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1186S: Maintained
1187F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001188F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001189F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001190F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001191F: drivers/mfd/abx500*
1192F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001193F: drivers/mfd/dbx500*
1194F: drivers/mfd/db8500*
1195F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001196F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001197F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001198T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001199
Russell Kingd4275352009-04-16 14:05:27 +01001200ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001201M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001203W: http://www.arm.linux.org.uk/
1204S: Maintained
1205F: arch/arm/vfp/
1206
Marek Vasute66b6d82010-03-26 06:51:32 +01001207ARM/VOIPAC PXA270 SUPPORT
1208M: Marek Vasut <marek.vasut@gmail.com>
1209L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1210S: Maintained
1211F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001212F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001213
Tony Prisk04529fe2012-07-24 04:19:37 +12001214ARM/VT8500 ARM ARCHITECTURE
1215M: Tony Prisk <linux@prisktech.co.nz>
1216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217S: Maintained
1218F: arch/arm/mach-vt8500/
1219F: drivers/video/vt8500lcdfb.*
1220F: drivers/video/wm8505fb*
1221F: drivers/video/wmt_ge_rops.*
1222F: drivers/tty/serial/vt8500_serial.c
1223F: drivers/rtc/rtc-vt8500-c
1224
Marek Vasute66b6d82010-03-26 06:51:32 +01001225ARM/ZIPIT Z2 SUPPORT
1226M: Marek Vasut <marek.vasut@gmail.com>
1227L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1228S: Maintained
1229F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001230F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001231
Catalin Marinas38074222012-03-05 11:49:34 +00001232ARM64 PORT (AARCH64 ARCHITECTURE)
1233M: Catalin Marinas <catalin.marinas@arm.com>
1234L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1235S: Maintained
1236F: arch/arm64/
1237
George Josephd58de032010-03-05 22:17:25 +01001238ASC7621 HARDWARE MONITOR DRIVER
1239M: George Joseph <george.joseph@fairview5.com>
1240L: lm-sensors@lm-sensors.org
1241S: Maintained
1242F: Documentation/hwmon/asc7621
1243F: drivers/hwmon/asc7621.c
1244
Corentin Charyb229ece2011-02-26 10:20:40 +01001245ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001246M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001248L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001249W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001251F: drivers/platform/x86/asus*.c
1252F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001254ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001255M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001256L: lm-sensors@lm-sensors.org
1257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001258F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001259
Andrew Morton953a6472008-11-06 12:53:28 -08001260ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001261M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001262W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001264F: Documentation/crypto/async-tx-api.txt
1265F: crypto/async_tx/
1266F: drivers/dma/
1267F: include/linux/dmaengine.h
1268F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001269
Wolfram Sanga1867d32009-09-18 22:45:51 +02001270AT24 EEPROM DRIVER
1271M: Wolfram Sang <w.sang@pengutronix.de>
1272L: linux-i2c@vger.kernel.org
1273S: Maintained
1274F: drivers/misc/eeprom/at24.c
1275F: include/linux/i2c/at24.h
1276
Randy Dunlape7839f22008-10-12 16:11:45 -07001277ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001278M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001279W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001281F: Documentation/aoe/
1282F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Joe Perches9a10a872010-12-01 09:37:55 -08001284ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001285M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001286L: linux-wireless@vger.kernel.org
1287S: Supported
1288F: drivers/net/wireless/ath/*
1289
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001290ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001291M: Jiri Slaby <jirislaby@gmail.com>
1292M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001293M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001294L: linux-wireless@vger.kernel.org
1295L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001296W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001297S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001298F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001299
Kalle Valo12e62d62011-09-13 10:21:25 +03001300ATHEROS ATH6KL WIRELESS DRIVER
1301M: Kalle Valo <kvalo@qca.qualcomm.com>
1302L: linux-wireless@vger.kernel.org
1303W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1304T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1305S: Supported
1306F: drivers/net/wireless/ath/ath6kl/
1307
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001308ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001309M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1310M: Jouni Malinen <jouni@qca.qualcomm.com>
1311M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1312M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001313L: linux-wireless@vger.kernel.org
1314L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001315W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001316S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001317F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001318
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001319CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1320M: Christian Lamparter <chunkeey@googlemail.com>
1321L: linux-wireless@vger.kernel.org
1322W: http://wireless.kernel.org/en/users/Drivers/carl9170
1323S: Maintained
1324F: drivers/net/wireless/ath/carl9170/
1325
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001326ATK0110 HWMON DRIVER
1327M: Luca Tettamanti <kronos.it@gmail.com>
1328L: lm-sensors@lm-sensors.org
1329S: Maintained
1330F: drivers/hwmon/asus_atk0110.c
1331
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001332ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001333M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001335F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001336
Chris Snook7ae115b2008-09-09 03:26:57 -04001337ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001338M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001339M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001340L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001341W: http://sourceforge.net/projects/atl1
1342W: http://atl1.sourceforge.net
1343S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001344F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001347M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001348L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001349L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350W: http://linux-atm.sourceforge.net
1351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001352F: drivers/atm/
1353F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Pierre Ossman272f1332007-05-14 21:25:26 +02001355ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001356M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001357L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001358W: http://www.atmel.com/products/AT91/
1359W: http://www.at91.com/
1360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001361F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001362
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001363ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001364M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001365S: Maintained
1366F: drivers/mmc/host/atmel-mci.c
1367F: drivers/mmc/host/atmel-mci-regs.h
1368
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001369ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001370M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001371S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001372F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001373
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001374ATMEL DMA DRIVER
1375M: Nicolas Ferre <nicolas.ferre@atmel.com>
1376L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1377S: Supported
1378F: drivers/dma/at_hdmac.c
1379F: drivers/dma/at_hdmac_regs.h
1380F: arch/arm/mach-at91/include/mach/at_hdmac.h
1381
Josh Wu15515542012-03-23 17:56:29 +08001382ATMEL ISI DRIVER
1383M: Josh Wu <josh.wu@atmel.com>
1384L: linux-media@vger.kernel.org
1385S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001386F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001387F: include/media/atmel-isi.h
1388
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001389ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001391L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001393F: drivers/video/atmel_lcdfb.c
1394F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001395
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001396ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001397M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001398S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001399F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001400
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001401ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001402M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001403S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001404F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001405
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001406ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1407M: Nicolas Ferre <nicolas.ferre@atmel.com>
1408L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409S: Supported
1410F: drivers/misc/atmel_tclib.c
1411F: drivers/clocksource/tcb_clksrc.c
1412
Josh Wuff2675d2012-03-23 17:56:55 +08001413ATMEL TSADCC DRIVER
1414M: Josh Wu <josh.wu@atmel.com>
1415L: linux-input@vger.kernel.org
1416S: Supported
1417F: drivers/input/touchscreen/atmel_tsadcc.c
1418
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001419ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001420M: Nicolas Ferre <nicolas.ferre@atmel.com>
1421L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001423F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001427L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428W: http://www.thekelleys.org.uk/atmel
1429W: http://atmelwlandriver.sourceforge.net/
1430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001431F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Chris Wrighta92b7b82005-07-07 18:12:23 -07001433AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001434M: Al Viro <viro@zeniv.linux.org.uk>
1435M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001436L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001437W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001438T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001440F: include/linux/audit.h
1441F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001442
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001443AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001444M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001445W: http://miguelojeda.es/auxdisplay.htm
1446W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001448F: drivers/auxdisplay/
1449F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001450
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001451AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001452M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1453M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001454W: http://www.atmel.com/products/AVR32/
1455W: http://avr32linux.org/
1456W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001458F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001459
1460AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001461M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1462M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001464F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001467M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001469W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001471F: include/linux/ax25.h
1472F: include/net/ax25.h
1473F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001475B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001476M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001477L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001478L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001479W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001482
1483B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001484M: Larry Finger <Larry.Finger@lwfinger.net>
1485M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001486L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001487L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001488W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001490F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001491
Richard Purdie300abeb2007-02-07 22:21:07 +00001492BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001493M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001495F: drivers/video/backlight/
1496F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001497
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001498BATMAN ADVANCED
1499M: Marek Lindner <lindner_marek@yahoo.de>
1500M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001501M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001502L: b.a.t.m.a.n@lists.open-mesh.org
1503W: http://www.open-mesh.org/
1504S: Maintained
1505F: net/batman-adv/
1506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001507BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001508M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001509L: linux-hams@vger.kernel.org
1510W: http://www.baycom.org/~tom/ham/ham.html
1511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001512F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001513
1514BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001515S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001516F: Documentation/filesystems/befs.txt
1517F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001518
1519BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001520M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: Documentation/filesystems/bfs.txt
1523F: fs/bfs/
1524F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001525
Bryan Wu1394f032007-05-06 14:50:22 -07001526BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001527M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001528L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001529W: http://blackfin.uclinux.org
1530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001531F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001532
Bryan Wue190d6b2007-07-17 14:43:44 +08001533BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001534L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001535W: http://blackfin.uclinux.org
1536S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001537F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001538
Mike Frysinger566da5b2007-06-11 15:31:30 +08001539BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001540M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001541L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001542W: http://blackfin.uclinux.org
1543S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001544F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001545
Mike Frysinger936ed492010-03-10 15:20:38 -08001546BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001547M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001548L: uclinux-dist-devel@blackfin.uclinux.org
1549W: http://blackfin.uclinux.org
1550S: Supported
1551F: drivers/mmc/host/bfin_sdh.c
1552
Bryan Wu1394f032007-05-06 14:50:22 -07001553BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001554M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001555L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001556W: http://blackfin.uclinux.org
1557S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001558F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001559
Bryan Wu1e6d3202007-07-15 02:50:02 +08001560BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001561M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001562L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001563W: http://blackfin.uclinux.org
1564S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001565F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001566
Bryan Wud24ecfc2007-05-01 23:26:32 +02001567BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001568M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001569L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001570W: http://blackfin.uclinux.org/
1571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001572F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001573
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001574BLINKM RGB LED DRIVER
1575M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1576S: Maintained
1577F: drivers/leds/leds-blinkm.c
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001580M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001581T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001583F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Joern Engel2b54aae2008-02-06 01:38:02 -08001585BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001586M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001587L: linux-mtd@lists.infradead.org
1588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001590
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001591BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001592M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001593M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001594M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001595L: linux-bluetooth@vger.kernel.org
1596W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001597T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1598T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001603M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001604M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001605M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001606L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001607W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001608T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1609T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001611F: net/bluetooth/
1612F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001615M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001616M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001617L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001618W: http://sourceforge.net/projects/bonding/
1619S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001620F: drivers/net/bonding/
1621F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Gary Zambrano39105892006-06-22 17:26:20 -07001623BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001624M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001625L: netdev@vger.kernel.org
1626S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001627F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001628
Michael Chan948c51e2006-06-04 02:51:39 -07001629BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001630M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001631L: netdev@vger.kernel.org
1632S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001633F: drivers/net/ethernet/broadcom/bnx2.*
1634F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001635
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001636BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001638L: netdev@vger.kernel.org
1639S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001640F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001641
Stephen Warrenf680f252012-09-15 00:18:54 -06001642BROADCOM BCM2835 ARM ARCHICTURE
1643M: Stephen Warren <swarren@wwwdotorg.org>
1644L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1645T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1646S: Maintained
1647F: arch/arm/mach-bcm2835/
1648F: arch/arm/boot/dts/bcm2835*
1649F: arch/arm/configs/bcm2835_defconfig
1650F: drivers/*/*bcm2835*
1651
Michael Chan948c51e2006-06-04 02:51:39 -07001652BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Matt Carlson <mcarlson@broadcom.com>
1654M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001655L: netdev@vger.kernel.org
1656S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001657F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001658
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001659BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1660M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001661M: Roland Vossen <rvossen@broadcom.com>
1662M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001663M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1664M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001665L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001666L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001667S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001668F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001669
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001670BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1671M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1672L: linux-scsi@vger.kernel.org
1673S: Supported
1674F: drivers/scsi/bnx2fc/
1675
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001676BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1677M: Rafał Miłecki <zajec5@gmail.com>
1678L: linux-wireless@vger.kernel.org
1679S: Maintained
1680F: drivers/bcma/
1681F: include/linux/bcma/
1682
Jing Huang7725ccf2009-09-23 17:46:15 -07001683BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001684M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001685L: linux-scsi@vger.kernel.org
1686S: Supported
1687F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001688
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001689BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1690M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001691L: netdev@vger.kernel.org
1692S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001693F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001694
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001695BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001697L: linux-scsi@vger.kernel.org
1698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001699F: block/bsg.c
1700F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001701
Clemens Ladischaf399172011-01-10 16:32:54 +01001702BT87X AUDIO DRIVER
1703M: Clemens Ladisch <clemens@ladisch.de>
1704L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1705T: git git://git.alsa-project.org/alsa-kernel.git
1706S: Maintained
1707F: Documentation/sound/alsa/Bt87x.txt
1708F: sound/pci/bt87x.c
1709
Michael Bueschff1d5c22008-07-25 01:46:10 -07001710BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001711M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001712W: http://bu3sch.de/btgpio.php
1713S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001714F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001715
Joe Percheseb1eb042009-01-21 10:49:16 -05001716BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001717M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001718L: linux-btrfs@vger.kernel.org
1719W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001720Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001721T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001723F: Documentation/filesystems/btrfs.txt
1724F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001727M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001728L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001729W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001730T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001732F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001733F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Clemens Ladischaf399172011-01-10 16:32:54 +01001735C-MEDIA CMI8788 DRIVER
1736M: Clemens Ladisch <clemens@ladisch.de>
1737L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1738T: git git://git.alsa-project.org/alsa-kernel.git
1739S: Maintained
1740F: sound/pci/oxygen/
1741
Mark Salter21413552011-10-04 11:21:42 -04001742C6X ARCHITECTURE
1743M: Mark Salter <msalter@redhat.com>
1744M: Aurelien Jacquiot <a-jacquiot@ti.com>
1745L: linux-c6x-dev@linux-c6x.org
1746W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1747S: Maintained
1748F: arch/c6x/
1749
David Howellsa5432f52009-04-20 15:46:45 +01001750CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001751M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001752L: linux-cachefs@redhat.com
1753S: Supported
1754F: Documentation/filesystems/caching/cachefiles.txt
1755F: fs/cachefiles/
1756
Jonathan Corbet77d51402007-03-22 19:44:17 -03001757CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001758M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001759L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001760T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001762F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001763F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001764
Joe Perches201b6ba2010-09-07 20:33:24 +00001765CAIF NETWORK LAYER
1766M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1767L: netdev@vger.kernel.org
1768S: Supported
1769F: Documentation/networking/caif/
1770F: drivers/net/caif/
1771F: include/linux/caif/
1772F: include/net/caif/
1773F: net/caif/
1774
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001775CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001776M: Muli Ben-Yehuda <muli@il.ibm.com>
1777M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001778L: discuss@x86-64.org
1779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001780F: arch/x86/kernel/pci-calgary_64.c
1781F: arch/x86/kernel/tce_64.c
1782F: arch/x86/include/asm/calgary.h
1783F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001784
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001785CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001786M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001787L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001788W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001789T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001790S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001791F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001792F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001793F: include/linux/can/core.h
1794F: include/linux/can/bcm.h
1795F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001796F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001797
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001798CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001799M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001800M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001801L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001802W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001803T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001804S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001805F: drivers/net/can/
1806F: include/linux/can/dev.h
1807F: include/linux/can/error.h
1808F: include/linux/can/netlink.h
1809F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001810
James Morris95d16c72012-03-16 12:05:48 +11001811CAPABILITIES
1812M: Serge Hallyn <serge.hallyn@canonical.com>
1813L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001814S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001815F: include/linux/capability.h
1816F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001817F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001818F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001819
Arnd Bergmannb8154542008-05-16 11:10:59 +02001820CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001822L: linuxppc-dev@lists.ozlabs.org
1823L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001824W: http://www.ibm.com/developerworks/power/cell/
1825S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001826F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001827F: arch/powerpc/include/asm/spu*.h
1828F: arch/powerpc/oprofile/*cell*
1829F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001830
Sage Weil9030aaf2009-10-06 11:31:15 -07001831CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001832M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001833L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001834W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001835T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001836S: Supported
1837F: Documentation/filesystems/ceph.txt
1838F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001839F: net/ceph
1840F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001841F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001842
David Vrabel18332a82008-09-17 16:34:44 +01001843CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001844L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001845S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001846F: Documentation/usb/WUSB-Design-overview.txt
1847F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001848F: drivers/usb/host/hwa-hc.c
1849F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001850F: drivers/usb/wusbcore/
1851F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001852
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001853CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001854M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001855W: http://miguelojeda.es/auxdisplay.htm
1856W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001858F: drivers/auxdisplay/cfag12864b.c
1859F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001860
1861CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001862M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001863W: http://miguelojeda.es/auxdisplay.htm
1864W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001866F: drivers/auxdisplay/cfag12864bfb.c
1867F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001868
Johannes Berg704232c2007-04-23 12:20:05 -07001869CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001871L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001872W: http://wireless.kernel.org/
1873T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001876F: include/linux/nl80211.h
1877F: include/net/cfg80211.h
1878F: net/wireless/*
1879X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001880
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001881CHAR and MISC DRIVERS
1882M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001883M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001884T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001885S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001886F: drivers/char/*
1887F: drivers/misc/*
1888
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001889CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001890M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001892F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001893
Harry Weif8407f262011-02-25 14:44:15 -08001894CHINESE DOCUMENTATION
1895M: Harry Wei <harryxiyou@gmail.com>
1896L: xiyoulinuxkernelgroup@googlegroups.com
1897L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1898S: Maintained
1899F: Documentation/zh_CN/
1900
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001901CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1902M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1903L: linux-usb@vger.kernel.org
1904S: Maintained
1905F: drivers/usb/chipidea/
1906
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001907CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001908M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001909M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001910M: Neel Patel <neepatel@cisco.com>
1911M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001912S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001913F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001914
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001915CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001916M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001917L: netdev@vger.kernel.org
1918S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001919F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001920
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001921CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001923L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001925F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001926
Timur Tabid9e9d822008-04-24 08:45:26 +10001927CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001928M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001929L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001930S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001931F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001932
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001933CLEANCACHE API
1934M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1935L: linux-kernel@vger.kernel.org
1936S: Maintained
1937F: mm/cleancache.c
1938F: include/linux/cleancache.h
1939
Russell Kingd4275352009-04-16 14:05:27 +01001940CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001941M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001942S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001943F: include/linux/clk.h
1944
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001945CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001946M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001947M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1948M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001949L: linux-scsi@vger.kernel.org
1950S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001951F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001952
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001953CMPC ACPI DRIVER
1954M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1955M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001956L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001957S: Supported
1958F: drivers/platform/x86/classmate-laptop.c
1959
Nicolas Palix74425ee2010-06-06 17:15:01 +02001960COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001961M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001962M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001963M: Nicolas Palix <nicolas.palix@imag.fr>
1964L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001965W: http://coccinelle.lip6.fr/
1966S: Supported
1967F: scripts/coccinelle/
1968F: scripts/coccicheck
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972M: coda@cs.cmu.edu
1973L: codalist@coda.cs.cmu.edu
1974W: http://www.coda.cs.cmu.edu/
1975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001976F: Documentation/filesystems/coda.txt
1977F: fs/coda/
1978F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Mike Turquette7704add2012-05-02 18:37:45 -07001980COMMON CLK FRAMEWORK
1981M: Mike Turquette <mturquette@ti.com>
1982M: Mike Turquette <mturquette@linaro.org>
1983L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1984T: git git://git.linaro.org/people/mturquette/linux.git
1985S: Maintained
1986F: drivers/clk/clk.c
1987F: drivers/clk/clk-*
1988F: include/linux/clk-pr*
1989
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001990COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001991M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001992L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001993L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001994W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001995Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001996T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001998F: Documentation/filesystems/cifs.txt
1999F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002002M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002003L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002005F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002008M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002009L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002011F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002014M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002015L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002017F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002019COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002020M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002021L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002024
Simon Arlott949be0f2007-03-06 02:47:46 -08002025CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002027L: accessrunner-general@lists.sourceforge.net
2028W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002031
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002032CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002033M: Joel Becker <jlbec@evilplan.org>
2034T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002036F: fs/configfs/
2037F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002038
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002039CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002041L: netdev@vger.kernel.org
2042S: Maintained
2043F: drivers/connector/
2044
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002045CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002046M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002047M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002048L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002049L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002050T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002052F: include/linux/cgroup*
2053F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002054F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002055
Rudolf Marekbebe4672007-05-08 17:22:02 +02002056CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002057M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002058L: lm-sensors@lm-sensors.org
2059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: Documentation/hwmon/coretemp
2061F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002064M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065W: http://www.fi.muni.cz/~kas/cosa/
2066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Florian Fainelli4371ee32009-06-01 02:43:17 -07002069CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002071L: netdev@vger.kernel.org
2072S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002073F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002076M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002077L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002078L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: drivers/cpufreq/
2081F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002084M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: arch/x86/kernel/cpuid.c
2087F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002089CPU POWER MONITORING SUBSYSTEM
2090M: Dominik Brodowski <linux@dominikbrodowski.net>
2091M: Thomas Renninger <trenn@suse.de>
2092S: Maintained
2093F: tools/power/cpupower
2094
Paul Jacksoned90fb42005-09-27 21:45:37 -07002095CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002096M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002097W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002098W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002099S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002100F: Documentation/cgroups/cpusets.txt
2101F: include/linux/cpuset.h
2102F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002105W: http://sourceforge.net/projects/cramfs/
2106S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002107F: Documentation/filesystems/cramfs.txt
2108F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Mikael Starvik <starvik@axis.com>
2112M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002113L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114W: http://developer.axis.com
2115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002116F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002117F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002120M: Herbert Xu <herbert@gondor.apana.org.au>
2121M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002123T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002125F: Documentation/crypto/
2126F: arch/*/crypto/
2127F: crypto/
2128F: drivers/crypto/
2129F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Neil Horman5b07bd52009-02-05 16:03:04 +11002131CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002133L: linux-crypto@vger.kernel.org
2134S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002135F: crypto/ansi_cprng.c
2136F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002137
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002138CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002141F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002142
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002143CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002144M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002145L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002146L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002147T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002148W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002149W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002151F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002152F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002153
Antti Palosaari91952bc2012-10-01 12:28:46 -03002154CXD2820R MEDIA DRIVER
2155M: Antti Palosaari <crope@iki.fi>
2156L: linux-media@vger.kernel.org
2157W: http://linuxtv.org/
2158W: http://palosaari.fi/linux/
2159Q: http://patchwork.linuxtv.org/project/linux-media/list/
2160T: git git://linuxtv.org/anttip/media_tree.git
2161S: Maintained
2162F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002163
Steve Wisee5ec3782008-05-20 14:06:33 -07002164CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002165M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002166L: netdev@vger.kernel.org
2167W: http://www.chelsio.com
2168S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002169F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002170
2171CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002172M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002173L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002174W: http://www.openfabrics.org
2175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002176F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002177
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002178CXGB4 ETHERNET DRIVER (CXGB4)
2179M: Dimitris Michailidis <dm@chelsio.com>
2180L: netdev@vger.kernel.org
2181W: http://www.chelsio.com
2182S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002183F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002184
2185CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2186M: Steve Wise <swise@chelsio.com>
2187L: linux-rdma@vger.kernel.org
2188W: http://www.openfabrics.org
2189S: Supported
2190F: drivers/infiniband/hw/cxgb4/
2191
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002192CXGB4VF ETHERNET DRIVER (CXGB4VF)
2193M: Casey Leedom <leedom@chelsio.com>
2194L: netdev@vger.kernel.org
2195W: http://www.chelsio.com
2196S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002197F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002198
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002199STMMAC ETHERNET DRIVER
2200M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2201L: netdev@vger.kernel.org
2202W: http://www.stlinux.com
2203S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002204F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002207M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002208L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209W: http://www.arm.linux.org.uk/
2210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002214M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002215W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002221S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002222F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002223F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002227S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002228F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002230CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002231M: Javier Martinez Canillas <javier@dowhile0.org>
2232L: linux-input@vger.kernel.org
2233S: Maintained
2234F: drivers/input/touchscreen/cyttsp*
2235F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002238M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239W: http://yaina.de/jreuter/
2240W: http://www.qsl.net/dl1bke/
2241L: linux-hams@vger.kernel.org
2242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002243F: net/ax25/af_ax25.c
2244F: net/ax25/ax25_dev.c
2245F: net/ax25/ax25_ds_*
2246F: net/ax25/ax25_in.c
2247F: net/ax25/ax25_out.c
2248F: net/ax25/ax25_timer.c
2249F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002251DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002252L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002253S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002254F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002255F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002256
2257DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002260M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002262F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002265M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Ali Akcaagac <aliakc@web.de>
2267M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002269L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270L: http://lists.twibble.org/mailman/listinfo/dc395x/
2271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002272F: Documentation/scsi/dc395x.txt
2273F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002275DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002276M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002277L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002278W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002280F: include/linux/dccp.h
2281F: include/linux/tfrc.h
2282F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285W: http://linux-decnet.sourceforge.net
2286L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002287S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002288F: Documentation/networking/decnet.txt
2289F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002292M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002294F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002296DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002297M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002298L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002303M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304W: http://www.debian.org/~dz/i8k/
2305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002306F: drivers/char/i8k.c
2307F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Doug Warzecha90563ec2005-09-06 15:17:15 -07002309DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002312F: Documentation/dcdbas.txt
2313F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002314
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002315DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002316M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002317S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002318F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002319
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002320DESIGNWARE USB3 DRD IP DRIVER
2321M: Felipe Balbi <balbi@ti.com>
2322L: linux-usb@vger.kernel.org
2323L: linux-omap@vger.kernel.org
2324T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2325S: Maintained
2326F: drivers/usb/dwc3/
2327
Kyungmin Park89d07762012-01-10 15:09:09 -08002328DEVICE FREQUENCY (DEVFREQ)
2329M: MyungJoo Ham <myungjoo.ham@samsung.com>
2330M: Kyungmin Park <kyungmin.park@samsung.com>
2331L: linux-kernel@vger.kernel.org
2332S: Maintained
2333F: drivers/devfreq/
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338S: Maintained
2339
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002340DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002341M: Alasdair Kergon <agk@redhat.com>
2342M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002343L: dm-devel@redhat.com
2344W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002345Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002346T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002348F: Documentation/device-mapper/
2349F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002350F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002351F: include/linux/device-mapper.h
2352F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002353
Guenter Roeck335d7c52011-01-26 11:45:49 -08002354DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002355M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002356L: linux-i2c@vger.kernel.org
2357S: Maintained
2358F: drivers/i2c/busses/i2c-diolan-u2c.c
2359
Randy Dunlape7839f22008-10-12 16:11:45 -07002360DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002361M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002363F: Documentation/filesystems/dnotify.txt
2364F: fs/notify/dnotify/
2365F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002368M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2370W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2371W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2372S: Maintained
2373
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002374DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002375M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002377F: Documentation/filesystems/quota.txt
2378F: fs/quota/
2379F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Bernie Thompson702686a2012-03-01 13:52:13 -08002381DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2382M: Bernie Thompson <bernie@plugable.com>
2383L: linux-fbdev@vger.kernel.org
2384S: Maintained
2385W: http://plugable.com/category/projects/udlfb/
2386F: drivers/video/udlfb.c
2387F: include/video/udlfb.h
2388F: Documentation/fb/udlfb.txt
2389
Randy Dunlape7839f22008-10-12 16:11:45 -07002390DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002391M: Christine Caulfield <ccaulfie@redhat.com>
2392M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002393L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002394W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002395T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002396S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002397F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002398
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302399DMA BUFFER SHARING FRAMEWORK
2400M: Sumit Semwal <sumit.semwal@linaro.org>
2401S: Maintained
2402L: linux-media@vger.kernel.org
2403L: dri-devel@lists.freedesktop.org
2404L: linaro-mm-sig@lists.linaro.org
2405F: drivers/base/dma-buf*
2406F: include/linux/dma-buf*
2407F: Documentation/dma-buf-sharing.txt
2408T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2409
Dan Williamsb3e5f262007-08-07 10:26:35 -07002410DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002411M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002412M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002414F: drivers/dma/
2415F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302416T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2417T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002418
Juerg Haefligerb8250372007-06-09 10:11:16 -04002419DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002420M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002421L: lm-sensors@lm-sensors.org
2422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002423F: Documentation/hwmon/dme1737
2424F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002425
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002426DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002427M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002428L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002430F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002431
Joe Perches7d2c86b2009-04-07 20:59:01 -07002432DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002433M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002434L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002435T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002440M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441L: blinux-list@redhat.com
2442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002443F: drivers/char/dtlk.c
2444F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002446DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002447M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002448L: linux-scsi@vger.kernel.org
2449W: http://www.adaptec.com/
2450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/scsi/dpt*
2452F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002453
Philipp Reisnerb411b362009-09-25 16:07:19 -07002454DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002455P: Philipp Reisner
2456P: Lars Ellenberg
2457M: drbd-dev@lists.linbit.com
2458L: drbd-user@lists.linbit.com
2459W: http://www.drbd.org
2460T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2461T: git git://git.drbd.org/drbd-8.3.git
2462S: Supported
2463F: drivers/block/drbd/
2464F: lib/lru_cache.c
2465F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002466
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002467DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002468M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002469T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002471F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002472F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002473F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002474F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002475F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002476F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002477F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002481L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002482T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002484F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002485F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Chris Wilson8daf7472010-09-28 14:07:26 +01002487INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002488M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002489L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002490L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002491T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002492S: Supported
2493F: drivers/gpu/drm/i915
2494F: include/drm/i915*
2495
Kyungmin Park398a6d42011-11-02 11:33:16 +09002496DRM DRIVERS FOR EXYNOS
2497M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002498M: Joonyoung Shim <jy0922.shim@samsung.com>
2499M: Seung-Woo Kim <sw0312.kim@samsung.com>
2500M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002501L: dri-devel@lists.freedesktop.org
2502S: Supported
2503F: drivers/gpu/drm/exynos
2504F: include/drm/exynos*
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002507M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002508L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002510F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Antti Palosaari91952bc2012-10-01 12:28:46 -03002512DVB_USB_AF9015 MEDIA DRIVER
2513M: Antti Palosaari <crope@iki.fi>
2514L: linux-media@vger.kernel.org
2515W: http://linuxtv.org/
2516W: http://palosaari.fi/linux/
2517Q: http://patchwork.linuxtv.org/project/linux-media/list/
2518T: git git://linuxtv.org/anttip/media_tree.git
2519S: Maintained
2520F: drivers/media/usb/dvb-usb-v2/af9015*
2521
2522DVB_USB_AF9035 MEDIA DRIVER
2523M: Antti Palosaari <crope@iki.fi>
2524L: linux-media@vger.kernel.org
2525W: http://linuxtv.org/
2526W: http://palosaari.fi/linux/
2527Q: http://patchwork.linuxtv.org/project/linux-media/list/
2528T: git git://linuxtv.org/anttip/media_tree.git
2529S: Maintained
2530F: drivers/media/usb/dvb-usb-v2/af9035*
2531
2532DVB_USB_ANYSEE MEDIA DRIVER
2533M: Antti Palosaari <crope@iki.fi>
2534L: linux-media@vger.kernel.org
2535W: http://linuxtv.org/
2536W: http://palosaari.fi/linux/
2537Q: http://patchwork.linuxtv.org/project/linux-media/list/
2538T: git git://linuxtv.org/anttip/media_tree.git
2539S: Maintained
2540F: drivers/media/usb/dvb-usb-v2/anysee*
2541
2542DVB_USB_AU6610 MEDIA DRIVER
2543M: Antti Palosaari <crope@iki.fi>
2544L: linux-media@vger.kernel.org
2545W: http://linuxtv.org/
2546W: http://palosaari.fi/linux/
2547Q: http://patchwork.linuxtv.org/project/linux-media/list/
2548T: git git://linuxtv.org/anttip/media_tree.git
2549S: Maintained
2550F: drivers/media/usb/dvb-usb-v2/au6610*
2551
2552DVB_USB_CE6230 MEDIA DRIVER
2553M: Antti Palosaari <crope@iki.fi>
2554L: linux-media@vger.kernel.org
2555W: http://linuxtv.org/
2556W: http://palosaari.fi/linux/
2557Q: http://patchwork.linuxtv.org/project/linux-media/list/
2558T: git git://linuxtv.org/anttip/media_tree.git
2559S: Maintained
2560F: drivers/media/usb/dvb-usb-v2/ce6230*
2561
Michael Krufkyd099dea2012-10-02 00:56:20 -03002562DVB_USB_CXUSB MEDIA DRIVER
2563M: Michael Krufky <mkrufky@linuxtv.org>
2564L: linux-media@vger.kernel.org
2565W: http://linuxtv.org/
2566W: http://github.com/mkrufky
2567Q: http://patchwork.linuxtv.org/project/linux-media/list/
2568T: git git://linuxtv.org/media_tree.git
2569S: Maintained
2570F: drivers/media/usb/dvb-usb-v2/cxusb*
2571
Antti Palosaari91952bc2012-10-01 12:28:46 -03002572DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2573M: Antti Palosaari <crope@iki.fi>
2574L: linux-media@vger.kernel.org
2575W: http://linuxtv.org/
2576W: http://palosaari.fi/linux/
2577Q: http://patchwork.linuxtv.org/project/linux-media/list/
2578T: git git://linuxtv.org/anttip/media_tree.git
2579S: Maintained
2580F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2581
2582DVB_USB_EC168 MEDIA DRIVER
2583M: Antti Palosaari <crope@iki.fi>
2584L: linux-media@vger.kernel.org
2585W: http://linuxtv.org/
2586W: http://palosaari.fi/linux/
2587Q: http://patchwork.linuxtv.org/project/linux-media/list/
2588T: git git://linuxtv.org/anttip/media_tree.git
2589S: Maintained
2590F: drivers/media/usb/dvb-usb-v2/ec168*
2591
Michael Krufky8856f5f2012-10-02 00:55:50 -03002592DVB_USB_MXL111SF MEDIA DRIVER
2593M: Michael Krufky <mkrufky@linuxtv.org>
2594L: linux-media@vger.kernel.org
2595W: http://linuxtv.org/
2596W: http://github.com/mkrufky
2597Q: http://patchwork.linuxtv.org/project/linux-media/list/
2598T: git git://linuxtv.org/mkrufky/mxl111sf.git
2599S: Maintained
2600F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2601
Antti Palosaari91952bc2012-10-01 12:28:46 -03002602DVB_USB_RTL28XXU MEDIA DRIVER
2603M: Antti Palosaari <crope@iki.fi>
2604L: linux-media@vger.kernel.org
2605W: http://linuxtv.org/
2606W: http://palosaari.fi/linux/
2607Q: http://patchwork.linuxtv.org/project/linux-media/list/
2608T: git git://linuxtv.org/anttip/media_tree.git
2609S: Maintained
2610F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2611
2612DVB_USB_V2 MEDIA DRIVER
2613M: Antti Palosaari <crope@iki.fi>
2614L: linux-media@vger.kernel.org
2615W: http://linuxtv.org/
2616W: http://palosaari.fi/linux/
2617Q: http://patchwork.linuxtv.org/project/linux-media/list/
2618T: git git://linuxtv.org/anttip/media_tree.git
2619S: Maintained
2620F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2621F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2622
Jason Baronac0ac382011-08-11 14:36:43 -04002623DYNAMIC DEBUG
2624M: Jason Baron <jbaron@redhat.com>
2625S: Maintained
2626F: lib/dynamic_debug.c
2627F: include/linux/dynamic_debug.h
2628
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002629DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002630M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002631S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002632F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002633
Antti Palosaari91952bc2012-10-01 12:28:46 -03002634E4000 MEDIA DRIVER
2635M: Antti Palosaari <crope@iki.fi>
2636L: linux-media@vger.kernel.org
2637W: http://linuxtv.org/
2638W: http://palosaari.fi/linux/
2639Q: http://patchwork.linuxtv.org/project/linux-media/list/
2640T: git git://linuxtv.org/anttip/media_tree.git
2641S: Maintained
2642F: drivers/media/tuners/e4000*
2643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002645M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002646L: linux-eata@i-connect.net
2647L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002649F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002652M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653L: linux-scsi@vger.kernel.org
2654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002655F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002659L: linux-eata@i-connect.net
2660L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002662F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
2664EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002665M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002666L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667W: http://ebtables.sourceforge.net/
2668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002669F: include/linux/netfilter_bridge/ebt_*.h
2670F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Antti Palosaari91952bc2012-10-01 12:28:46 -03002672EC100 MEDIA DRIVER
2673M: Antti Palosaari <crope@iki.fi>
2674L: linux-media@vger.kernel.org
2675W: http://linuxtv.org/
2676W: http://palosaari.fi/linux/
2677Q: http://patchwork.linuxtv.org/project/linux-media/list/
2678T: git git://linuxtv.org/anttip/media_tree.git
2679S: Maintained
2680F: drivers/media/dvb-frontends/ec100*
2681
Michael Halcrow237fead2006-10-04 02:16:22 -07002682ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002683M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002684M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002685L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002686W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002688F: Documentation/filesystems/ecryptfs.txt
2689F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002690
Alan Coxda9bb1d2006-01-18 17:44:13 -08002691EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002692M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002693L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002694W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002695S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002696F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002697F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002698F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002699
Borislav Petkovc476c232009-05-20 20:31:58 +02002700EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002701M: Doug Thompson <dougthompson@xmission.com>
2702M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002703L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002704W: bluesmoke.sourceforge.net
2705S: Supported
2706F: drivers/edac/amd64_edac*
2707
Dave Peterson0e438e32006-03-26 01:38:55 -08002708EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002709M: Mark Gross <mark.gross@intel.com>
2710M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002711L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002712W: bluesmoke.sourceforge.net
2713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002714F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002715
2716EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002718L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002719W: bluesmoke.sourceforge.net
2720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002722
Douglas Thompson6bc78402007-07-19 01:50:12 -07002723EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002724M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002725L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002726W: bluesmoke.sourceforge.net
2727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002728F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002729
2730EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002731M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002732L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002733W: bluesmoke.sourceforge.net
2734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002735F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002736
2737EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002738M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002739L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002740W: bluesmoke.sourceforge.net
2741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002743
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002744EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002746L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002747W: bluesmoke.sourceforge.net
2748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002749F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002750
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002751EDAC-I7300
2752M: Mauro Carvalho Chehab <mchehab@redhat.com>
2753L: linux-edac@vger.kernel.org
2754W: bluesmoke.sourceforge.net
2755S: Maintained
2756F: drivers/edac/i7300_edac.c
2757
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002758EDAC-I7CORE
2759M: Mauro Carvalho Chehab <mchehab@redhat.com>
2760L: linux-edac@vger.kernel.org
2761W: bluesmoke.sourceforge.net
2762S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002763F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002764
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002765EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002766M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302767M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002768L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002769W: bluesmoke.sourceforge.net
2770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002771F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002772
2773EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002774M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002775L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002776W: bluesmoke.sourceforge.net
2777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002778F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002779
Dave Peterson0e438e32006-03-26 01:38:55 -08002780EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002781M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002782L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002783W: bluesmoke.sourceforge.net
2784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002785F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002786
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002787EDAC-SBRIDGE
2788M: Mauro Carvalho Chehab <mchehab@redhat.com>
2789L: linux-edac@vger.kernel.org
2790W: bluesmoke.sourceforge.net
2791S: Maintained
2792F: drivers/edac/sb_edac.c
2793
Clemens Ladischaf399172011-01-10 16:32:54 +01002794EDIROL UA-101/UA-1000 DRIVER
2795M: Clemens Ladisch <clemens@ladisch.de>
2796L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2797T: git git://git.alsa-project.org/alsa-kernel.git
2798S: Maintained
2799F: sound/usb/misc/ua101.c
2800
Matt Fleming1f7df952012-10-03 10:04:02 +01002801EXTENSIBLE FIRMWARE INTERFACE (EFI)
2802M: Matt Fleming <matt.fleming@intel.com>
2803L: linux-efi@vger.kernel.org
2804S: Maintained
2805F: Documentation/x86/efi-stub.txt
2806F: arch/ia64/kernel/efi.c
2807F: arch/x86/boot/compressed/eboot.[ch]
2808F: arch/x86/include/asm/efi.h
2809F: arch/x86/platform/efi/*
2810F: drivers/firmware/efivars.c
2811F: include/linux/efi*.h
2812
Peter Jones85a00d92010-09-22 13:05:04 -07002813EFIFB FRAMEBUFFER DRIVER
2814L: linux-fbdev@vger.kernel.org
2815M: Peter Jones <pjones@redhat.com>
2816S: Maintained
2817F: drivers/video/efifb.c
2818
Josh Triplett0bee8d22006-07-30 03:03:58 -07002819EFS FILESYSTEM
2820W: http://aeschi.ch.eu.org/efs/
2821S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002822F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002823
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002824EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002825M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2826M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002827L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002829F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002830
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002831EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002832M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002833L: netdev@vger.kernel.org
2834S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002835F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002836
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002837EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002838M: Paul Gortmaker <paul.gortmaker@windriver.com>
2839M: Matt Mackall <mpm@selenic.com>
2840M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002841L: linux-embedded@vger.kernel.org
2842S: Maintained
2843
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002844EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002845M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002846L: linux-scsi@vger.kernel.org
2847W: http://sourceforge.net/projects/lpfcxxxx
2848S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002849F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002850
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002851ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002853S: Maintained
2854F: drivers/misc/cb710/
2855F: drivers/mmc/host/cb710-mmc.*
2856F: include/linux/cb710.h
2857
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002858ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2859M: Maxim Levitsky <maximlevitsky@gmail.com>
2860S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002861F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Christopher Hoover <ch@murgatroid.com>
2865M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002867F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002869EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002870M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002871S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002872T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002873F: drivers/video/s1d13xxxfb.c
2874F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002877M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002878L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002880F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
2882ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002883M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002884L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002885L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002886W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002888F: include/linux/netfilter_bridge/
2889F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002892M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002894F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
2896EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002897M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002898L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002900F: Documentation/filesystems/ext2.txt
2901F: fs/ext2/
2902F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002905M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002906M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002907M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002908L: linux-ext4@vger.kernel.org
2909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002910F: Documentation/filesystems/ext3.txt
2911F: fs/ext3/
2912F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002913
2914EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002915M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002916M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002917L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002918W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002919Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002921F: Documentation/filesystems/ext4.txt
2922F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Mimi Zoharc5532b02011-08-17 18:52:24 -04002924Extended Verification Module (EVM)
2925M: Mimi Zohar <zohar@us.ibm.com>
2926S: Supported
2927F: security/integrity/evm/
2928
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002929EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2930M: MyungJoo Ham <myungjoo.ham@samsung.com>
2931M: Chanwoo Choi <cw00.choi@samsung.com>
2932L: linux-kernel@vger.kernel.org
2933S: Maintained
2934F: drivers/extcon/
2935F: Documentation/extcon/
2936
Jingoo Han0a799512012-02-06 11:30:39 +09002937EXYNOS DP DRIVER
2938M: Jingoo Han <jg1.han@samsung.com>
2939L: linux-fbdev@vger.kernel.org
2940S: Maintained
2941F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002942F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002943
Donghwa Lee33ad3912012-03-06 11:44:58 +09002944EXYNOS MIPI DISPLAY DRIVERS
2945M: Inki Dae <inki.dae@samsung.com>
2946M: Donghwa Lee <dh09.lee@samsung.com>
2947M: Kyungmin Park <kyungmin.park@samsung.com>
2948L: linux-fbdev@vger.kernel.org
2949S: Maintained
2950F: drivers/video/exynos/exynos_mipi*
2951F: include/video/exynos_mipi*
2952
Jean Delvaree53004e2006-01-09 23:26:14 +01002953F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002954M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002955L: lm-sensors@lm-sensors.org
2956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002957F: Documentation/hwmon/f71805f
2958F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002959
Michael Büscheea977e2012-04-02 12:14:32 -03002960FC0011 TUNER DRIVER
2961M: Michael Buesch <m@bues.ch>
2962L: linux-media@vger.kernel.org
2963S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002964F: drivers/media/tuners/fc0011.h
2965F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002966
Antti Palosaari91952bc2012-10-01 12:28:46 -03002967FC2580 MEDIA DRIVER
2968M: Antti Palosaari <crope@iki.fi>
2969L: linux-media@vger.kernel.org
2970W: http://linuxtv.org/
2971W: http://palosaari.fi/linux/
2972Q: http://patchwork.linuxtv.org/project/linux-media/list/
2973T: git git://linuxtv.org/anttip/media_tree.git
2974S: Maintained
2975F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Eric Paris88b2dbd2010-08-18 12:25:50 -04002977FANOTIFY
2978M: Eric Paris <eparis@redhat.com>
2979S: Maintained
2980F: fs/notify/fanotify/
2981F: include/linux/fanotify.h
2982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002984M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985W: http://www.farsite.co.uk/
2986S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002987F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Akinobu Mitac5408b82007-04-23 14:41:20 -07002989FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002990M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002991S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002992F: Documentation/fault-injection/
2993F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002994
Robert Lovecae727d2010-02-16 12:16:00 -08002995FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2996M: Robert Love <robert.w.love@intel.com>
2997L: devel@open-fcoe.org
2998W: www.Open-FCoE.org
2999S: Supported
3000F: drivers/scsi/libfc/
3001F: drivers/scsi/fcoe/
3002F: include/scsi/fc/
3003F: include/scsi/libfc.h
3004F: include/scsi/libfcoe.h
3005
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003006FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003007M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003008L: linux-fsdevel@vger.kernel.org
3009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003010F: include/linux/fcntl.h
3011F: include/linux/fs.h
3012F: fs/fcntl.c
3013F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003014
3015FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003016M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003017L: linux-fsdevel@vger.kernel.org
3018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003019F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003020
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003021FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003022M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003023L: lm-sensors@lm-sensors.org
3024S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003025F: drivers/hwmon/f75375s.c
3026F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003027
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003028FIREWIRE AUDIO DRIVERS
3029M: Clemens Ladisch <clemens@ladisch.de>
3030L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3031T: git git://git.alsa-project.org/alsa-kernel.git
3032S: Maintained
3033F: sound/firewire/
3034
Chris Boota511ce32012-04-14 17:50:35 -07003035FIREWIRE SBP-2 TARGET
3036M: Chris Boot <bootc@bootc.net>
3037L: linux-scsi@vger.kernel.org
3038L: target-devel@vger.kernel.org
3039L: linux1394-devel@lists.sourceforge.net
3040T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3041S: Maintained
3042F: drivers/target/sbp/
3043
Joe Perches7d2c86b2009-04-07 20:59:01 -07003044FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003045M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003046L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003047W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003048T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003050F: drivers/firewire/
3051F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003052F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003053
3054FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003055M: Ming Lei <ming.lei@canonical.com>
3056L: linux-kernel@vger.kernel.org
3057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003058F: Documentation/firmware_class/
3059F: drivers/base/firmware*.c
3060F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003061
Jiri Kosina8206f662012-05-18 13:52:29 +02003062FLOPPY DRIVER
3063M: Jiri Kosina <jkosina@suse.cz>
3064T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3065S: Odd fixes
3066F: drivers/block/floppy.c
3067
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003068FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003069M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003070W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003072F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003073
3074FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003075L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003076S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003077F: drivers/net/wan/dlci.c
3078F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003079
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003081M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003082L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003084Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003085T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003087F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003088F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003089F: drivers/video/
3090F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003091F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Zhang Wei173acc72008-03-01 07:42:48 -07003093FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003094M: Li Yang <leoli@freescale.com>
3095M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003096L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003098F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003099
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003100FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003101M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003102L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003103L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003105F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003106
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003107FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003109L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003110L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003112F: arch/arm/plat-mxc/include/mach/imxfb.h
3113F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003114
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003115FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003116M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3117M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003118L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003119L: netdev@vger.kernel.org
3120S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003121F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003122F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003123
Timur Tabid9e9d822008-04-24 08:45:26 +10003124FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003125M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003126L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003128F: arch/powerpc/sysdev/qe_lib/
3129F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003130
Joe Perchesb55ef9292009-10-26 16:49:46 -07003131FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003132M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003133L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003134L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003135S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003136F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003137
Li Yangbeaf53b2007-05-25 13:54:02 +08003138FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003139M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003140L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003141L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003142S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003143F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003144
Timur Tabid9e9d822008-04-24 08:45:26 +10003145FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003146M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003147L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003148S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003149F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003150
3151FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003152M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003153L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003154L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003155S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003156F: sound/soc/fsl/fsl*
3157F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003160M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003163F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Pavel Machek71038f52009-01-15 13:51:02 -08003165FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003166M: Pavel Machek <pavel@ucw.cz>
3167M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003168L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003169S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003170F: Documentation/power/freezing-of-tasks.txt
3171F: include/linux/freezer.h
3172F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003173
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003174FRONTSWAP API
3175M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3176L: linux-kernel@vger.kernel.org
3177S: Maintained
3178F: mm/frontswap.c
3179F: include/linux/frontswap.h
3180
David Howellsa5432f52009-04-20 15:46:45 +01003181FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003182M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003183L: linux-cachefs@redhat.com
3184S: Supported
3185F: Documentation/filesystems/caching/
3186F: fs/fscache/
3187F: include/linux/fscache*.h
3188
David Howells5ab7ffe2007-04-10 15:10:45 +01003189FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003190M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003192F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Jonathan Woithe20b93732008-06-11 10:14:56 +09303194FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303195M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003196L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003198F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303199
Heungjun Kim4da621b2011-11-11 08:05:33 -03003200FUJITSU M-5MO LS CAMERA ISP DRIVER
3201M: Kyungmin Park <kyungmin.park@samsung.com>
3202M: Heungjun Kim <riverful.kim@samsung.com>
3203L: linux-media@vger.kernel.org
3204S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003205F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003206F: include/media/m5mols.h
3207
Robert Gerlach2d24c492012-01-18 14:26:22 +01003208FUJITSU TABLET EXTRAS
3209M: Robert Gerlach <khnz@gmx.de>
3210L: platform-driver-x86@vger.kernel.org
3211S: Maintained
3212F: drivers/platform/x86/fujitsu-tablet.c
3213
Miklos Szeredi04578f12005-09-09 13:10:22 -07003214FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003215M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003216L: fuse-devel@lists.sourceforge.net
3217W: http://fuse.sourceforge.net/
3218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003219F: fs/fuse/
3220F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003221
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003223M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003225S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003226F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
3228GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003229M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230L: linux-scsi@vger.kernel.org
3231W: http://www.icp-vortex.com/
3232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003233F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003235GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003236M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003238F: drivers/i2c/busses/i2c-gpio.c
3239F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003240
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003241GENERIC GPIO I2C MULTIPLEXER DRIVER
3242M: Peter Korsgaard <peter.korsgaard@barco.com>
3243L: linux-i2c@vger.kernel.org
3244S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003245F: drivers/i2c/muxes/i2c-mux-gpio.c
3246F: include/linux/i2c-mux-gpio.h
3247F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003248
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003249GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003250M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003253F: drivers/net/wan/c101.c
3254F: drivers/net/wan/hd6457*
3255F: drivers/net/wan/hdlc*
3256F: drivers/net/wan/n2.c
3257F: drivers/net/wan/pc300too.c
3258F: drivers/net/wan/pci200syn.c
3259F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003261GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003262M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003263L: linux-arch@vger.kernel.org
3264T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3265S: Maintained
3266F: include/asm-generic
3267
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003268GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003269M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003270L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003271S: Supported
3272F: drivers/uio/uio_pci_generic.c
3273
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003274GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003276L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003277W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003278T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3279T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003281F: Documentation/filesystems/gfs2*.txt
3282F: fs/gfs2/
3283F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003284
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003285GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003286M: Hansjoerg Lipp <hjlipp@web.de>
3287M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003288L: gigaset307x-common@lists.sourceforge.net
3289W: http://gigaset307x.sourceforge.net/
3290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003291F: Documentation/isdn/README.gigaset
3292F: drivers/isdn/gigaset/
3293F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003294
Grant Likelya0dc00b2011-02-12 01:48:14 -07003295GPIO SUBSYSTEM
3296M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003297M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003298S: Maintained
3299T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003300F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003301F: drivers/gpio/
3302F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003303F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003304
Harry Wei71a6d0a2011-05-11 15:13:33 -07003305GRE DEMULTIPLEXER DRIVER
3306M: Dmitry Kozlov <xeb@mail.ru>
3307L: netdev@vger.kernel.org
3308S: Maintained
3309F: net/ipv4/gre.c
3310F: include/net/gre.h
3311
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003312GRETH 10/100/1G Ethernet MAC device driver
3313M: Kristoffer Glembo <kristoffer@gaisler.com>
3314L: netdev@vger.kernel.org
3315S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003316F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003317
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003318GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003319M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003320L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003321T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003322S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003323F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003324
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003325GSPCA GL860 SUBDRIVER
3326M: Olivier Lorin <o.lorin@laposte.net>
3327L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003328T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003329S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003330F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003331
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003332GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003334L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003335T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003336S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003337F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003338
3339GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003340M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003341L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003342T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003343S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003344F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003345
Brian Johnson261982f2009-07-19 15:58:56 -03003346GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003347M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003348L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003349T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003350S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003351F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003352
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003353GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003354M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003355L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003356T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003357S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003358F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003359
3360GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003361M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003362L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003363T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003364S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003365F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003366
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003367STK1160 USB VIDEO CAPTURE DRIVER
3368M: Ezequiel Garcia <elezegarcia@gmail.com>
3369L: linux-media@vger.kernel.org
3370T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3371S: Maintained
3372F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003373
Harry Wei71a6d0a2011-05-11 15:13:33 -07003374HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3375M: Frank Seidel <frank@f-seidel.de>
3376L: platform-driver-x86@vger.kernel.org
3377W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3378S: Maintained
3379F: drivers/platform/x86/hdaps.c
3380
3381HWPOISON MEMORY FAILURE HANDLING
3382M: Andi Kleen <andi@firstfloor.org>
3383L: linux-mm@kvack.org
3384T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3385S: Maintained
3386F: mm/memory-failure.c
3387F: mm/hwpoison-inject.c
3388
3389HYPERVISOR VIRTUAL CONSOLE DRIVER
3390L: linuxppc-dev@lists.ozlabs.org
3391S: Odd Fixes
3392F: drivers/tty/hvc/
3393
Michael Buesch844dd052006-06-26 00:24:59 -07003394HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003395M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003396M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003397L: lm-sensors@lm-sensors.org
3398W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003399T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003400T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003401S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003402F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003403F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003404F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003405
3406HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003407M: Matt Mackall <mpm@selenic.com>
3408M: Herbert Xu <herbert@gondor.apana.org.au>
3409S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003410F: Documentation/hw_random.txt
3411F: drivers/char/hw_random/
3412F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003413
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003414HARDWARE SPINLOCK CORE
3415M: Ohad Ben-Cohen <ohad@wizery.com>
3416S: Maintained
3417F: Documentation/hwspinlock.txt
3418F: drivers/hwspinlock/hwspinlock_*
3419F: include/linux/hwspinlock.h
3420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003422L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003424F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
Antti Palosaari91952bc2012-10-01 12:28:46 -03003426HD29L2 MEDIA DRIVER
3427M: Antti Palosaari <crope@iki.fi>
3428L: linux-media@vger.kernel.org
3429W: http://linuxtv.org/
3430W: http://palosaari.fi/linux/
3431Q: http://patchwork.linuxtv.org/project/linux-media/list/
3432T: git git://linuxtv.org/anttip/media_tree.git
3433S: Maintained
3434F: drivers/media/dvb-frontends/hd29l2*
3435
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003436HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003437M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003438L: iss_storagedev@hp.com
3439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003440F: Documentation/blockdev/cpqarray.txt
3441F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003442
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003443HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003444M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003445L: iss_storagedev@hp.com
3446S: Supported
3447F: Documentation/scsi/hpsa.txt
3448F: drivers/scsi/hpsa*.[ch]
3449F: include/linux/cciss*.h
3450
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003451HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003452M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003453L: iss_storagedev@hp.com
3454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003455F: Documentation/blockdev/cciss.txt
3456F: drivers/block/cciss*
3457F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003458
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003460L: linux-fsdevel@vger.kernel.org
3461S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003462F: Documentation/filesystems/hfs.txt
3463F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003466M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467L: linux-nvidia@lists.surfsouth.com
3468W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003470F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003472HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Pavel Machek <pavel@ucw.cz>
3474M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003475L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003477F: arch/x86/power/
3478F: drivers/base/power/
3479F: kernel/power/
3480F: include/linux/suspend.h
3481F: include/linux/freezer.h
3482F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003483F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003484
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003485HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003486M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003487L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003488T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003490F: drivers/hid/
3491F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003492
Ingo Molnar38bed542007-02-22 09:09:34 +01003493HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003494M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003495T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003497F: Documentation/timers/
3498F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003499F: kernel/time/clockevents.c
3500F: kernel/time/tick*.*
3501F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003502F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003503F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003504
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003507S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003508F: drivers/net/hamradio/dmascc.c
3509F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003511HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003512M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003513W: http://www.highpoint-tech.com
3514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003515F: Documentation/scsi/hptiop.txt
3516F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003519M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520L: linux-hippi@sunsite.dk
3521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003522F: include/linux/hippidevice.h
3523F: include/linux/if_hippi.h
3524F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003525F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Jouni Malinenff1d2762005-05-12 22:54:16 -04003527HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003528M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003529L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003530L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003531W: http://hostap.epitest.fi/
3532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003533F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003534
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003535HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003536L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003537S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003538F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003539
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003540HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003541M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003542S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003543F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003544
Joe Perches7d2c86b2009-04-07 20:59:01 -07003545HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003546M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003548F: Documentation/timers/hpet.txt
3549F: drivers/char/hpet.c
3550F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003551
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003552HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003553M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003555F: arch/x86/kernel/hpet.c
3556F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003559M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003562F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Joe Perches7d2c86b2009-04-07 20:59:01 -07003564HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003565M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003566W: http://www.pharscape.org
3567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003568F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003569
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003570HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003571M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003572L: linux-input@vger.kernel.org
3573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003574F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003575
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003577M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003579F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003581Hyper-V CORE AND DRIVERS
3582M: K. Y. Srinivasan <kys@microsoft.com>
3583M: Haiyang Zhang <haiyangz@microsoft.com>
3584L: devel@linuxdriverproject.org
3585S: Maintained
3586F: drivers/hv/
3587F: drivers/hid/hid-hyperv.c
3588F: drivers/net/hyperv/
3589F: drivers/staging/hv/
3590
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003591I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003592M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003593L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003595F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003596
Jean Delvare5b543962005-08-15 19:51:02 +02003597I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003598M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3599M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003600M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003601L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003602W: http://i2c.wiki.kernel.org/
3603T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003604T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003606F: Documentation/i2c/
3607F: drivers/i2c/
3608F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003609F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Till Harbaume8c76ee2007-05-01 23:26:35 +02003611I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003612M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003613L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003614W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003616F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003619M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003621F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
3623i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003624M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003625T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626S: Maintained
3627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003629M: Tony Luck <tony.luck@intel.com>
3630M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003632T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003634F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
Kent Yoder956c2032012-09-07 04:17:01 +08003636IBM Power in-Nest Crypto Acceleration
3637M: Kent Yoder <key@linux.vnet.ibm.com>
3638L: linux-crypto@vger.kernel.org
3639S: Supported
3640F: drivers/crypto/nx/
3641
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003642IBM Power 842 compression accelerator
3643M: Robert Jennings <rcj@linux.vnet.ibm.com>
3644S: Supported
3645F: drivers/crypto/nx/nx-842.c
3646F: include/linux/nx842.h
3647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003649M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003651F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
Santiago Leon9d348af2010-09-03 18:29:53 +00003653IBM Power Virtual Ethernet Device Driver
3654M: Santiago Leon <santil@linux.vnet.ibm.com>
3655L: netdev@vger.kernel.org
3656S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003657F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003658
Robert Jennings4b7652c2012-07-31 12:34:36 -05003659IBM Power Virtual SCSI/FC Device Drivers
3660M: Robert Jennings <rcj@linux.vnet.ibm.com>
3661L: linux-scsi@vger.kernel.org
3662S: Supported
3663F: drivers/scsi/ibmvscsi/
3664X: drivers/scsi/ibmvscsi/ibmvstgt.c
3665
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666IBM ServeRAID RAID DRIVER
3667P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003670S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003671F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003673ICH LPC AND GPIO DRIVER
3674M: Peter Tyser <ptyser@xes-inc.com>
3675S: Maintained
3676F: drivers/mfd/lpc_ich.c
3677F: drivers/gpio/gpio-ich.c
3678
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003679IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003680M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003682Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003683T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003685F: Documentation/ide/
3686F: drivers/ide/
3687F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Ike Panhc6cb8c132011-08-25 22:28:45 +08003689IDEAPAD LAPTOP EXTRAS DRIVER
3690M: Ike Panhc <ike.pan@canonical.com>
3691L: platform-driver-x86@vger.kernel.org
3692W: http://launchpad.net/ideapad-laptop
3693S: Maintained
3694F: drivers/platform/x86/ideapad-laptop.c
3695
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003696IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003697M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003698L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003700F: Documentation/cdrom/ide-cd
3701F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
Andy Henroid27471fd2008-10-09 11:45:22 -07003703IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003704M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003705L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003707F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003708
Sergey Lapin02cf2282009-06-08 12:18:50 +00003709IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003710M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003711M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003712L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003713W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003714T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003715S: Maintained
3716F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003717F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003718F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003719
Ameya Palande9545f862012-01-10 09:00:58 -08003720IIO SUBSYSTEM AND DRIVERS
3721M: Jonathan Cameron <jic23@cam.ac.uk>
3722L: linux-iio@vger.kernel.org
3723S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003724F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003725F: drivers/staging/iio/
3726
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003727IKANOS/ADI EAGLE ADSL USB DRIVER
3728M: Matthieu Castet <castet.matthieu@free.fr>
3729M: Stanislaw Gruszka <stf_xl@wp.pl>
3730S: Maintained
3731F: drivers/usb/atm/ueagle-atm.c
3732
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003733INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003734M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003736F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003737
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003739L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003740S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003741F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
3743INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003744M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003745M: Sean Hefty <sean.hefty@intel.com>
3746M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003747L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003748W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003749Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003750T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003752F: Documentation/infiniband/
3753F: drivers/infiniband/
3754F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Robert Lovec9f04f52005-07-15 12:21:07 -04003756INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003757M: John McCutchan <john@johnmccutchan.com>
3758M: Robert Love <rlove@rlove.org>
3759M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003761F: Documentation/filesystems/inotify.txt
3762F: fs/notify/inotify/
3763F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003764
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003765INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003766M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3767M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003768L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003769Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003770T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003772F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003773F: include/linux/input.h
3774F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003775
Henrik Rydberg3267a872010-06-24 19:10:40 -07003776INPUT MULTITOUCH (MT) PROTOCOL
3777M: Henrik Rydberg <rydberg@euromail.se>
3778L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003779T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003780S: Maintained
3781F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003782F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003783K: \b(ABS|SYN)_MT_
3784
Dave Jiang4ac13e12011-07-29 17:16:55 -07003785INTEL C600 SERIES SAS CONTROLLER DRIVER
3786M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003787M: Lukasz Dorau <lukasz.dorau@intel.com>
3788M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003789M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003790L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003791T: git git://git.code.sf.net/p/intel-sas/isci
3792S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003793F: drivers/scsi/isci/
3794F: firmware/isci/
3795
Len Brown26717172010-03-08 14:07:30 -05003796INTEL IDLE DRIVER
3797M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003798L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003799T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003800S: Supported
3801F: drivers/idle/intel_idle.c
3802
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003803INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003804M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003805L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003807F: Documentation/fb/intelfb.txt
3808F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003809
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003811M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003812L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003814F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303816INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003817M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003818L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303819W: http://www.lesswatts.org/projects/acpi/
3820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003821F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003824M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003826F: arch/x86/kernel/microcode_core.c
3827F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003829INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003830M: Dan Williams <djbw@fb.com>
3831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003832F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003833
David Woodhouse6c8909b2008-10-18 16:12:17 +01003834INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003835M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003836L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003837T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003838S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003839F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003840F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003841
Dan Williamsb3e5f262007-08-07 10:26:35 -07003842INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003843M: Dan Williams <djbw@fb.com>
3844S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003845F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003846
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003847INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003848M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003850F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3851F: arch/arm/mach-ixp4xx/include/mach/npe.h
3852F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3853F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003854F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003855F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003856
Michael Buesch844dd052006-06-26 00:24:59 -07003857INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003858M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003860F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003861
Jeff Kirsher0d164402010-10-05 01:15:17 +00003862INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003863M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3864M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3865M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003866M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3867M: Don Skidmore <donald.c.skidmore@intel.com>
3868M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003869M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003870M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003871M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003872L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003873W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3875T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003877F: Documentation/networking/e100.txt
3878F: Documentation/networking/e1000.txt
3879F: Documentation/networking/e1000e.txt
3880F: Documentation/networking/igb.txt
3881F: Documentation/networking/igbvf.txt
3882F: Documentation/networking/ixgb.txt
3883F: Documentation/networking/ixgbe.txt
3884F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003885F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Len Brown6dccf9c2011-07-12 22:29:32 -04003887INTEL MRST PMU DRIVER
3888M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003889L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003890S: Supported
3891F: arch/x86/platform/mrst/pmu.*
3892
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003893INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3894M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003895L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003897F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003898F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003899F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003900
Shane Wang4bd96a72010-03-10 14:36:10 +08003901INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003902M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3903M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003904M: Shane Wang <shane.wang@intel.com>
3905L: tboot-devel@lists.sourceforge.net
3906W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003907T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003908S: Supported
3909F: Documentation/intel_txt.txt
3910F: include/linux/tboot.h
3911F: arch/x86/kernel/tboot.c
3912
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003913INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003914M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003915M: linux-wimax@intel.com
3916L: wimax@linuxwimax.org
3917S: Supported
3918W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003919F: Documentation/wimax/README.i2400m
3920F: drivers/net/wimax/i2400m/
3921F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003922
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003923INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3924M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003925L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003926S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003927F: drivers/net/wireless/iwlegacy/
3928
Zhu Yib481de92007-09-25 17:54:57 -07003929INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003930M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003931M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003932M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003933L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003934W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003935T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003937F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003938
Tomas Winklerde8fe022012-05-09 16:39:02 +03003939INTEL MANAGEMENT ENGINE (mei)
3940M: Tomas Winkler <tomas.winkler@intel.com>
3941L: linux-kernel@vger.kernel.org
3942S: Supported
3943F: include/linux/mei.h
3944F: drivers/misc/mei/*
3945F: Documentation/mei/*
3946
Ralf Baechlecb109a02007-08-30 23:56:30 -07003947IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003948M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949L: linux-mips@linux-mips.org
3950S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003951F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
Ralf Baechlecb109a02007-08-30 23:56:30 -07003953IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003954M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003955L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003956S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003957F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003958
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003959IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003960M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003962F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Francois Romieu1202d6f2007-09-17 17:13:55 -07003964IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003965M: Francois Romieu <romieu@fr.zoreil.com>
3966M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003967L: netdev@vger.kernel.org
3968S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003969F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003970
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003971IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003972M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003973L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003975F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003976
Corey Minyard4409ebe2006-04-20 02:43:12 -07003977IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003978M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003979L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003980W: http://openipmi.sourceforge.net/
3981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003982F: Documentation/IPMI.txt
3983F: drivers/char/ipmi/
3984F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003985
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003986IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003987M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003988L: linux-scsi@vger.kernel.org
3989W: http://www.adaptec.com/
3990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003991F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003992
3993IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003994M: Wensong Zhang <wensong@linux-vs.org>
3995M: Simon Horman <horms@verge.net.au>
3996M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003997L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003998L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004000F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004001F: include/net/ip_vs.h
4002F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004003F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Randy Dunlape7839f22008-10-12 16:11:45 -07004005IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004006M: Jiri Kosina <jkosina@suse.cz>
4007M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004008S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004009F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004010
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004011IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004012M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004013L: netdev@vger.kernel.org
4014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004015F: include/linux/ipx.h
4016F: include/net/ipx.h
4017F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004018
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004020M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004021L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004022L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004024S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004025T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004026F: Documentation/networking/irda.txt
4027F: drivers/net/irda/
4028F: include/net/irda/
4029F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004031IRQ SUBSYSTEM
4032M: Thomas Gleixner <tglx@linutronix.de>
4033S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004034T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004035F: kernel/irq/
4036
Grant Likely7ab3a832012-02-14 14:06:47 -07004037IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4038M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4039M: Grant Likely <grant.likely@secretlab.ca>
4040T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4041S: Maintained
4042F: Documentation/IRQ-domain.txt
4043F: include/linux/irqdomain.h
4044F: kernel/irq/irqdomain.c
4045
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004046ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004047M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004049F: Documentation/isapnp.txt
4050F: drivers/pnp/isapnp/
4051F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004052
Harry Wei71a6d0a2011-05-11 15:13:33 -07004053iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4054M: Peter Jones <pjones@redhat.com>
4055M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4056S: Maintained
4057F: drivers/firmware/iscsi_ibft*
4058
Mike Christie14816b1e2007-11-28 16:22:06 -08004059ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004060M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004061L: open-iscsi@googlegroups.com
4062W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004063T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004065F: drivers/scsi/*iscsi*
4066F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004067
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004069M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004070L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004071L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004073T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004075F: Documentation/isdn/
4076F: drivers/isdn/
4077F: include/linux/isdn.h
4078F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
4080ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004081M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004082L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083W: http://www.melware.de
4084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004085F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
Jean Delvared6248702010-03-05 22:17:20 +01004087IT87 HARDWARE MONITORING DRIVER
4088M: Jean Delvare <khali@linux-fr.org>
4089L: lm-sensors@lm-sensors.org
4090S: Maintained
4091F: Documentation/hwmon/it87
4092F: drivers/hwmon/it87.c
4093
Hans Verkuil91821ff2007-12-02 09:35:33 -03004094IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004095M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004096L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004097L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004098T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004099W: http://www.ivtvdriver.org
4100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004101F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004102F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004103F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004104
Guenter Roeck4453d732010-08-09 17:21:08 -07004105JC42.4 TEMPERATURE SENSOR DRIVER
4106M: Guenter Roeck <linux@roeck-us.net>
4107L: lm-sensors@lm-sensors.org
4108S: Maintained
4109F: drivers/hwmon/jc42.c
4110F: Documentation/hwmon/jc42
4111
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004112JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004113M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004114L: jfs-discussion@lists.sourceforge.net
4115W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004116T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004118F: Documentation/filesystems/jfs.txt
4119F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004120
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004121JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004122M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004123L: netdev@vger.kernel.org
4124S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004125F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004126
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004129L: linux-mtd@lists.infradead.org
4130W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004132F: fs/jffs2/
4133F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Josh Triplettde456d32006-07-30 03:04:00 -07004135JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004136M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004137M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004138L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004139S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004140F: fs/jbd/
4141F: include/linux/ext3_jbd.h
4142F: include/linux/jbd.h
4143
4144JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4145M: "Theodore Ts'o" <tytso@mit.edu>
4146L: linux-ext4@vger.kernel.org
4147S: Maintained
4148F: fs/jbd2/
4149F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004150
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004151JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004152M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004153L: linux-serial@vger.kernel.org
4154S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004155F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004156
Clemens Ladischaf399172011-01-10 16:32:54 +01004157K10TEMP HARDWARE MONITORING DRIVER
4158M: Clemens Ladisch <clemens@ladisch.de>
4159L: lm-sensors@lm-sensors.org
4160S: Maintained
4161F: Documentation/hwmon/k10temp
4162F: drivers/hwmon/k10temp.c
4163
Rudolf Marek4660cb32006-10-08 22:01:26 +02004164K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004165M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004166L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004168F: Documentation/hwmon/k8temp
4169F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
4171KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004172M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004173L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004174S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004175F: Documentation/kbuild/kconfig-language.txt
4176F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Vivek Goyalea6c2082006-05-20 14:59:55 -07004178KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004179M: Vivek Goyal <vgoyal@redhat.com>
4180M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004181L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004182W: http://lse.sourceforge.net/kdump/
4183S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004184F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004188L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004190F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191
Michal Marek70fb7ba2010-01-29 14:22:43 +01004192KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004193M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004194T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4195T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004196L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: Documentation/kbuild/
4199F: Makefile
4200F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004201F: scripts/basic/
4202F: scripts/mk*
4203F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
4205KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004206L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004207W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004208S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004210KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004211M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004212L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004215F: fs/nfsd/
4216F: include/linux/nfsd/
4217F: fs/lockd/
4218F: fs/nfs_common/
4219F: net/sunrpc/
4220F: include/linux/lockd/
4221F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Avi Kivity426d62e2006-12-13 00:34:03 -08004223KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004224M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004225M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004226L: kvm@vger.kernel.org
4227W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004228S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004229F: Documentation/*/kvm.txt
4230F: arch/*/kvm/
4231F: arch/*/include/asm/kvm*
4232F: include/linux/kvm*
4233F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004234
Joerg Roedelad8003d2008-09-10 20:01:07 +02004235KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004236M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004237L: kvm@vger.kernel.org
4238W: http://kvm.qumranet.com
4239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004240F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004241F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004242
Hollis Blanchard513014b2008-04-16 23:28:08 -05004243KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004244M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004245L: kvm-ppc@vger.kernel.org
4246W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004248F: arch/powerpc/include/asm/kvm*
4249F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004250
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004251KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004252M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004253L: kvm-ia64@vger.kernel.org
4254W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004256F: Documentation/ia64/kvm.txt
4257F: arch/ia64/include/asm/kvm*
4258F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004259
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004260KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004261M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004262M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004263M: linux390@de.ibm.com
4264L: linux-s390@vger.kernel.org
4265W: http://www.ibm.com/developerworks/linux/linux390/
4266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004267F: Documentation/s390/kvm.txt
4268F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004269F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004270F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004271
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004272KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004273M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004274W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004275L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004277F: include/linux/kexec.h
4278F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004279
David Howellse9714612010-03-29 23:42:09 +01004280KEYS/KEYRINGS:
4281M: David Howells <dhowells@redhat.com>
4282L: keyrings@linux-nfs.org
4283S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004284F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004285F: include/linux/key.h
4286F: include/linux/key-type.h
4287F: include/keys/
4288F: security/keys/
4289
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004290KEYS-TRUSTED
4291M: David Safford <safford@watson.ibm.com>
4292M: Mimi Zohar <zohar@us.ibm.com>
4293L: linux-security-module@vger.kernel.org
4294L: keyrings@linux-nfs.org
4295S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004296F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004297F: include/keys/trusted-type.h
4298F: security/keys/trusted.c
4299F: security/keys/trusted.h
4300
4301KEYS-ENCRYPTED
4302M: Mimi Zohar <zohar@us.ibm.com>
4303M: David Safford <safford@watson.ibm.com>
4304L: linux-security-module@vger.kernel.org
4305L: keyrings@linux-nfs.org
4306S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004307F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004308F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004309F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004310
Jason Wessel5b778da2010-05-20 21:04:28 -05004311KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004312M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004313W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004314L: kgdb-bugreport@lists.sourceforge.net
4315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004316F: Documentation/DocBook/kgdb.tmpl
4317F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004318F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004319F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004320F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004321F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004322
Pekka Enberg456db8c2008-04-28 22:47:29 +03004323KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004324M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004325M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004326S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004327F: Documentation/kmemcheck.txt
4328F: arch/x86/include/asm/kmemcheck.h
4329F: arch/x86/mm/kmemcheck/
4330F: include/linux/kmemcheck.h
4331F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004332
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004333KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004334M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004335S: Maintained
4336F: Documentation/kmemleak.txt
4337F: include/linux/kmemleak.h
4338F: mm/kmemleak.c
4339F: mm/kmemleak-test.c
4340
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004341KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004342M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4343M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4344M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004345M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004347F: Documentation/kprobes.txt
4348F: include/linux/kprobes.h
4349F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004350
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004351KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004352M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004353W: http://miguelojeda.es/auxdisplay.htm
4354W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004356F: Documentation/auxdisplay/ks0108
4357F: drivers/auxdisplay/ks0108.c
4358F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004359
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004362S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004363F: Documentation/networking/lapb-module.txt
4364F: include/*/lapb.h
4365F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
4367LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369L: linux-scsi@vger.kernel.org
4370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004371F: Documentation/scsi/53c700.txt
4372F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Richard Purdie263de9b2006-05-15 09:44:16 -07004374LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004375M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004376M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004377L: linux-leds@vger.kernel.org
4378T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004380F: drivers/leds/
4381F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004382
Jean Delvareb0461a42011-06-15 15:08:46 -07004383LEGACY EEPROM DRIVER
4384M: Jean Delvare <khali@linux-fr.org>
4385S: Maintained
4386F: Documentation/misc-devices/eeprom
4387F: drivers/misc/eeprom/eeprom.c
4388
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004390M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391L: legousb-devel@lists.sourceforge.net
4392W: http://legousb.sourceforge.net/
4393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004394F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
Michael Krufky055616a2012-10-02 00:56:06 -03004396LG2160 MEDIA DRIVER
4397M: Michael Krufky <mkrufky@linuxtv.org>
4398L: linux-media@vger.kernel.org
4399W: http://linuxtv.org/
4400W: http://github.com/mkrufky
4401Q: http://patchwork.linuxtv.org/project/linux-media/list/
4402T: git git://linuxtv.org/mkrufky/tuners.git
4403S: Maintained
4404F: drivers/media/dvb-frontends/lg2160.*
4405
Michael Krufky6f0e7722012-10-02 00:56:00 -03004406LGDT3305 MEDIA DRIVER
4407M: Michael Krufky <mkrufky@linuxtv.org>
4408L: linux-media@vger.kernel.org
4409W: http://linuxtv.org/
4410W: http://github.com/mkrufky
4411Q: http://patchwork.linuxtv.org/project/linux-media/list/
4412T: git git://linuxtv.org/mkrufky/tuners.git
4413S: Maintained
4414F: drivers/media/dvb-frontends/lgdt3305.*
4415
Rusty Russell568a17f2007-10-25 14:12:24 +10004416LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004417M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004418L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004419W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004420S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004421F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004422F: arch/x86/lguest/
4423F: drivers/lguest/
4424F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004425F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004426
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004428M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429W: http://www.ibm.com/linux/ltc/projects/ppc
4430S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004431F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004433LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004434M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4435M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004437L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004438Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004439T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004441F: Documentation/powerpc/
4442F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443
4444LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004445M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004447L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004449F: arch/powerpc/platforms/powermac/
4450F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451
Grant Likely77a76362008-07-12 12:11:43 -06004452LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004453M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004454L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004455T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004457F: arch/powerpc/platforms/512x/
4458F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
4460LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004461M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004462M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004464L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004465T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004467F: arch/powerpc/platforms/40x/
4468F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Grant Likely260c02a2007-10-02 12:15:34 +10004470LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004471M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004472W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004473L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004474T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004476F: arch/powerpc/*/*virtex*
4477F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Tom Rinie93adf12005-07-26 12:49:53 -07004479LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Vitaly Bordug <vitb@kernel.crashing.org>
4481M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004482W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004483L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004484S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004485F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004486
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004488M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004489W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004490L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004491S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004492F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004493F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494
Olof Johanssonab06ff32006-09-06 14:44:54 -05004495LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004496M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004497L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004498S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004499F: arch/powerpc/platforms/pasemi/
4500F: drivers/*/*pasemi*
4501F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004502
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004504M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004505L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506S: Supported
4507
Harry Weia23ce6d2011-02-11 16:52:20 +01004508LIS3LV02D ACCELEROMETER DRIVER
4509M: Eric Piel <eric.piel@tremplin-utc.net>
4510S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004511F: Documentation/misc-devices/lis3lv02d
4512F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004513F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004515LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004516M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004518F: include/linux/llc.h
4519F: include/net/llc*
4520F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004521
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004522LM73 HARDWARE MONITOR DRIVER
4523M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4524L: lm-sensors@lm-sensors.org
4525S: Maintained
4526F: drivers/hwmon/lm73.c
4527
Jean Delvare156e2d12011-07-25 21:46:11 +02004528LM78 HARDWARE MONITOR DRIVER
4529M: Jean Delvare <khali@linux-fr.org>
4530L: lm-sensors@lm-sensors.org
4531S: Maintained
4532F: Documentation/hwmon/lm78
4533F: drivers/hwmon/lm78.c
4534
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004536M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004537L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004539F: Documentation/hwmon/lm83
4540F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
4542LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004543M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004544L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004546F: Documentation/hwmon/lm90
4547F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004549LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: Peter Zijlstra <peterz@infradead.org>
4551M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004552T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004554F: Documentation/lockdep*.txt
4555F: Documentation/lockstat.txt
4556F: include/linux/lockdep.h
4557F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004558
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004559LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004561L: linux-ntfs-dev@lists.sourceforge.net
4562W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004564F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004565F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Joern Engelef6ada32009-11-20 22:17:12 +01004567LogFS
4568M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304569M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004570L: logfs@logfs.org
4571W: logfs.org
4572S: Maintained
4573F: fs/logfs/
4574
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004575LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004577M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004578L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004579L: linux-scsi@vger.kernel.org
4580W: http://www.lsilogic.com/support
4581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004582F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004585M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586L: linux-scsi@vger.kernel.org
4587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004588F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
Guenter Roecke5f5c992010-06-25 11:59:54 -07004590LTC4261 HARDWARE MONITOR DRIVER
4591M: Guenter Roeck <linux@roeck-us.net>
4592L: lm-sensors@lm-sensors.org
4593S: Maintained
4594F: Documentation/hwmon/ltc4261
4595F: drivers/hwmon/ltc4261.c
4596
Mike Frysinger81365c32008-10-29 14:01:12 -07004597LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004598M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004599M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004600M: Cyril Hrubis <chrubis@suse.cz>
4601M: Caspar Zhang <caspar@casparzhang.com>
4602M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004603L: ltp-list@lists.sourceforge.net (subscribers-only)
4604W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004605T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004606T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004607S: Maintained
4608
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004609M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004610M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004611L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004612L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4613W: http://www.linux-m32r.org/
4614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004615F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004616
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004618M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619L: linux-m68k@lists.linux-m68k.org
4620W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004621T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004623F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004624F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
4626M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004627M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004629L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004631F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
4633M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004634M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635W: http://www.tazenda.demon.co.uk/phil/linux-hp
4636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004637F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638
Jiri Benc64a327a2007-05-05 11:47:08 -07004639MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004640M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004641L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004642W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004643T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4644T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004646F: Documentation/networking/mac80211-injection.txt
4647F: include/net/mac80211.h
4648F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004649
Stefano Brivio1036d862007-12-23 04:46:27 +01004650MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004651M: Stefano Brivio <stefano.brivio@polimi.it>
4652M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004653L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004654W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004655T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4656T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004658F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004659
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004660MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004661M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004662L: netdev@vger.kernel.org
4663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004664F: drivers/net/macvlan.c
4665F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004666
Michael Kerriskfaf16682005-07-31 22:34:47 -07004667MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004668M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004669W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004670L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004671S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004672
stephen hemminger44c14c12012-04-02 12:59:47 +00004673MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4674M: Mirko Lindner <mlindner@marvell.com>
4675M: Stephen Hemminger <shemminger@vyatta.com>
4676L: netdev@vger.kernel.org
4677S: Maintained
4678F: drivers/net/ethernet/marvell/sk*
4679
Stefano Brivio74cda162007-11-19 20:27:46 +01004680MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004681M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004682L: libertas-dev@lists.infradead.org
4683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004684F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004685
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004686MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004687M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004688L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004689S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004690F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004691F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692
Bing Zhaofcad5842011-07-13 13:11:58 -07004693MARVELL MWIFIEX WIRELESS DRIVER
4694M: Bing Zhao <bzhao@marvell.com>
4695L: linux-wireless@vger.kernel.org
4696S: Maintained
4697F: drivers/net/wireless/mwifiex/
4698
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004699MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004700M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004701L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004702S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004703F: drivers/net/wireless/mwl8k.c
4704
Pierre Ossman2a695672009-03-16 19:52:26 +01004705MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004706M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004707S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004708F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004709
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004711L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004712S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004713F: drivers/video/matrox/matroxfb_*
4714F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715
Guenter Roeckca462082012-06-01 23:28:23 -07004716MAX16065 HARDWARE MONITOR DRIVER
4717M: Guenter Roeck <linux@roeck-us.net>
4718L: lm-sensors@lm-sensors.org
4719S: Maintained
4720F: Documentation/hwmon/max16065
4721F: drivers/hwmon/max16065.c
4722
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004723MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004724M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004725L: lm-sensors@lm-sensors.org
4726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004727F: Documentation/hwmon/max6650
4728F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004729
Joe Perches127c49a2009-04-08 08:34:04 -07004730MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004731M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004732P: LinuxTV.org Project
4733L: linux-media@vger.kernel.org
4734W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004735Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004736T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004737S: Maintained
4738F: Documentation/dvb/
4739F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004740F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004741F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004742F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004743F: include/media/
4744F: include/linux/dvb/
4745F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004746
4747MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004748M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004749L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004750W: http://megaraid.lsilogic.com
4751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004752F: Documentation/scsi/megaraid.txt
4753F: drivers/scsi/megaraid.*
4754F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004755
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004756MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758W: http://www.linux-mm.org
4759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004760F: include/linux/mm.h
4761F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004762
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004763MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004764M: Johannes Weiner <hannes@cmpxchg.org>
4765M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004766M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004767M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004768L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004769L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004771F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004772F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004773
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004775M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004777W: http://www.linux-mtd.infradead.org/
4778Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004779T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/mtd/
4782F: include/linux/mtd/
4783F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784
Michal Simekc6375b02009-03-27 14:25:52 +01004785MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004786M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004787L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004788W: http://www.monstr.eu/fdt/
4789T: git git://git.monstr.eu/linux-2.6-microblaze.git
4790S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004791F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792
4793MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004794M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004796F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
4798MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004801W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004802T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004803Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004804S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004805F: Documentation/mips/
4806F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004809M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004811F: include/linux/module.h
4812F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
4814MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004816S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004817F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004818F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004819F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820
Pavel Pisac58ff042007-05-16 01:10:41 +02004821MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004822M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004825F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004826
Jiri Slabyb9705b62008-04-30 00:53:48 -07004827MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004828M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004831F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004832
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004833MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004834M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004835L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004837F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004838
Anisse Astier0f1006b2009-12-17 11:28:49 +01004839MSI WMI SUPPORT
4840M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004841L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004842S: Supported
4843F: drivers/platform/x86/msi-wmi.c
4844
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004845MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004846M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004847T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004848S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004849F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004850
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004851MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004852M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004853L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004854T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004856F: drivers/mmc/
4857F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004858
David Brownell15a05802007-08-08 09:12:54 -07004859MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004860S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004861F: drivers/mmc/host/mmc_spi.c
4862F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004863
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004865M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004867F: Documentation/sound/oss/MultiSound
4868F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
Jiri Slabyd7354102006-12-08 02:38:35 -08004870MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004871S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004872F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004873F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004874
Felipe Balbi550a7372008-07-24 12:27:36 +03004875MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004876M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004877L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004878T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004880F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004881
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004882MXL5007T MEDIA DRIVER
4883M: Michael Krufky <mkrufky@linuxtv.org>
4884L: linux-media@vger.kernel.org
4885W: http://linuxtv.org/
4886W: http://github.com/mkrufky
4887Q: http://patchwork.linuxtv.org/project/linux-media/list/
4888T: git git://linuxtv.org/mkrufky/tuners.git
4889S: Maintained
4890F: drivers/media/tuners/mxl5007t.*
4891
Brice Goglin2d3cf582008-05-17 12:45:36 +02004892MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004893M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004894L: netdev@vger.kernel.org
4895W: http://www.myri.com/scs/download-Myri10GE.html
4896S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004897F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004898
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004900S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004901F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
Daniel Mack23dc05a2011-05-18 11:28:38 +02004903NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4904M: Daniel Mack <zonque@gmail.com>
4905S: Maintained
4906L: alsa-devel@alsa-project.org
4907W: http://www.native-instruments.com
4908F: sound/usb/caiaq/
4909
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004911M: Petr Vandrovec <petr@vandrovec.name>
4912S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004913F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914
4915NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004916M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917L: linux-scsi@vger.kernel.org
4918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004919F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004921NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004922M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004923L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004924W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004925S: Supported
4926F: drivers/infiniband/hw/nes/
4927
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004928NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004929M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004930L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004932F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004933
Jon Masonb2f5a052010-07-15 08:47:27 +00004934NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004935M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004936L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004938F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004939F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004940F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004941
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943P: Harald Welte
4944P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004945M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004946M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004947L: netfilter-devel@vger.kernel.org
4948L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004949L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950W: http://www.netfilter.org/
4951W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004952T: git git://1984.lsi.us.es/nf
4953T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004955F: include/linux/netfilter*
4956F: include/linux/netfilter/
4957F: include/net/netfilter/
4958F: net/*/netfilter.c
4959F: net/*/netfilter/
4960F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
Paul Moore4cc67732006-09-25 15:57:13 -07004962NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004963M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004964W: http://netlabel.sf.net
4965L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004966S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004967F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004968F: include/net/netlabel.h
4969F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004970
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004972M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004974W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004976F: include/linux/netrom.h
4977F: include/net/netrom.h
4978F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004980NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004981M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004983F: Documentation/blockdev/nbd.txt
4984F: drivers/block/nbd.c
4985F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986
Neil Horman6e436502009-10-05 03:56:55 +00004987NETWORK DROP MONITOR
4988M: Neil Horman <nhorman@tuxdriver.com>
4989L: netdev@vger.kernel.org
4990S: Maintained
4991W: https://fedorahosted.org/dropwatch/
4992F: net/core/drop_monitor.c
4993
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004995M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004996L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004997W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004998W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00004999T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5000T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005002F: net/
5003F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005004F: include/linux/in.h
5005F: include/linux/net.h
5006F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
5008NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005009M: "David S. Miller" <davem@davemloft.net>
5010M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005011M: James Morris <jmorris@namei.org>
5012M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5013M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005014L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005015T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005017F: net/ipv4/
5018F: net/ipv6/
5019F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005020F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021
David S. Miller73b76562012-10-16 14:08:40 -04005022NETWORKING [IPSEC]
5023M: Steffen Klassert <steffen.klassert@secunet.com>
5024M: Herbert Xu <herbert@gondor.apana.org.au>
5025M: "David S. Miller" <davem@davemloft.net>
5026L: netdev@vger.kernel.org
5027T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5028S: Maintained
5029F: net/xfrm/
5030F: net/key/
5031F: net/ipv4/xfrm*
5032F: net/ipv6/xfrm*
5033F: include/uapi/linux/xfrm.h
5034F: include/net/xfrm.h
5035
James Morris10e2ff12007-08-25 14:41:28 -07005036NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005037M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005038L: netdev@vger.kernel.org
5039S: Maintained
5040
John W. Linville29f8f632006-01-18 14:52:48 -08005041NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005042M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005043L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005044Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005045T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005046S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005047F: net/mac80211/
5048F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005049F: net/wireless/
5050F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005051F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005052F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005053F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005054
Joe Perches788873a2009-04-16 09:38:45 +00005055NETWORKING DRIVERS
5056L: netdev@vger.kernel.org
5057W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005058T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5059T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005060S: Odd Fixes
5061F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005062F: include/linux/if_*
5063F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00005064
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005065NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005066M: Sony Chacko <sony.chacko@qlogic.com>
5067M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005068L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005069W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005070S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005071F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005072
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005073NFC SUBSYSTEM
5074M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5075M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5076M: Samuel Ortiz <sameo@linux.intel.com>
5077L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005078L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005079S: Maintained
5080F: net/nfc/
5081F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005082F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005083F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005085NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005086M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005087L: linux-nfs@vger.kernel.org
5088W: http://client.linux-nfs.org
5089T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005091F: fs/lockd/
5092F: fs/nfs/
5093F: fs/nfs_common/
5094F: net/sunrpc/
5095F: include/linux/lockd/
5096F: include/linux/nfs*
5097F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098
5099NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Jan-Pascal van Best <janpascal@vanbest.org>
5101M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005102L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005104F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005106NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005107M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005108L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005109W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005110T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005112F: Documentation/filesystems/nilfs2.txt
5113F: fs/nilfs2/
5114F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005115
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005117M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005120F: Documentation/scsi/NinjaSCSI.txt
5121F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
5123NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005124M: GOTO Masanori <gotom@debian.or.jp>
5125M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005128F: Documentation/scsi/NinjaSCSI.txt
5129F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005132M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005134W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005135T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005137F: Documentation/filesystems/ntfs.txt
5138F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005140NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005141M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005142L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005144F: drivers/video/riva/
5145F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146
Tony Lindgrenf5525782009-05-28 13:23:53 -07005147OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005148M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005149L: linux-omap@vger.kernel.org
5150W: http://www.muru.com/linux/omap/
5151W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005152Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005153T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005154S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005155F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005156F: drivers/i2c/busses/i2c-omap.c
5157F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005158
5159OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005160M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005161L: linux-omap@vger.kernel.org
5162S: Maintained
5163F: arch/arm/*omap*/*clock*
5164
5165OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005166M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005167L: linux-omap@vger.kernel.org
5168S: Maintained
5169F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005170F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005171
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005172OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5173M: Rajendra Nayak <rnayak@ti.com>
5174M: Paul Walmsley <paul@pwsan.com>
5175L: linux-omap@vger.kernel.org
5176S: Maintained
5177F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5178F: arch/arm/mach-omap2/powerdomain44xx.c
5179F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5180F: arch/arm/mach-omap2/clockdomain44xx.c
5181
Tony Lindgrenf5525782009-05-28 13:23:53 -07005182OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005183M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005184M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005185L: alsa-devel@alsa-project.org (subscribers-only)
5186L: linux-omap@vger.kernel.org
5187S: Maintained
5188F: sound/soc/omap/
5189
5190OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005191M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005192L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005193L: linux-omap@vger.kernel.org
5194S: Maintained
5195F: drivers/video/omap/
5196
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005197OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005198M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005199L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005200L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005201S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005202F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005203F: Documentation/arm/OMAP/DSS
5204
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005205OMAP HARDWARE SPINLOCK SUPPORT
5206M: Ohad Ben-Cohen <ohad@wizery.com>
5207L: linux-omap@vger.kernel.org
5208S: Maintained
5209F: drivers/hwspinlock/omap_hwspinlock.c
5210F: arch/arm/mach-omap2/hwspinlock.c
5211
Tony Lindgrenf5525782009-05-28 13:23:53 -07005212OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005213M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005214L: linux-omap@vger.kernel.org
5215S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005216F: drivers/mmc/host/omap.c
5217
5218OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305219M: Venkatraman S <svenkatr@ti.com>
5220L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005221L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305222S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005223F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005224
5225OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005226M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005227S: Maintained
5228F: drivers/char/hw_random/omap-rng.c
5229
Paul Walmsleyf400c822010-12-06 19:08:54 -07005230OMAP HWMOD SUPPORT
5231M: Benoît Cousson <b-cousson@ti.com>
5232M: Paul Walmsley <paul@pwsan.com>
5233L: linux-omap@vger.kernel.org
5234S: Maintained
5235F: arch/arm/mach-omap2/omap_hwmod.c
5236F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5237
5238OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5239M: Benoît Cousson <b-cousson@ti.com>
5240L: linux-omap@vger.kernel.org
5241S: Maintained
5242F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5243
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005244OMAP IMAGE SIGNAL PROCESSOR (ISP)
5245M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5246L: linux-media@vger.kernel.org
5247S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005248F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005249
Tony Lindgrenf5525782009-05-28 13:23:53 -07005250OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005251M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005252L: linux-usb@vger.kernel.org
5253L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005254T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005255S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005256F: drivers/usb/*/*omap*
5257F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005258
Kevin Hilman6d994712012-07-16 10:05:07 -07005259OMAP GPIO DRIVER
5260M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5261M: Kevin Hilman <khilman@ti.com>
5262L: linux-omap@vger.kernel.org
5263S: Maintained
5264F: drivers/gpio/gpio-omap.c
5265
Bob Copeland0ad122d2008-07-25 19:45:18 -07005266OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005268L: linux-karma-devel@lists.sourceforge.net
5269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005270F: Documentation/filesystems/omfs.txt
5271F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005272
Harald Weltec1986ee2005-11-13 16:06:29 -08005273OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005274M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005276F: drivers/char/pcmcia/cm4000_cs.c
5277F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005278
Harald Welte77c44ab2005-11-13 16:06:26 -08005279OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005280M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005282F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005283
Jonathan Corbet77d51402007-03-22 19:44:17 -03005284OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005285M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005286L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005287T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005288S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005289F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005290
Thomas Gleixner431bca72007-05-02 09:31:35 +02005291ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005292M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005293L: linux-mtd@lists.infradead.org
5294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005295F: drivers/mtd/onenand/
5296F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005297
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300L: osst-users@lists.sourceforge.net
5301L: linux-scsi@vger.kernel.org
5302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005303F: drivers/scsi/osst*
5304F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005306OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005307M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005308L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005310F: Documentation/i2c/busses/i2c-ocores
5311F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005312
Grant Likely860c44c2009-10-26 16:49:49 -07005313OPEN FIRMWARE AND FLATTENED DEVICE TREE
5314M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005315M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005316L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005317W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005318T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005319S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005320F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005321F: drivers/of
5322F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005323F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005324K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005325K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005326
Jonas Bonn19f9d392011-06-04 22:00:38 +03005327OPENRISC ARCHITECTURE
5328M: Jonas Bonn <jonas@southpole.se>
5329W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005330L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005331S: Maintained
5332T: git git://openrisc.net/~jonas/linux
5333F: arch/openrisc
5334
Jesse Grossccb13522011-10-25 19:26:31 -07005335OPENVSWITCH
5336M: Jesse Gross <jesse@nicira.com>
5337L: dev@openvswitch.org
5338W: http://openvswitch.org
5339T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5340S: Maintained
5341F: net/openvswitch/
5342
Clemens Ladischaf399172011-01-10 16:32:54 +01005343OPL4 DRIVER
5344M: Clemens Ladisch <clemens@ladisch.de>
5345L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5346T: git git://git.alsa-project.org/alsa-kernel.git
5347S: Maintained
5348F: sound/drivers/opl4/
5349
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005351M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352L: oprofile-list@lists.sf.net
5353S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005354F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005355F: arch/*/oprofile/
5356F: drivers/oprofile/
5357F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005359ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005360M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005361M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005362L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5363W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005364T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005366F: Documentation/filesystems/ocfs2.txt
5367F: Documentation/filesystems/dlmfs.txt
5368F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005369
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005371L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005372W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005373W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005374S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005375F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005377OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005378M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005379M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005380L: osd-dev@open-osd.org
5381W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005382T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005383S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005384F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005385F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005386F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005387
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005388P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005389M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005390L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005391W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005393F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005394
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005395PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005396M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005397L: netdev@vger.kernel.org
5398S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005399F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005400
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005401PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005402M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005403L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005405F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005406
Steffen Klassert48fc2672010-08-13 10:10:46 -04005407PADATA PARALLEL EXECUTION MECHANISM
5408M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005409L: linux-crypto@vger.kernel.org
5410S: Maintained
5411F: kernel/padata.c
5412F: include/linux/padata.h
5413F: Documentation/padata.txt
5414
Harald Welte709ee532008-09-23 17:46:57 +02005415PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005416M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005417L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005419F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005420
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005421PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005422M: David Howells <dhowells@redhat.com>
5423M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005424L: linux-am33-list@redhat.com (moderated for non-subscribers)
5425W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: Documentation/mn10300/
5428F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005429
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005431L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005432S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005433F: drivers/parport/
5434F: include/linux/parport*.h
5435F: drivers/char/ppdev.c
5436F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005438PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005439M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005440M: Chris Wright <chrisw@sous-sol.org>
5441M: Alok Kataria <akataria@vmware.com>
5442M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005443L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005445F: Documentation/ia64/paravirt_ops.txt
5446F: arch/*/kernel/paravirt*
5447F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005448
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005450M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005451L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452W: http://www.torque.net/linux-pp.html
5453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005454F: Documentation/blockdev/paride.txt
5455F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
5457PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005458M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005459M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005460L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005462Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005463T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005465F: arch/parisc/
5466F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467
Jim Cromie1662d322006-10-06 00:43:59 -07005468PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005469M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005470L: lm-sensors@lm-sensors.org
5471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005472F: Documentation/hwmon/pc87360
5473F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005474
5475PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005478F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005479
Jean Delvare1ad107f2010-08-14 21:09:00 +02005480PC87427 HARDWARE MONITORING DRIVER
5481M: Jean Delvare <khali@linux-fr.org>
5482L: lm-sensors@lm-sensors.org
5483S: Maintained
5484F: Documentation/hwmon/pc87427
5485F: drivers/hwmon/pc87427.c
5486
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005487PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005488M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005489S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005490F: drivers/leds/leds-pca9532.c
5491F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005492
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005493PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005494M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005495L: linux-i2c@vger.kernel.org
5496S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005497F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005498
Wolfram Sanga1867d32009-09-18 22:45:51 +02005499PCA9564/PCA9665 I2C BUS DRIVER
5500M: Wolfram Sang <w.sang@pengutronix.de>
5501L: linux-i2c@vger.kernel.org
5502S: Maintained
5503F: drivers/i2c/algos/i2c-algo-pca.c
5504F: drivers/i2c/busses/i2c-pca-*
5505F: include/linux/i2c-algo-pca.h
5506F: include/linux/i2c-pca-platform.h
5507
Khalid Aziz3971dae2012-04-12 12:49:13 -07005508PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005509M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005510S: Maintained
5511F: drivers/firmware/pcdp.*
5512
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005513PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005514M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005515L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005517F: Documentation/PCI/pci-error-recovery.txt
5518F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005519
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005521M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005522L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005523Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005524T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005526F: Documentation/PCI/
5527F: drivers/pci/
5528F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005531P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005532L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005533W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005534T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005536F: Documentation/pcmcia/
5537F: drivers/pcmcia/
5538F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
5540PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005541M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005542L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005544F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545
Steffen Klassert48fc2672010-08-13 10:10:46 -04005546PCRYPT PARALLEL CRYPTO ENGINE
5547M: Steffen Klassert <steffen.klassert@secunet.com>
5548L: linux-crypto@vger.kernel.org
5549S: Maintained
5550F: crypto/pcrypt.c
5551F: include/crypto/pcrypt.h
5552
Tejun Heoe72df0b2010-12-10 17:02:49 +01005553PER-CPU MEMORY ALLOCATOR
5554M: Tejun Heo <tj@kernel.org>
5555M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005556T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5557S: Maintained
5558F: include/linux/percpu*.h
5559F: mm/percpu*.c
5560F: arch/*/include/asm/percpu.h
5561
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005562PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005563M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005565F: include/linux/delayacct.h
5566F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005567
Ingo Molnar57c0c152009-09-21 12:20:38 +02005568PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005569M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5570M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005571M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005572M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005573T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005574S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005575F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005576F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005577F: arch/*/kernel/perf_event*.c
5578F: arch/*/kernel/*/perf_event*.c
5579F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005580F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005581F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005582F: arch/*/kernel/perf_callchain.c
5583F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005584
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005585PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005586M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005587L: linux-abi-devel@lists.sourceforge.net
5588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005589F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005590
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005591PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005592M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005593S: Supported
5594F: Documentation/networking/phonet.txt
5595F: include/linux/phonet.h
5596F: include/net/phonet/
5597F: net/phonet/
5598
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005600M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601L: linux-mtd@lists.infradead.org
5602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005603F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
Bruno Prémontefdbb102012-07-30 21:39:03 +02005605PICOLCD HID DRIVER
5606M: Bruno Prémont <bonbons@linux-vserver.org>
5607L: linux-input@vger.kernel.org
5608S: Maintained
5609F: drivers/hid/hid-picolcd*
5610
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005611PICOXCELL SUPPORT
5612M: Jamie Iles <jamie@jamieiles.com>
5613L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5614T: git git://github.com/jamieiles/linux-2.6-ji.git
5615S: Supported
5616F: arch/arm/mach-picoxcell
5617F: drivers/*/picoxcell*
5618F: drivers/*/*/picoxcell*
5619
Linus Walleij2744e8a2011-05-02 20:50:54 +02005620PIN CONTROL SUBSYSTEM
5621M: Linus Walleij <linus.walleij@linaro.org>
5622S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005623F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005624F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005625
Viresh Kumardeda8282012-03-28 22:27:07 +05305626PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005627M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305628L: spear-devel@list.st.com
5629L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5630W: http://www.st.com/spear
5631S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005632F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305633
Peter Osterlund249a6772005-09-27 21:45:30 -07005634PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005637F: drivers/block/pktcdvd.c
5638F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005639
GuanXuetaob31d8272011-01-16 00:35:49 +08005640PKUNITY SOC DRIVERS
5641M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5642W: http://mprc.pku.edu.cn/~guanxuetao/linux
5643S: Maintained
5644T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5645F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005646F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005647F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005648F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005649
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005650PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005651M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005652L: lm-sensors@lm-sensors.org
5653W: http://www.lm-sensors.org/
5654W: http://www.roeck-us.net/linux/drivers/
5655T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5656S: Maintained
5657F: Documentation/hwmon/pmbus
5658F: drivers/hwmon/pmbus/
5659F: include/linux/i2c/pmbus.h
5660
Anil Ravindranath89a36812009-08-25 17:35:18 -07005661PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005662M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005663L: linux-scsi@vger.kernel.org
5664W: http://www.pmc-sierra.com/
5665S: Supported
5666F: drivers/scsi/pmcraid.*
5667
jack wangdbf9bfe2009-10-14 16:19:21 +08005668PMC SIERRA PM8001 DRIVER
5669M: jack_wang@usish.com
5670M: lindar_liu@usish.com
5671L: linux-scsi@vger.kernel.org
5672S: Supported
5673F: drivers/scsi/pm8001/
5674
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005676M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005677T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005679F: fs/timerfd.c
5680F: include/linux/timer*
5681F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Anton Vorontsov3be86142007-07-15 04:43:36 +04005683POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Anton Vorontsov <cbou@mail.ru>
5685M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005686T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005688F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005689F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005690
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005693M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005695F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696
Vitaly Wool999445d2007-01-04 13:07:03 +01005697PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005698M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005699L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005701F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005702
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005704M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705L: linux-ppp@vger.kernel.org
5706S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005707F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708
5709PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005710M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005712F: net/atm/pppoatm.c
5713F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
5715PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005716M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005718F: drivers/net/ppp/pppoe.c
5719F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720
James Chapmana6d23702007-06-27 15:53:17 -07005721PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005722M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005723S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005724F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005725F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005726
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005727PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005728M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005729W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5730L: linuxpps@ml.enneenne.com (subscribers-only)
5731S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005732F: Documentation/pps/
5733F: drivers/pps/
5734F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005735
Harry Wei71a6d0a2011-05-11 15:13:33 -07005736PPTP DRIVER
5737M: Dmitry Kozlov <xeb@mail.ru>
5738L: netdev@vger.kernel.org
5739S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005740F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005741W: http://sourceforge.net/projects/accel-pptp
5742
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005744M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745L: kpreempt-tech@lists.sourceforge.net
5746W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5747S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005748F: Documentation/preempt-locking.txt
5749F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
5751PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005752M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005753L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005754W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005755S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005756F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005758PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005759M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005760L: linux-ide@vger.kernel.org
5761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005762F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005763
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005764PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005765M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005766L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005767L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005768S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005769F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005770
Geoff Levandf58a9d12006-11-23 00:46:51 +01005771PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005772M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005773L: linuxppc-dev@lists.ozlabs.org
5774L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005776F: arch/powerpc/boot/ps3*
5777F: arch/powerpc/include/asm/lv1call.h
5778F: arch/powerpc/include/asm/ps3*.h
5779F: arch/powerpc/platforms/ps3/
5780F: drivers/*/ps3*
5781F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005782F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005783F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005784F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005785
Jim Pariscffb4add2009-01-06 11:32:10 +00005786PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005787M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005788L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005789S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005790F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005791
Anton Vorontsov8defe592012-08-03 18:07:20 -07005792PSTORE FILESYSTEM
5793M: Anton Vorontsov <cbouatmailru@gmail.com>
5794M: Colin Cross <ccross@android.com>
5795M: Kees Cook <keescook@chromium.org>
5796M: Tony Luck <tony.luck@intel.com>
5797S: Maintained
5798T: git git://git.infradead.org/users/cbou/linux-pstore.git
5799F: fs/pstore/
5800F: include/linux/pstore*
5801F: drivers/firmware/efivars.c
5802F: drivers/acpi/apei/erst.c
5803
Richard Cochran7fbc4152012-03-10 01:55:53 +00005804PTP HARDWARE CLOCK SUPPORT
5805M: Richard Cochran <richardcochran@gmail.com>
5806S: Maintained
5807W: http://linuxptp.sourceforge.net/
5808F: Documentation/ABI/testing/sysfs-ptp
5809F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005810F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005811F: drivers/net/phy/dp83640*
5812F: drivers/ptp/*
5813F: include/linux/ptp_cl*
5814
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005815PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005816M: Roland McGrath <roland@redhat.com>
5817M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005818S: Maintained
5819F: include/asm-generic/syscall.h
5820F: include/linux/ptrace.h
5821F: include/linux/regset.h
5822F: include/linux/tracehook.h
5823F: kernel/ptrace.c
5824
Michael Krufky83202042006-07-03 00:24:18 -07005825PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005826M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005827L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005828L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005829W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005830T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005832F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005833F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005834
Thierry Reding200efed2012-03-27 13:16:18 +02005835PWM SUBSYSTEM
5836M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005837L: linux-kernel@vger.kernel.org
5838S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005839W: http://gitorious.org/linux-pwm
5840T: git git://gitorious.org/linux-pwm/linux-pwm.git
5841F: Documentation/pwm.txt
5842F: Documentation/devicetree/bindings/pwm/
5843F: include/linux/pwm.h
5844F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005845F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005846F: drivers/video/backlight/pwm_bl.c
5847F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005848
Eric Miao30ec2612008-06-12 15:21:41 -07005849PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005850M: Eric Miao <eric.y.miao@gmail.com>
5851M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005852M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005853L: 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005857F: arch/arm/mach-pxa/
5858F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005859F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005860F: drivers/usb/gadget/pxa2*
5861F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005862F: sound/arm/pxa*
5863F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005865MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005866M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005867M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005869T: git git://github.com/hzhuang1/linux.git
5870T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005871S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005872F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005873
Pierre Ossman272f1332007-05-14 21:25:26 +02005874PXA MMCI DRIVER
5875S: Orphan
5876
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005877PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005878M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005879L: rtc-linux@googlegroups.com
5880S: Maintained
5881
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005882QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005883M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005884L: linux-rdma@vger.kernel.org
5885S: Supported
5886F: drivers/infiniband/hw/qib/
5887
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005888QLOGIC QLA1280 SCSI DRIVER
5889M: Michael Reed <mdr@sgi.com>
5890L: linux-scsi@vger.kernel.org
5891S: Maintained
5892F: drivers/scsi/qla1280.[ch]
5893
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005896M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897L: linux-scsi@vger.kernel.org
5898S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005899F: Documentation/scsi/LICENSE.qla2xxx
5900F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
Ravi Anand883c98f2010-04-28 11:45:49 +05305902QLOGIC QLA4XXX iSCSI DRIVER
5903M: Ravi Anand <ravi.anand@qlogic.com>
5904M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5905M: iscsi-driver@qlogic.com
5906L: linux-scsi@vger.kernel.org
5907S: Supported
5908F: drivers/scsi/qla4xxx/
5909
Ron Mercer5a4faa872006-07-25 00:40:21 -07005910QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005911M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005912M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005913M: linux-driver@qlogic.com
5914L: netdev@vger.kernel.org
5915S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005916F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005917F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005918
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005919QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005920M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005921M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005922M: linux-driver@qlogic.com
5923L: netdev@vger.kernel.org
5924S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005925F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005926
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005927QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005928M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005929M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005930M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005931L: netdev@vger.kernel.org
5932S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005933F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005934
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005936M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937W: http://www.alarsen.net/linux/qnx4fs/
5938S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005939F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005940F: include/linux/qnx4_fs.h
5941F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942
Antti Palosaari91952bc2012-10-01 12:28:46 -03005943QT1010 MEDIA DRIVER
5944M: Antti Palosaari <crope@iki.fi>
5945L: linux-media@vger.kernel.org
5946W: http://linuxtv.org/
5947W: http://palosaari.fi/linux/
5948Q: http://patchwork.linuxtv.org/project/linux-media/list/
5949T: git git://linuxtv.org/anttip/media_tree.git
5950S: Maintained
5951F: drivers/media/tuners/qt1010*
5952
Richard Kuo4f4567c2011-10-31 18:56:38 -05005953QUALCOMM HEXAGON ARCHITECTURE
5954M: Richard Kuo <rkuo@codeaurora.org>
5955L: linux-hexagon@vger.kernel.org
5956S: Supported
5957F: arch/hexagon/
5958
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005959RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005960M: Yehuda Sadeh <yehuda@inktank.com>
5961M: Sage Weil <sage@inktank.com>
5962M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005963M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005964W: http://ceph.com/
5965T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005966S: Supported
5967F: drivers/block/rbd.c
5968F: drivers/block/rbd_types.h
5969
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005972L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005974F: drivers/video/aty/radeon*
5975F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
5977RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005978M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005979L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005981F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982
Randy Dunlape7839f22008-10-12 16:11:45 -07005983RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005984P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005985M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005986M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005987M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005988L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005989L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005990W: http://rt2x00.serialmonkey.com/
5991S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005992T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005993F: drivers/net/wireless/rt2x00/
5994
Nick Piggin9db55792008-02-08 04:19:49 -08005995RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005996M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005998F: Documentation/blockdev/ramdisk.txt
5999F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006000
Matt Mackall9e95ce22005-04-16 15:25:56 -07006001RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006002M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006004F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006005
Matt Porter394b7012005-11-07 01:00:15 -08006006RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006007M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006008M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006010F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006011
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006012RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006013L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006014S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006015F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006016
6017RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006018M: Josh Triplett <josh@freedesktop.org>
6019M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006020S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006021T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006022F: Documentation/RCU/torture.txt
6023F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006024
Florian Fainellic1f766b2008-02-06 22:39:44 +01006025RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006026M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006027S: Maintained
6028
Florian Fainellidb17f392007-12-19 11:30:30 +01006029RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006030M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006031L: netdev@vger.kernel.org
6032S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006033F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006034
Andy Grovera09ed662009-02-24 15:30:41 +00006035RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006036M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006037L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006039F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006040
Josh Triplett595182b2006-10-04 02:17:21 -07006041READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006042M: Dipankar Sarma <dipankar@in.ibm.com>
6043M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006044W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006045S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006046T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006047F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006048X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006049F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006050F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006051X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006052
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006053REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006054M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006055L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006056Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006058F: Documentation/rtc.txt
6059F: drivers/rtc/
6060F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006061
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006063L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006065F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066
Mark Brownb83a3132011-05-11 19:59:58 +02006067REGISTER MAP ABSTRACTION
6068M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6069T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6070S: Supported
6071F: drivers/base/regmap/
6072F: include/linux/regmap.h
6073
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006074REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6075M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006076T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006077S: Maintained
6078F: drivers/remoteproc/
6079F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006080F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006081
Ivo van Doorne08976452008-04-12 19:23:55 +02006082RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006083M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006084L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006085W: http://wireless.kernel.org/
6086T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6087T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006088S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006089F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006090F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006091
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006092RICOH SMARTMEDIA/XD DRIVER
6093M: Maxim Levitsky <maximlevitsky@gmail.com>
6094S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006095F: drivers/mtd/nand/r852.c
6096F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006097
Maxim Levitsky92634122011-03-25 01:56:59 -07006098RICOH R5C592 MEMORYSTICK DRIVER
6099M: Maxim Levitsky <maximlevitsky@gmail.com>
6100S: Maintained
6101F: drivers/memstick/host/r592.*
6102
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103ROCKETPORT DRIVER
6104P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105W: http://www.comtrol.com
6106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006107F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006108F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109
6110ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006111M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006113W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006115F: include/linux/rose.h
6116F: include/net/rose.h
6117F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118
Antti Palosaari91952bc2012-10-01 12:28:46 -03006119RTL2830 MEDIA DRIVER
6120M: Antti Palosaari <crope@iki.fi>
6121L: linux-media@vger.kernel.org
6122W: http://linuxtv.org/
6123W: http://palosaari.fi/linux/
6124Q: http://patchwork.linuxtv.org/project/linux-media/list/
6125T: git git://linuxtv.org/anttip/media_tree.git
6126S: Maintained
6127F: drivers/media/dvb-frontends/rtl2830*
6128
Larry Finger59840482008-11-12 17:13:09 -06006129RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006130M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006131L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006132W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006133T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006134S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006135F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006136
Larry Finger59840482008-11-12 17:13:09 -06006137RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006138M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006139M: Hin-Tak Leung <htl10@users.sourceforge.net>
6140M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006141L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006142W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006143T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006144S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006145F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006146
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006147RTL8192CE WIRELESS DRIVER
6148M: Larry Finger <Larry.Finger@lwfinger.net>
6149M: Chaoming Li <chaoming_li@realsil.com.cn>
6150L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006151W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006152T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6153S: Maintained
6154F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006155F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006156
6157S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006158M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006159L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006161F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006162
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163S390
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6165M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006167L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006168W: http://www.ibm.com/developerworks/linux/linux390/
6169S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006170F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006171F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006172F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006173F: Documentation/s390/
6174F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006175
6176S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006177M: Ursula Braun <ursula.braun@de.ibm.com>
6178M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006179M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006180L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006181W: http://www.ibm.com/developerworks/linux/linux390/
6182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006183F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006184
Felix Beckfeed9b62009-03-26 15:24:23 +01006185S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006186M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006187M: linux390@de.ibm.com
6188L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006189W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006190S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006191F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006192
Heiko Carstens5238da42006-02-11 17:56:01 -08006193S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006194M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006195M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006196L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006197W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006199F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
Ursula Braundd96df22007-09-19 13:09:02 +02006201S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006202M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006203M: linux390@de.ibm.com
6204L: linux-s390@vger.kernel.org
6205W: http://www.ibm.com/developerworks/linux/linux390/
6206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006207F: drivers/s390/net/*iucv*
6208F: include/net/iucv/
6209F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006210
Ben Dooks4dde7f72008-06-30 22:40:38 +01006211S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006212M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006213L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006215F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006216
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006218M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006219L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006220T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221W: http://www.mihu.de/linux/saa7146
6222S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006223F: drivers/media/common/saa7146/
6224F: drivers/media/pci/saa7146/
6225F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226
Corentin Chary92304a42011-12-05 12:38:35 -05006227SAMSUNG LAPTOP DRIVER
6228M: Corentin Chary <corentincj@iksaif.net>
6229L: platform-driver-x86@vger.kernel.org
6230S: Maintained
6231F: drivers/platform/x86/samsung-laptop.c
6232
Mark Brown4a109cc2010-09-24 10:50:46 +01006233SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006234M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006235L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6236S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006237F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006238
Jingoo Han0d89a282011-12-19 11:09:35 +09006239SAMSUNG FRAMEBUFFER DRIVER
6240M: Jingoo Han <jg1.han@samsung.com>
6241L: linux-fbdev@vger.kernel.org
6242S: Maintained
6243F: drivers/video/s3c-fb.c
6244
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006245SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6246M: Sangbeom Kim <sbkim73@samsung.com>
6247L: linux-kernel@vger.kernel.org
6248S: Supported
6249F: drivers/mfd/sec*.c
6250F: drivers/regulator/s2m*.c
6251F: drivers/regulator/s5m*.c
6252F: drivers/rtc/rtc-sec.c
6253F: include/linux/mfd/samsung/
6254
Alan Coxca749e22011-03-18 13:56:14 +00006255SERIAL DRIVERS
6256M: Alan Cox <alan@linux.intel.com>
6257L: linux-serial@vger.kernel.org
6258S: Maintained
6259F: drivers/tty/serial
6260
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306261SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006262M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306263S: Maintained
6264F: include/linux/dw_dmac.h
6265F: drivers/dma/dw_dmac_regs.h
6266F: drivers/dma/dw_dmac.c
6267
Thomas Gleixner88606e82010-12-14 21:37:13 +01006268TIMEKEEPING, NTP
6269M: John Stultz <johnstul@us.ibm.com>
6270M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006271T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006272S: Supported
6273F: include/linux/clocksource.h
6274F: include/linux/time.h
6275F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006276F: kernel/time/clocksource.c
6277F: kernel/time/time*.c
6278F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006279F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006280
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006281TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006282M: Huang Shijie <shijie8@gmail.com>
6283M: Kang Yong <kangyong@telegent.com>
6284M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006285S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006286F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006287
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006289M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006291F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292
6293SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006294M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006295M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006296T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006298F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006299F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
Chen Liqin6bcf6732009-06-13 15:24:33 +08006301SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006302M: Chen Liqin <liqin.chen@sunplusct.com>
6303M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006304W: http://www.sunplusct.com
6305S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006306F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006307
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006309M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310L: linux-scsi@vger.kernel.org
6311W: http://www.kernel.dk
6312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
Roland Dreierfb50a832010-10-07 09:54:53 -07006315SCSI RDMA PROTOCOL (SRP) INITIATOR
6316M: David Dillow <dillowda@ornl.gov>
6317L: linux-rdma@vger.kernel.org
6318S: Supported
6319W: http://www.openfabrics.org
6320Q: http://patchwork.kernel.org/project/linux-rdma/list/
6321T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6322F: drivers/infiniband/ulp/srp/
6323F: include/scsi/srp.h
6324
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006326M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327L: linux-scsi@vger.kernel.org
6328W: http://www.torque.net/sg
6329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006330F: drivers/scsi/sg.c
6331F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332
6333SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006334M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006336T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6337T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6338T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006340F: drivers/scsi/
6341F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342
6343SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006344M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345L: linux-scsi@vger.kernel.org
6346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006347F: Documentation/scsi/st.txt
6348F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349
6350SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006351M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006352M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006353L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006354W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006356F: Documentation/networking/sctp.txt
6357F: include/linux/sctp.h
6358F: include/net/sctp/
6359F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360
6361SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006362M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006363S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006364F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006365F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006366F: drivers/watchdog/scx200_wdt.c
6367F: drivers/i2c/busses/scx200*
6368F: drivers/mtd/maps/scx200_docflash.c
6369F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006370
6371SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006372M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006374F: drivers/char/scx200_gpio.c
6375F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006376
6377SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006378M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006380F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381
Sascha Sommer6a369132008-07-15 14:21:29 +02006382SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006383M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006384L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006387
Randy Dunlape7839f22008-10-12 16:11:45 -07006388SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006389M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006390L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006391T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6392S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006393F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006394F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006395
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006396SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006397M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006398L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006399L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006401F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402
Ben Dooks0d1bb412009-06-14 13:52:37 +01006403SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006404M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006405L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006406S: Maintained
6407F: drivers/mmc/host/sdhci-s3c.c
6408
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006409SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006410M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006411L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006412L: linux-mmc@vger.kernel.org
6413S: Maintained
6414F: drivers/mmc/host/sdhci-spear.c
6415
James Morris8711cca2008-12-04 03:19:45 +11006416SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006417M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006418L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006419T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006420W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006421S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006422F: security/
James Morris8711cca2008-12-04 03:19:45 +11006423
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006425M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426S: Supported
6427
6428SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006430M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006431M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006432L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006433W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006434T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006436F: include/linux/selinux*
6437F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006438F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439
John Johansenc1c124e2010-07-29 14:48:09 -07006440APPARMOR SECURITY MODULE
6441M: John Johansen <john.johansen@canonical.com>
6442L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6443W: apparmor.wiki.kernel.org
6444T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6445S: Supported
6446F: security/apparmor/
6447
Jiri Slabycef2cf02007-05-08 00:31:45 -07006448SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006449M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006451F: drivers/misc/phantom.c
6452F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006453
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006454SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006455M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006457T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006459F: drivers/ata/
6460F: include/linux/ata.h
6461F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306463SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006464M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006465L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006466W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006467S: Supported
6468F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306469
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006470SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006471M: Sathya Perla <sathya.perla@emulex.com>
6472M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6473M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006474L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006475W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006476S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006477F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006478
Ben Hutchings8ceee662008-04-27 12:55:59 +01006479SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006480M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006481M: Ben Hutchings <bhutchings@solarflare.com>
6482L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006483S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006484F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006485
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006486SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006487M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006489F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006490
6491SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006492M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006493L: linux-ia64@vger.kernel.org
6494S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006495F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006496F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006497F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006498
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501L: linux-visws-devel@lists.sf.net
6502W: http://linux-visws.sf.net
6503S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006504F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505
Jack Steiner75312612008-08-15 00:40:42 -07006506SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006507M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006509F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006510
Len Brown6349d992009-08-14 15:07:14 -04006511SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006512M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006513L: sfi-devel@simplefirmware.org
6514W: http://simplefirmware.org/
6515T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006516S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006517F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006518F: drivers/sfi/
6519F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006520
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521SIMTEC EB110ATX (Chalice CATS)
6522P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006523P: Vincent Sanders <vince@simtec.co.uk>
6524M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525W: http://www.simtec.co.uk/products/EB110ATX/
6526S: Supported
6527
6528SIMTEC EB2410ITX (BAST)
6529P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006530P: Vincent Sanders <vince@simtec.co.uk>
6531M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532W: http://www.simtec.co.uk/products/EB2410ITX/
6533S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006534F: arch/arm/mach-s3c2410/mach-bast.c
6535F: arch/arm/mach-s3c2410/bast-ide.c
6536F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006538TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006539M: Sekhar Nori <nsekhar@ti.com>
6540M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306541L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306542T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006543Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006544S: Supported
6545F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006546F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006547
Francois Romieu92aab3c2005-07-30 13:11:18 +02006548SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006549M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006550L: netdev@vger.kernel.org
6551S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006552F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006553
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006555M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006557L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006559F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006561SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006562M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006563L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006565F: Documentation/i2c/busses/i2c-sis96x
6566F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006567
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006569M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006572F: Documentation/fb/sisfb.txt
6573F: drivers/video/sis/
6574F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575
6576SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578W: http://www.winischhofer.at/linuxsisusbvga.shtml
6579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006580F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006582SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006583M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006584M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006586L: linux-mm@kvack.org
6587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006588F: include/linux/sl?b*.h
6589F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006590
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006591SLEEPABLE READ-COPY UPDATE (SRCU)
6592M: Lai Jiangshan <laijs@cn.fujitsu.com>
6593M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6594W: http://www.rdrop.com/users/paulmck/RCU/
6595S: Supported
6596T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6597F: include/linux/srcu*
6598F: kernel/srcu*
6599
Casey Schaufler66372842012-05-23 18:34:52 -07006600SMACK SECURITY MODULE
6601M: Casey Schaufler <casey@schaufler-ca.com>
6602L: linux-security-module@vger.kernel.org
6603W: http://schaufler-ca.com
6604T: git git://git.gitorious.org/smack-next/kernel.git
6605S: Maintained
6606F: Documentation/security/Smack.txt
6607F: security/smack/
6608
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006610M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006611S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006612F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006614SMM665 HARDWARE MONITOR DRIVER
6615M: Guenter Roeck <linux@roeck-us.net>
6616L: lm-sensors@lm-sensors.org
6617S: Maintained
6618F: Documentation/hwmon/smm665
6619F: drivers/hwmon/smm665.c
6620
Steve Glendinning9df73052010-08-14 21:08:54 +02006621SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006622M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006623L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006624S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006625F: Documentation/hwmon/emc2103
6626F: drivers/hwmon/emc2103.c
6627
Hans de Goedea98d5062011-03-21 17:59:36 +01006628SMSC SCH5627 HARDWARE MONITOR DRIVER
6629M: Hans de Goede <hdegoede@redhat.com>
6630L: lm-sensors@lm-sensors.org
6631S: Supported
6632F: Documentation/hwmon/sch5627
6633F: drivers/hwmon/sch5627.c
6634
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006635SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006636M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006637L: lm-sensors@lm-sensors.org
6638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006639F: Documentation/hwmon/smsc47b397
6640F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006641
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006642SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006643M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006644L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006646F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006647F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006648
Steve Glendinning2cb37722008-12-11 20:54:30 -08006649SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006650M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006651L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006652S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006653F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006654
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006655SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006656M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006657L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006658S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006659F: drivers/video/smscufx.c
6660
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006661SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006662M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006663L: linux-altix@sgi.com
6664L: linux-ia64@vger.kernel.org
6665W: http://www.sgi.com/altix
6666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006667F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006668
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006669SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006670M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006671L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006672T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006673S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006674F: include/media/soc*
6675F: drivers/media/i2c/soc_camera/
6676F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006677
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006678SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006679M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006681F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006682
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006684M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006687F: drivers/md/
6688F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006691M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006692L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006694F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
Michael Buesch61e115a2007-09-18 15:12:50 -04006696SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006697M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006698L: netdev@vger.kernel.org
6699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006700F: drivers/ssb/
6701F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006702
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006704M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006705L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006706W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006708F: Documentation/laptops/sony-laptop.txt
6709F: drivers/char/sonypi.c
6710F: drivers/platform/x86/sony-laptop.c
6711F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006712
Alex Dubovbaf85322008-02-09 10:20:54 -08006713SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006714M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006715W: http://tifmxx.berlios.de/
6716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006717F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006718
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006720M: Jaroslav Kysela <perex@perex.cz>
6721M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006722L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006723W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006724T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006725T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006727F: Documentation/sound/
6728F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006729F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730
Mark Brownbd903bd2008-11-19 19:16:05 +00006731SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006732M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006733M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006734T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006735L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006736W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006737S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006738F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006739F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006740
Sam Ravnborg473321f2009-01-04 15:47:49 -08006741SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006742M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006744Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006745T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6746T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006748F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006749F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006750
David S. Miller6404fcc2010-03-16 01:00:17 -07006751SPARC SERIAL DRIVERS
6752M: "David S. Miller" <davem@davemloft.net>
6753L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006754T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6755T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006756S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006757F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006758F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006759F: drivers/tty/serial/sunhv.c
6760F: drivers/tty/serial/sunsab.c
6761F: drivers/tty/serial/sunsab.h
6762F: drivers/tty/serial/sunsu.c
6763F: drivers/tty/serial/sunzilog.c
6764F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006765
Christopher Li389325b2012-04-05 14:25:14 -07006766SPARSE CHECKER
6767M: "Christopher Li" <sparse@chrisli.org>
6768L: linux-sparse@vger.kernel.org
6769W: https://sparse.wiki.kernel.org/
6770T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6771T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6772S: Maintained
6773F: include/linux/compiler.h
6774
viresh kumarfc0c1952010-04-01 12:31:21 +01006775SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006776M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306777M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006778L: spear-devel@list.st.com
6779L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006780W: http://www.st.com/spear
6781S: Maintained
6782F: arch/arm/plat-spear/
6783
Viresh Kumar71e09a92012-04-20 22:39:48 +05306784SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006785M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306786M: Shiraz Hashim <shiraz.hashim@st.com>
6787L: spear-devel@list.st.com
6788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6789W: http://www.st.com/spear
6790S: Maintained
6791F: arch/arm/mach-spear13xx/
6792
viresh kumarfc0c1952010-04-01 12:31:21 +01006793SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006794M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306795M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006796L: spear-devel@list.st.com
6797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006798W: http://www.st.com/spear
6799S: Maintained
6800F: arch/arm/mach-spear3xx/
6801
6802SPEAR6XX MACHINE SUPPORT
6803M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306804M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006805M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006806L: spear-devel@list.st.com
6807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006808W: http://www.st.com/spear
6809S: Maintained
6810F: arch/arm/mach-spear6xx/
6811
6812SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006813M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006814L: spear-devel@list.st.com
6815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006816W: http://www.st.com/spear
6817S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306818F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006819
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006820SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006821M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006822L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006823Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006824T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006826F: Documentation/spi/
6827F: drivers/spi/
6828F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006829
Jim Lewis2752e402006-09-29 02:01:19 -07006830SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006831M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6832M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006833L: netdev@vger.kernel.org
6834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006835F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006836F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006837
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006838SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006839M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006840L: linuxppc-dev@lists.ozlabs.org
6841L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006842W: http://www.ibm.com/developerworks/power/cell/
6843S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006844F: Documentation/filesystems/spufs.txt
6845F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006846
Phillip Lougherfc555842009-01-05 08:46:29 +00006847SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006848M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006849L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6850W: http://squashfs.org.uk
6851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006852F: Documentation/filesystems/squashfs.txt
6853F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006854
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006856M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006858F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859
Linus Torvalds26e9a392008-10-17 09:50:12 -07006860STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006861M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006862L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006863S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006864
Linus Torvalds26e9a392008-10-17 09:50:12 -07006865STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006866M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006867T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006868L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006869S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006870F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006871
Joe Perchesc8c8b102011-07-05 09:42:12 -07006872STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6873M: Henk de Groot <pe1dnn@amsat.org>
6874S: Odd Fixes
6875F: drivers/staging/wlags49_h2/
6876F: drivers/staging/wlags49_h25/
6877
Joe Perchesc9555152011-07-05 09:42:01 -07006878STAGING - ASUS OLED
6879M: Jakub Schmidtke <sjakub@gmail.com>
6880S: Odd Fixes
6881F: drivers/staging/asus_oled/
6882
Joe Perchesebd3d012011-07-05 09:42:02 -07006883STAGING - COMEDI
6884M: Ian Abbott <abbotti@mev.co.uk>
6885M: Mori Hess <fmhess@users.sourceforge.net>
6886S: Odd Fixes
6887F: drivers/staging/comedi/
6888
Joe Perches8ca572c2011-07-05 09:42:03 -07006889STAGING - CRYSTAL HD VIDEO DECODER
6890M: Naren Sankar <nsankar@broadcom.com>
6891M: Jarod Wilson <jarod@wilsonet.com>
6892M: Scott Davilla <davilla@4pi.com>
6893M: Manu Abraham <abraham.manu@gmail.com>
6894S: Odd Fixes
6895F: drivers/staging/crystalhd/
6896
Joe Perches0f16ffc2011-07-05 09:42:04 -07006897STAGING - ECHO CANCELLER
6898M: Steve Underwood <steveu@coppice.org>
6899M: David Rowe <david@rowetel.com>
6900S: Odd Fixes
6901F: drivers/staging/echo/
6902
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006903STAGING - ET131X NETWORK DRIVER
6904M: Mark Einon <mark.einon@gmail.com>
6905S: Odd Fixes
6906F: drivers/staging/et131x/
6907
Joe Perchesa0138162011-07-05 15:21:34 -07006908STAGING - FLARION FT1000 DRIVERS
6909M: Marek Belisko <marek.belisko@gmail.com>
6910S: Odd Fixes
6911F: drivers/staging/ft1000/
6912
Joe Perchesec3fab92011-07-05 09:42:05 -07006913STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6914M: David Täht <d@teklibre.com>
6915S: Odd Fixes
6916F: drivers/staging/frontier/
6917
Joe Perches6c1bb422011-07-05 09:42:07 -07006918STAGING - INDUSTRIAL IO
6919M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006920L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006921S: Odd Fixes
6922F: drivers/staging/iio/
6923
Joe Perchesa0138162011-07-05 15:21:34 -07006924STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6925M: Jarod Wilson <jarod@wilsonet.com>
6926W: http://www.lirc.org/
6927S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006928F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006929
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006930STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006931M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006932M: Marc Dietrich <marvin24@gmx.de>
6933L: ac100@lists.launchpad.net (moderated for non-subscribers)
6934S: Maintained
6935F: drivers/staging/nvec/
6936
Joe Perchesa0138162011-07-05 15:21:34 -07006937STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6938M: Andres Salomon <dilinger@queued.net>
6939M: Chris Ball <cjb@laptop.org>
6940M: Jon Nettleton <jon.nettleton@gmail.com>
6941W: http://wiki.laptop.org/go/DCON
6942S: Odd Fixes
6943F: drivers/staging/olpc_dcon/
6944
Chris Kelly94cfdd12012-03-14 10:55:42 +00006945STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006946M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006947M: Chris Kelly <ckelly@ozmodevices.com>
6948S: Maintained
6949F: drivers/staging/ozwpan/
6950
Joe Perchesa0138162011-07-05 15:21:34 -07006951STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006952M: Willy Tarreau <willy@meta-x.org>
6953S: Odd Fixes
6954F: drivers/staging/panel/
6955
Joe Perchesa0138162011-07-05 15:21:34 -07006956STAGING - REALTEK RTL8712U DRIVERS
6957M: Larry Finger <Larry.Finger@lwfinger.net>
6958M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6959S: Odd Fixes
6960F: drivers/staging/rtl8712/
6961
Joe Perches9629fa82011-07-05 09:42:09 -07006962STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6963M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6964S: Odd Fixes
6965F: drivers/staging/sm7xx/
6966
Joe Perchesa0138162011-07-05 15:21:34 -07006967STAGING - SOFTLOGIC 6x10 MPEG CODEC
6968M: Ben Collins <bcollins@bluecherry.net>
6969S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006970F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006971
6972STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6973M: William Hubbs <w.d.hubbs@gmail.com>
6974M: Chris Brannon <chris@the-brannons.com>
6975M: Kirk Reiser <kirk@braille.uwo.ca>
6976M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6977L: speakup@braille.uwo.ca
6978W: http://www.linux-speakup.org/
6979S: Odd Fixes
6980F: drivers/staging/speakup/
6981
6982STAGING - TI DSP BRIDGE DRIVERS
6983M: Omar Ramirez Luna <omar.ramirez@ti.com>
6984S: Odd Fixes
6985F: drivers/staging/tidspbridge/
6986
Joe Perchesa0138162011-07-05 15:21:34 -07006987STAGING - USB ENE SM/MS CARD READER DRIVER
6988M: Al Cho <acho@novell.com>
6989S: Odd Fixes
6990F: drivers/staging/keucr/
6991
Joe Perchesb3e871c2011-07-05 09:42:10 -07006992STAGING - VIA VT665X DRIVERS
6993M: Forest Bond <forest@alittletooquiet.net>
6994S: Odd Fixes
6995F: drivers/staging/vt665?/
6996
Joe Perches81a9a522011-07-05 09:42:11 -07006997STAGING - WINBOND IS89C35 WLAN USB DRIVER
6998M: Pavel Machek <pavel@ucw.cz>
6999S: Odd Fixes
7000F: drivers/staging/winbond/
7001
Joe Perches709bcb02011-07-05 09:42:13 -07007002STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007003M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007004S: Odd Fixes
7005F: drivers/staging/xgifb/
7006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007008M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007009S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007010F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007012SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007013M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007014W: http://sammy.net/sun3/
7015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007016F: arch/m68k/kernel/*sun3*
7017F: arch/m68k/sun3*/
7018F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007019F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007020
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007021SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007022M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007023L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007025Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007026T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007027S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007028F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007029F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007030F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007032SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007033M: Len Brown <len.brown@intel.com>
7034M: Pavel Machek <pavel@ucw.cz>
7035M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007036L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007038F: Documentation/power/
7039F: arch/x86/kernel/acpi/
7040F: drivers/base/power/
7041F: kernel/power/
7042F: include/linux/suspend.h
7043F: include/linux/freezer.h
7044F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007045
7046SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007047M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048L: linux-video@atrey.karlin.mff.cuni.cz
7049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007050F: Documentation/svga.txt
7051F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007053SWIOTLB SUBSYSTEM
7054M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7055L: linux-kernel@vger.kernel.org
7056S: Supported
7057F: lib/swiotlb.c
7058F: arch/*/kernel/pci-swiotlb.c
7059F: include/linux/swiotlb.h
7060
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007062M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007064F: Documentation/filesystems/sysv-fs.txt
7065F: fs/sysv/
7066F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007068TARGET SUBSYSTEM
7069M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7070L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007071L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007072L: http://groups.google.com/group/linux-iscsi-target-dev
7073W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007074T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007075S: Supported
7076F: drivers/target/
7077F: include/target/
7078F: Documentation/target/
7079
Alan Cox4e688522008-04-30 00:52:11 -07007080TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007081M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007083F: Documentation/accounting/taskstats*
7084F: include/linux/taskstats*
7085F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007086
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007087TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007088M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007089L: netdev@vger.kernel.org
7090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007091F: include/linux/pkt_cls.h
7092F: include/net/pkt_cls.h
7093F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007094
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007095TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007096M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7097M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007098W: http://tcp-lp-mod.sourceforge.net/
7099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007100F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007101
Antti Palosaari91952bc2012-10-01 12:28:46 -03007102TDA10071 MEDIA DRIVER
7103M: Antti Palosaari <crope@iki.fi>
7104L: linux-media@vger.kernel.org
7105W: http://linuxtv.org/
7106W: http://palosaari.fi/linux/
7107Q: http://patchwork.linuxtv.org/project/linux-media/list/
7108T: git git://linuxtv.org/anttip/media_tree.git
7109S: Maintained
7110F: drivers/media/dvb-frontends/tda10071*
7111
7112TDA18212 MEDIA DRIVER
7113M: Antti Palosaari <crope@iki.fi>
7114L: linux-media@vger.kernel.org
7115W: http://linuxtv.org/
7116W: http://palosaari.fi/linux/
7117Q: http://patchwork.linuxtv.org/project/linux-media/list/
7118T: git git://linuxtv.org/anttip/media_tree.git
7119S: Maintained
7120F: drivers/media/tuners/tda18212*
7121
7122TDA18218 MEDIA DRIVER
7123M: Antti Palosaari <crope@iki.fi>
7124L: linux-media@vger.kernel.org
7125W: http://linuxtv.org/
7126W: http://palosaari.fi/linux/
7127Q: http://patchwork.linuxtv.org/project/linux-media/list/
7128T: git git://linuxtv.org/anttip/media_tree.git
7129S: Maintained
7130F: drivers/media/tuners/tda18218*
7131
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007132TDA18271 MEDIA DRIVER
7133M: Michael Krufky <mkrufky@linuxtv.org>
7134L: linux-media@vger.kernel.org
7135W: http://linuxtv.org/
7136W: http://github.com/mkrufky
7137Q: http://patchwork.linuxtv.org/project/linux-media/list/
7138T: git git://linuxtv.org/mkrufky/tuners.git
7139S: Maintained
7140F: drivers/media/tuners/tda18271*
7141
Michael Krufkye48307a2012-10-02 00:56:33 -03007142TDA827x MEDIA DRIVER
7143M: Michael Krufky <mkrufky@linuxtv.org>
7144L: linux-media@vger.kernel.org
7145W: http://linuxtv.org/
7146W: http://github.com/mkrufky
7147Q: http://patchwork.linuxtv.org/project/linux-media/list/
7148T: git git://linuxtv.org/mkrufky/tuners.git
7149S: Maintained
7150F: drivers/media/tuners/tda8290.*
7151
Michael Krufky66cf9212012-10-02 00:56:28 -03007152TDA8290 MEDIA DRIVER
7153M: Michael Krufky <mkrufky@linuxtv.org>
7154L: linux-media@vger.kernel.org
7155W: http://linuxtv.org/
7156W: http://github.com/mkrufky
7157Q: http://patchwork.linuxtv.org/project/linux-media/list/
7158T: git git://linuxtv.org/mkrufky/tuners.git
7159S: Maintained
7160F: drivers/media/tuners/tda8290.*
7161
Jiri Pirko3d249d42011-11-11 22:16:48 +00007162TEAM DRIVER
7163M: Jiri Pirko <jpirko@redhat.com>
7164L: netdev@vger.kernel.org
7165S: Supported
7166F: drivers/net/team/
7167F: include/linux/if_team.h
7168
Erik Gilling84b94142010-06-09 15:35:53 -07007169TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007170M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007171L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007172Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7173T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007174S: Supported
7175F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007176F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007177F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007178
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007179TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007180M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007181L: netdev@vger.kernel.org
7182S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007183F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007184
Alan Cox4e688522008-04-30 00:52:11 -07007185Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007186M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007187S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007188F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007189
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007190TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007191M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007192M: Max Filippov <jcmvbkbc@gmail.com>
7193L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007195F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007196
7197THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007198M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007199L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007200L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007201W: http://ibm-acpi.sourceforge.net
7202W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007203T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007205F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007206
Alex Dubov4020f2d2006-10-04 02:15:37 -07007207TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007208M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007210F: drivers/misc/tifm*
7211F: drivers/mmc/host/tifm_sd.c
7212F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007213
M R Swami Reddy152ad442012-04-02 20:02:31 +05307214TI LM49xxx FAMILY ASoC CODEC DRIVERS
7215M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307216M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307217L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7218S: Maintained
7219F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307220F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307221
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007222TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007223M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007224L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7225S: Maintained
7226F: sound/soc/codecs/twl4030*
7227
Luciano Coelho90921012011-11-20 21:40:41 +02007228TI WILINK WIRELESS DRIVERS
7229M: Luciano Coelho <coelho@ti.com>
7230L: linux-wireless@vger.kernel.org
7231W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7232W: http://wireless.kernel.org/en/users/Drivers/wl1251
7233T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7234S: Maintained
7235F: drivers/net/wireless/ti/
7236F: include/linux/wl12xx.h
7237
Per Lidene86eaa32006-01-12 16:45:18 +01007238TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007239M: Jon Maloy <jon.maloy@ericsson.com>
7240M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007241L: netdev@vger.kernel.org (core kernel code)
7242L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007243W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007245F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007246F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007247
Chris Metcalf867e3592010-05-28 23:09:12 -04007248TILE ARCHITECTURE
7249M: Chris Metcalf <cmetcalf@tilera.com>
7250W: http://www.tilera.com/scm/
7251S: Supported
7252F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007253F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007254F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007255F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007256
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007258M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007259L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260W: http://sourceforge.net/projects/tlan/
7261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007262F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007263F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007265TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007266M: Kentaro Takeda <takedakn@nttdata.co.jp>
7267M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007268L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7269L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007270L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7271L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7272W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007273T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007275F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007276
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007277TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007278M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007279L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007280S: Maintained
7281F: drivers/platform/x86/topstar-laptop.c
7282
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007284L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007285S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007286F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287
7288TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007289M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007290L: tlinux-users@tce.toshiba-dme.co.jp
7291W: http://www.buzzard.org.uk/toshiba/
7292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007293F: drivers/char/toshiba.c
7294F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295
Pierre Ossmand719f902009-03-24 21:06:09 +01007296TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007297M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007298M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007299L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007300S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007301F: drivers/mmc/host/tmio_mmc*
7302F: drivers/mmc/host/sh_mobile_sdhi.c
7303F: include/linux/mmc/tmio.h
7304F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007305
Hugh Dickins98f32602009-05-21 20:33:58 +01007306TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007307M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007308L: linux-mm@kvack.org
7309S: Maintained
7310F: include/linux/shmem_fs.h
7311F: mm/shmem.c
7312
Alan Cox4e688522008-04-30 00:52:11 -07007313TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007314M: Kent Yoder <key@linux.vnet.ibm.com>
7315M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007316W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007317M: Marcel Selhorst <tpmdd@selhorst.net>
7318M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007319W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007320L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007322F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007323
Joe Perchesd6f005a2009-10-26 16:49:40 -07007324TRACING
7325M: Steven Rostedt <rostedt@goodmis.org>
7326M: Frederic Weisbecker <fweisbec@gmail.com>
7327M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007328T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007329S: Maintained
7330F: Documentation/trace/ftrace.txt
7331F: arch/*/*/*/ftrace.h
7332F: arch/*/kernel/ftrace.c
7333F: include/*/ftrace.h
7334F: include/linux/trace*.h
7335F: include/trace/
7336F: kernel/trace/
7337
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007339M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007340T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007342K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
Alan Cox4e688522008-04-30 00:52:11 -07007344TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007345M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7346S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007347T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007348F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007349F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007350F: include/linux/serial_core.h
7351F: include/linux/serial.h
7352F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007353
Antti Palosaari91952bc2012-10-01 12:28:46 -03007354TUA9001 MEDIA DRIVER
7355M: Antti Palosaari <crope@iki.fi>
7356L: linux-media@vger.kernel.org
7357W: http://linuxtv.org/
7358W: http://palosaari.fi/linux/
7359Q: http://patchwork.linuxtv.org/project/linux-media/list/
7360T: git git://linuxtv.org/anttip/media_tree.git
7361S: Maintained
7362F: drivers/media/tuners/tua9001*
7363
Grant Grundler740db6d2008-02-17 11:53:49 -07007364TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007365M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007366L: netdev@vger.kernel.org
7367S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007368F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369
7370TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007371M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372L: vtun@office.satix.net
7373W: http://vtun.sourceforge.net/tun
7374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007375F: Documentation/networking/tuntap.txt
7376F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007378TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007379M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007381F: drivers/tc/
7382F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007383
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007385M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386L: linux-scsi@vger.kernel.org
7387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007388F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007390UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007391M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007392M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007393L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007394T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007395W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007397F: Documentation/filesystems/ubifs.txt
7398F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007399
Alan Coxcc2020e2008-05-19 14:21:51 +01007400UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007401M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007402W: http://www.uclinux.org/
7403L: uclinux-dev@uclinux.org (subscribers-only)
7404S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007405F: arch/m68k/*/*_no.*
7406F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007407
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007408UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007409M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007410W: http://uclinux-h8.sourceforge.jp/
7411S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007412F: arch/h8300/
7413F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007414F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007415
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007417M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007419F: Documentation/filesystems/udf.txt
7420F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421
Alan Coxcc2020e2008-05-19 14:21:51 +01007422UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007423M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007425F: Documentation/filesystems/ufs.txt
7426F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007427
David Herrmann0a09d3a2012-06-10 15:16:28 +02007428UHID USERSPACE HID IO DRIVER:
7429M: David Herrmann <dh.herrmann@googlemail.com>
7430L: linux-input@vger.kernel.org
7431S: Maintained
7432F: drivers/hid/uhid.c
7433F: include/linux/uhid.h
7434
David Vrabel18332a82008-09-17 16:34:44 +01007435ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007436L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007437S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007438F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007439F: include/linux/uwb.h
7440F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007441
GuanXuetaob31d8272011-01-16 00:35:49 +08007442UNICORE32 ARCHITECTURE:
7443M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7444W: http://mprc.pku.edu.cn/~guanxuetao/linux
7445S: Maintained
7446T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7447F: arch/unicore32/
7448
Tony Finchd8379ab2009-11-27 15:50:30 +00007449UNIFDEF
7450M: Tony Finch <dot@dotat.at>
7451W: http://dotat.at/prog/unifdef
7452S: Maintained
7453F: scripts/unifdef.c
7454
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007456M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457W: http://www.kernel.dk
7458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007459F: Documentation/cdrom/
7460F: drivers/cdrom/cdrom.c
7461F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307463UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7464M: Vinayak Holikatti <vinholikatti@gmail.com>
7465M: Santosh Y <santoshsy@gmail.com>
7466L: linux-scsi@vger.kernel.org
7467S: Supported
7468F: Documentation/scsi/ufs.txt
7469F: drivers/scsi/ufs/
7470
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007471UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007472M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007473W: http://www.linux-mtd.infradead.org/
7474L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007475T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007476S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007477F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007478F: include/linux/mtd/ubi.h
7479F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007480
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007481UNSORTED BLOCK IMAGES (UBI) Fastmap
7482M: Richard Weinberger <richard@nod.at>
7483L: linux-mtd@lists.infradead.org
7484S: Maintained
7485F: drivers/mtd/ubi/fastmap.c
7486
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007488M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007489L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007491F: Documentation/usb/acm.txt
7492F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007493
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007494USB ATTACHED SCSI
7495M: Matthew Wilcox <willy@linux.intel.com>
7496M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7497L: linux-usb@vger.kernel.org
7498L: linux-scsi@vger.kernel.org
7499S: Supported
7500F: drivers/usb/storage/uas.c
7501
Linus Torvalds1da177e2005-04-16 15:20:36 -07007502USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007503M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007504L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007506F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007509M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007510L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007512F: drivers/net/usb/cdc_*.c
7513F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007515USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007516M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007517L: linux-usb@vger.kernel.org
7518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007519F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007520
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007521USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007522M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007523L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007524W: http://www.linux-usb.org/usbnet
7525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007526F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007527
Alan Coxcc2020e2008-05-19 14:21:51 +01007528USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007529M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007530L: rio500-users@lists.sourceforge.net
7531W: http://rio500.sourceforge.net
7532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007533F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007534
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007536M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007537L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007539F: Documentation/usb/ehci.txt
7540F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007541
David Brownell69ae9e32006-11-14 02:03:31 -08007542USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007543M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007544L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007545W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007546T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007548F: drivers/usb/gadget/
7549F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007550
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007551USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007552M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007553L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007554T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007556F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007557F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558
matt mooney857aab32011-06-17 15:50:46 -07007559USB/IP DRIVERS
7560M: Matt Mooney <mfm@muteddisk.com>
7561L: linux-usb@vger.kernel.org
7562S: Maintained
7563F: drivers/staging/usbip/
7564
Olav Kongas959eea22005-11-03 17:38:14 +02007565USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007566M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007567L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007569F: drivers/usb/host/isp116x*
7570F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007571
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007573M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007574L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007576F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577
7578USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007579M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007580L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007581L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582S: Maintained
7583W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007584F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
Clemens Ladischaf399172011-01-10 16:32:54 +01007586USB MIDI DRIVER
7587M: Clemens Ladisch <clemens@ladisch.de>
7588L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7589T: git git://git.alsa-project.org/alsa-kernel.git
7590S: Maintained
7591F: sound/usb/midi.*
7592
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007594M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007595L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007597F: Documentation/usb/ohci.txt
7598F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599
Matthias Urlichsba460e42005-07-14 00:33:47 -07007600USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007601M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007602L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007604F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007605
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007607M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007608L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007609L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610W: http://pegasus2.sourceforge.net/
7611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007612F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
Felipe Balbid3ad5582012-05-21 16:24:49 +03007614USB PHY LAYER
7615M: Felipe Balbi <balbi@ti.com>
7616L: linux-usb@vger.kernel.org
7617T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7618S: Maintained
7619F: drivers/usb/phy/
7620F: drivers/usb/otg/
7621
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007622USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007623M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007624L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007626F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007627
7628USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007629M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007630L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007631L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632W: http://pegasus2.sourceforge.net/
7633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007634F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Alan Cox4e688522008-04-30 00:52:11 -07007636USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007637M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007638L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007640F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007641
7642USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007643M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007644L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007645S: Maintained
7646W: http://geocities.com/i0xox0i
7647W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007648F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007649
Linus Torvalds1da177e2005-04-16 15:20:36 -07007650USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007651M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007654F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007655
7656USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007657M: Peter Berger <pberger@brimson.com>
7658M: Al Borchers <alborchers@steinerpoint.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/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662
7663USB SERIAL 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: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007667F: Documentation/usb/usb-serial.txt
7668F: drivers/usb/serial/generic.c
7669F: drivers/usb/serial/usb-serial.c
7670F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007673M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007674L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007676F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
7678USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007679M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007680L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007682F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683
7684USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007685M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007686L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687W: http://www.connecttech.com
7688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007689F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007691USB SMSC75XX ETHERNET DRIVER
7692M: Steve Glendinning <steve.glendinning@shawell.net>
7693L: netdev@vger.kernel.org
7694S: Maintained
7695F: drivers/net/usb/smsc75xx.*
7696
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007697USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007698M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007699L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007701F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007702
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007703USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007704M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007705L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007706L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007707T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708W: http://www.linux-projects.org
7709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007710F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007711F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712
7713USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007714M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007715L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007717T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007719F: Documentation/usb/
7720F: drivers/net/usb/
7721F: drivers/usb/
7722F: include/linux/usb.h
7723F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724
7725USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007726M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007727L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007729F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730
David Brownell69ae9e32006-11-14 02:03:31 -08007731USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007732M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007733L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007734W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007736F: drivers/net/usb/usbnet.c
7737F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007739USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007740M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007741L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007742L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007743T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007744W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007745S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007746F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007748USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007749M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007750L: linux-wireless@vger.kernel.org
7751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007752F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007753
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007754USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007755M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007756L: linux-usb@vger.kernel.org
7757S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007758F: drivers/usb/host/xhci*
7759F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007760
Linus Torvalds1da177e2005-04-16 15:20:36 -07007761USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007762L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007764S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007765F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007767USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007768M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007769L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007770L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007771T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007772W: http://royale.zerezo.com/zr364xx/
7773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007774F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007775F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007776
Randy Dunlape7839f22008-10-12 16:11:45 -07007777USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007778M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007779M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780L: user-mode-linux-devel@lists.sourceforge.net
7781L: user-mode-linux-user@lists.sourceforge.net
7782W: http://user-mode-linux.sourceforge.net
7783S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007784F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007785F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007786F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007787F: fs/hostfs/
7788F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007789
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007790USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007791M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007792M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007794F: Documentation/DocBook/uio-howto.tmpl
7795F: drivers/uio/
7796F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007797
Karel Zak256cccb2012-06-01 10:13:09 +02007798UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007799M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007800L: util-linux@vger.kernel.org
7801W: http://en.wikipedia.org/wiki/Util-linux
7802T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007803S: Maintained
7804
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007805UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007806M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007807L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007808W: http://dev.gentoo.org/~spock/projects/uvesafb/
7809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007810F: Documentation/fb/uvesafb.txt
7811F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007812
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007813VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007814M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007816F: Documentation/filesystems/vfat.txt
7817F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818
Alex Williamsoncba33452012-07-31 08:16:22 -06007819VFIO DRIVER
7820M: Alex Williamson <alex.williamson@redhat.com>
7821L: kvm@vger.kernel.org
7822S: Maintained
7823F: Documentation/vfio.txt
7824F: drivers/vfio/
7825F: include/linux/vfio.h
7826
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007827VIDEOBUF2 FRAMEWORK
7828M: Pawel Osciak <pawel@osciak.com>
7829M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007830M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007831L: linux-media@vger.kernel.org
7832S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007833F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007834F: include/media/videobuf2-*
7835
Amit Shah9a824462010-03-23 18:23:09 +05307836VIRTIO CONSOLE DRIVER
7837M: Amit Shah <amit.shah@redhat.com>
7838L: virtualization@lists.linux-foundation.org
7839S: Maintained
7840F: drivers/char/virtio_console.c
7841F: include/linux/virtio_console.h
7842
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307843VIRTIO CORE, NET AND BLOCK DRIVERS
7844M: Rusty Russell <rusty@rustcorp.com.au>
7845M: "Michael S. Tsirkin" <mst@redhat.com>
7846L: virtualization@lists.linux-foundation.org
7847S: Maintained
7848F: drivers/virtio/
7849F: drivers/net/virtio_net.c
7850F: drivers/block/virtio_blk.c
7851F: include/linux/virtio_*.h
7852
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007853VIRTIO HOST (VHOST)
7854M: "Michael S. Tsirkin" <mst@redhat.com>
7855L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007856L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007857L: netdev@vger.kernel.org
7858S: Maintained
7859F: drivers/vhost/
7860F: include/linux/vhost.h
7861
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007863M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007865F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866
Jean Delvare32c0a522005-09-22 21:47:58 +02007867VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007868M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007869L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007871F: Documentation/i2c/busses/i2c-viapro
7872F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007873
Harald Weltef0bf7f62009-06-17 20:22:39 +02007874VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007875M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007876M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007877S: Maintained
7878F: drivers/mmc/host/via-sdmmc.c
7879
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007880VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007881M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007882L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007883S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007884F: include/linux/via-core.h
7885F: include/linux/via-gpio.h
7886F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007887F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007888
Francois Romieu01f20732007-01-26 00:57:17 -08007889VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007890M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007891L: netdev@vger.kernel.org
7892S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007893F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894
Patrick McHardybe7f8272007-10-23 20:26:36 -07007895VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007896M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007897L: netdev@vger.kernel.org
7898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007899F: drivers/net/macvlan.c
7900F: include/linux/if_*vlan.h
7901F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007902
Florian Fainelli55e331c2009-06-16 15:33:53 -07007903VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007904M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007905L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007906S: Maintained
7907F: drivers/vlynq/vlynq.c
7908F: include/linux/vlynq.h
7909
Martyn Welch390beae2012-05-03 17:52:36 +01007910VME SUBSYSTEM
7911M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007912M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007913M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7914L: devel@driverdev.osuosl.org
7915S: Maintained
7916T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7917F: Documentation/vme_api.txt
7918F: drivers/staging/vme/
7919F: drivers/vme/
7920F: include/linux/vme*
7921
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007922VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007923M: Shreyas Bhatewara <sbhatewara@vmware.com>
7924M: "VMware, Inc." <pv-drivers@vmware.com>
7925L: netdev@vger.kernel.org
7926S: Maintained
7927F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007928
Alok Kataria851b1642009-10-13 14:51:05 -07007929VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007930M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007931M: VMware PV-Drivers <pv-drivers@vmware.com>
7932L: linux-scsi@vger.kernel.org
7933S: Maintained
7934F: drivers/scsi/vmw_pvscsi.c
7935F: drivers/scsi/vmw_pvscsi.h
7936
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007937VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007938M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007939M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007940W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007941W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007942T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007943S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007944F: drivers/regulator/
7945F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007946
Juerg Haefligerab413192006-09-24 20:54:04 +02007947VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007948M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007949L: lm-sensors@lm-sensors.org
7950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007951F: Documentation/hwmon/vt1211
7952F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007953
Roger Lucas1de9e372005-11-26 20:20:05 +01007954VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007955M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007956L: lm-sensors@lm-sensors.org
7957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007958F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007959
Tony Olech88095e72011-05-14 16:48:13 -04007960VUB300 USB to SDIO/SD/MMC bridge chip
7961M: Tony Olech <tony.olech@elandigitalsystems.com>
7962L: linux-mmc@vger.kernel.org
7963L: linux-usb@vger.kernel.org
7964S: Supported
7965F: drivers/mmc/host/vub300.c
7966
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007968M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007970F: Documentation/w1/
7971F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972
Charles Spirakis13927072006-07-05 18:05:15 +02007973W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007974M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007975L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007977F: Documentation/hwmon/w83791d
7978F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007979
Rudolf Marek61db0112006-12-12 18:18:30 +01007980W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007981M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007982L: lm-sensors@lm-sensors.org
7983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007984F: Documentation/hwmon/w83793
7985F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007986
Jean Delvaree3760b42010-10-28 20:31:49 +02007987W83795 HARDWARE MONITORING DRIVER
7988M: Jean Delvare <khali@linux-fr.org>
7989L: lm-sensors@lm-sensors.org
7990S: Maintained
7991F: drivers/hwmon/w83795.c
7992
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007994M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007996F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007998WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007999M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008000L: linux-watchdog@vger.kernel.org
8001W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008002T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008004F: Documentation/watchdog/
8005F: drivers/watchdog/
8006F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008009M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010L: linux-scsi@vger.kernel.org
8011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008012F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008013
David Herrmannb22e00f2011-09-06 13:50:40 +02008014WIIMOTE HID DRIVER
8015M: David Herrmann <dh.herrmann@googlemail.com>
8016L: linux-input@vger.kernel.org
8017S: Maintained
8018F: drivers/hid/hid-wiimote*
8019
David Härdemane258b802009-09-21 17:04:53 -07008020WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008021M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008022S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008023F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008024
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008025WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008026M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008027M: linux-wimax@intel.com
8028L: wimax@linuxwimax.org
8029S: Supported
8030W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008031F: Documentation/wimax/README.wimax
8032F: include/linux/wimax.h
8033F: include/linux/wimax/debug.h
8034F: include/net/wimax.h
8035F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008036
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008037WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008038M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008040F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008041
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008043M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008044L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008045W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008047F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048
Mark Brownfebf1df2008-04-02 00:51:09 -04008049WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008050M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8051M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008052L: linux-input@vger.kernel.org
8053T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8054W: http://opensource.wolfsonmicro.com/node/7
8055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008056F: drivers/input/touchscreen/*wm97*
8057F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008058
Mark Brown055bcbc2010-08-13 14:18:12 +01008059WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008060M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008061L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008062T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008063T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008064W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008065S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008066F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008067F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008068F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008069F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008070F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008071F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008072F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008073F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008074F: drivers/input/misc/wm831x-on.c
8075F: drivers/input/touchscreen/wm831x-ts.c
8076F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008077F: drivers/mfd/arizona*
8078F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008079F: drivers/power/wm83*.c
8080F: drivers/rtc/rtc-wm83*.c
8081F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008082F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008083F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008084F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008085F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008086F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008087F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008088F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008089F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008090F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008091F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008092
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008093WORKQUEUE
8094M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008095T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8096S: Maintained
8097F: include/linux/workqueue.h
8098F: kernel/workqueue.c
8099F: Documentation/workqueue.txt
8100
Linus Torvalds1da177e2005-04-16 15:20:36 -07008101X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008102M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008104S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008105F: Documentation/networking/x25*
8106F: include/net/x25*
8107F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008109X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008110M: Thomas Gleixner <tglx@linutronix.de>
8111M: Ingo Molnar <mingo@redhat.com>
8112M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008113M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008114T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008116F: Documentation/x86/
8117F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008118
Matthew Garrettd0944852010-02-11 10:40:13 -05008119X86 PLATFORM DRIVERS
8120M: Matthew Garrett <mjg@redhat.com>
8121L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008122T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008123S: Maintained
8124F: drivers/platform/x86
8125
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008126X86 MCE INFRASTRUCTURE
8127M: Tony Luck <tony.luck@intel.com>
8128M: Borislav Petkov <bp@amd64.org>
8129L: linux-edac@vger.kernel.org
8130S: Maintained
8131F: arch/x86/kernel/cpu/mcheck/*
8132
Ian Campbellc4468082011-04-27 15:26:46 -07008133XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008134M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008135M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008136L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8137L: virtualization@lists.linux-foundation.org
8138S: Supported
8139F: arch/x86/xen/
8140F: drivers/*/xen-*front.c
8141F: drivers/xen/
8142F: arch/x86/include/asm/xen/
8143F: include/xen/
8144
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008145XEN HYPERVISOR ARM
8146M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8147L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8148S: Supported
8149F: arch/arm/xen/
8150F: arch/arm/include/asm/xen/
8151
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008152XEN NETWORK BACKEND DRIVER
8153M: Ian Campbell <ian.campbell@citrix.com>
8154L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8155L: netdev@vger.kernel.org
8156S: Supported
8157F: drivers/net/xen-netback/*
8158
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008159XEN PCI SUBSYSTEM
8160M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008161L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008162S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008163F: arch/x86/pci/*xen*
8164F: drivers/pci/*xen*
8165
8166XEN SWIOTLB SUBSYSTEM
8167M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008168L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008169S: Supported
8170F: arch/x86/xen/*swiotlb*
8171F: drivers/xen/*swiotlb*
8172
Linus Torvalds1da177e2005-04-16 15:20:36 -07008173XFS FILESYSTEM
8174P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008175M: Ben Myers <bpm@sgi.com>
8176M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008177M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008178L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008180T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008182F: Documentation/filesystems/xfs.txt
8183F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008184
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008185XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008186M: Anirudha Sarangi <anirudh@xilinx.com>
8187M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008188S: Maintained
8189F: drivers/net/ethernet/xilinx/xilinx_axienet*
8190
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008191XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008192M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008193W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008195F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008196
Peter Korsgaard238b8722006-12-06 20:35:17 -08008197XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008198M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008199L: linux-serial@vger.kernel.org
8200S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008201F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008202
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008204M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205L: linux-hams@vger.kernel.org
8206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008207F: drivers/net/hamradio/yam*
8208F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209
Henkaf64a5e2005-10-12 15:02:56 +02008210YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008211M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008212L: usbb2k-api-dev@nongnu.org
8213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008214F: Documentation/input/yealink.txt
8215F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008216
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008218M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219W: http://yaina.de/jreuter/
8220W: http://www.qsl.net/dl1bke/
8221L: linux-hams@vger.kernel.org
8222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008223F: Documentation/networking/z8530drv.txt
8224F: drivers/net/hamradio/*scc.c
8225F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008227ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008228M: Daniel Drake <dsd@gentoo.org>
8229M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008230W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008231L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008232L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008234F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008235
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008237L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008238L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008240T: Mercurial http://linuxtv.org/hg/v4l-dvb
8241S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008242F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008243
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008244ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008245M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008246S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008247F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008248
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008250M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008251L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008252Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008253T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008255F: *
8256F: */