blob: e45b18abe0b10882405cd163b9282224000f5675 [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 Whitcroft0a920b5b2007-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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-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
Alexander Shiyan386ab512012-11-17 17:57:24 +0400702ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
703M: Alexander Shiyan <shc_work@mail.ru>
704L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
705S: Odd Fixes
706F: arch/arm/mach-clps711x/
707
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800708ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100709M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000710M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700711L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800712S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100713F: arch/arm/mach-ep93xx/
714F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800715
716ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700717M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700718L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800719S: Maintained
720
Russell Kingd4275352009-04-16 14:05:27 +0100721ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700722M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700724S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100725F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700726F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100727
Mike Rapoportd48134e2008-08-20 09:03:26 +0100728ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700729M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700730L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100731S: Maintained
732
Hubert Feurstein94150092009-10-07 08:36:07 +0100733ARM/CONTEC MICRO9 MACHINE SUPPORT
734M: Hubert Feurstein <hubert.feurstein@contec.at>
735S: Maintained
736F: arch/arm/mach-ep93xx/micro9.c
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700739M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740S: Maintained
741
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200742ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100743M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100745T: git git://git.berlios.de/gemini-board
746S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300747F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200748
Barry Songa990cbd2011-07-12 21:44:10 +0800749ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
750M: Barry Song <baohua.song@csr.com>
751L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
752S: Maintained
753F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800754F: drivers/dma/sirf-dma.c
755F: drivers/i2c/busses/i2c-sirf.c
756F: drivers/pinctrl/pinctrl-sirf.c
757F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800758
Russell Kingd4275352009-04-16 14:05:27 +0100759ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700761L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100762W: http://www.arm.linux.org.uk/
763S: Maintained
764F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700765F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100766
Russell Kinga9da4f72008-07-12 21:42:04 +0100767ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Daniel Ribeiro <drwyrm@gmail.com>
769M: Stefan Schmidt <stefan@openezx.org>
770M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200771L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100772W: http://www.openezx.org/
773S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200774T: topgit git://git.openezx.org/openezx.git
775F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100776
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200777ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100778M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700779L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100780S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700781T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300782F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200783
Russell Kingd4275352009-04-16 14:05:27 +0100784ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700785M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700786L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100787W: http://www.arm.linux.org.uk/
788S: Maintained
789F: arch/arm/include/asm/hardware/dec21285.h
790F: arch/arm/mach-footbridge/
791
Sascha Hauer86183a52008-07-24 23:50:35 +0200792ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700793M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700794L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200795S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700796T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100797F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100798F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700799F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200800
Shawn Guo8bcb97652011-10-07 22:24:18 +0800801ARM/FREESCALE IMX6
802M: Shawn Guo <shawn.guo@linaro.org>
803L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
804S: Maintained
805T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
806F: arch/arm/mach-imx/*imx6*
807
Shawn Guoa9866a02011-10-21 11:53:34 +0800808ARM/FREESCALE MXS ARM ARCHITECTURE
809M: Shawn Guo <shawn.guo@linaro.org>
810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
811S: Maintained
812T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
813F: arch/arm/mach-mxs/
814
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800815ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800818S: Maintained
819
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100820ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700821M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100823S: Maintained
824
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200825ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700826M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100827M: Paul Parsons <lost.distance@yahoo.com>
828L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200829S: Maintained
830F: arch/arm/mach-pxa/hx4700.c
831F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100832F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200833
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100834ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700835M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200836W: www.jlime.com
837S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700838T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
839F: arch/arm/mach-sa1100/jornada720.c
840F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100841
Marek Vasut403d2972010-05-22 00:29:39 +0200842ARM/INCOME PXA270 SUPPORT
843M: Marek Vasut <marek.vasut@gmail.com>
844L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
845S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700846F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200847
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800848ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700849M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700850M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700852S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100853
854ARM/INTEL IOP33X ARM ARCHITECTURE
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 IOP13XX ARM ARCHITECTURE
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
865ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700867M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700869S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800870
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800871ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700872M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800874S: Maintained
875
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200876ARM/INTEL IXP4XX ARM ARCHITECTURE
877M: Imre Kaloz <kaloz@openwrt.org>
878M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200880S: Maintained
881F: arch/arm/mach-ixp4xx/
882
Joe Perches838553c2010-10-26 14:22:59 -0700883ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100884M: Jonathan Cameron <jic23@cam.ac.uk>
885L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
886S: Maintained
887F: arch/arm/mach-pxa/stargate2.c
888F: drivers/pcmcia/pxa2xx_stargate2.c
889
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800890ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700891M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700892M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700894S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800895
896ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700897M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700898L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800899S: Maintained
900
901ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700903L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800904S: Maintained
905
Philipp Zabel3b8861712008-07-09 21:27:15 +0100906ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700907M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100908S: Maintained
909
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200910ARM/Marvell Armada 370 and Armada XP SOC support
911M: Jason Cooper <jason@lakedaemon.net>
912M: Andrew Lunn <andrew@lunn.ch>
913M: Gregory Clement <gregory.clement@free-electrons.com>
914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
915S: Maintained
916F: arch/arm/mach-mvebu/
917
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400918ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
919M: Jason Cooper <jason@lakedaemon.net>
920M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400922S: Maintained
923F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400924F: arch/arm/mach-kirkwood/
925F: arch/arm/mach-mv78xx0/
926F: arch/arm/mach-orion5x/
927F: arch/arm/plat-orion/
928
Alexander Clouterd69ac132011-04-14 15:22:02 -0700929ARM/Orion SoC/Technologic Systems TS-78xx platform support
930M: Alexander Clouter <alex@digriz.org.uk>
931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932W: http://www.digriz.org.uk/ts78xx/kernel
933S: Maintained
934F: arch/arm/mach-orion5x/ts78xx-*
935
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000936ARM/MICREL KS8695 ARCHITECTURE
937M: Greg Ungerer <gerg@uclinux.org>
938L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939F: arch/arm/mach-ks8695
940S: Odd Fixes
941
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200942ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700943M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700944L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200945F: arch/arm/mach-pxa/mioa701.c
946S: Maintained
947
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100948ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700949M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100950S: Maintained
951
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100952ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700953M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200954M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700955M: STEricsson <STEricsson_nomadik_linux@list.st.com>
956L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
957S: Maintained
958F: arch/arm/mach-nomadik/
959F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100960F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200961T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100962
Andy Green9d762952009-05-19 06:41:42 -0300963ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700964M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300965L: openmoko-kernel@lists.openmoko.org (subscribers-only)
966W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
967S: Supported
968
Daniel Walker0c19d212009-12-07 16:53:51 -0800969ARM/QUALCOMM MSM MACHINE SUPPORT
970M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800971M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800972M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800973L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800974F: arch/arm/mach-msm/
975F: drivers/video/msm/
976F: drivers/mmc/host/msm_sdcc.c
977F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800978F: drivers/tty/serial/msm_serial.h
979F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700980F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700981F: drivers/*/pm8???-*
982F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800983T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800984S: Maintained
985
Dirk Opfer8459c152005-11-06 14:27:52 +0000986ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700987M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
988M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000989S: Maintained
990
Marek Vasut5d783a22009-07-16 13:26:48 +0200991ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700992M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200993L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100994W: http://hackndev.com
995S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700996F: arch/arm/mach-pxa/include/mach/palmtx.h
997F: arch/arm/mach-pxa/palmtx.c
998F: arch/arm/mach-pxa/include/mach/palmt5.h
999F: arch/arm/mach-pxa/palmt5.c
1000F: arch/arm/mach-pxa/include/mach/palmld.h
1001F: arch/arm/mach-pxa/palmld.c
1002F: arch/arm/mach-pxa/include/mach/palmte2.h
1003F: arch/arm/mach-pxa/palmte2.c
1004F: arch/arm/mach-pxa/include/mach/palmtc.h
1005F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001006
Joe Perchesb57fe922009-12-14 18:00:52 -08001007ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001008M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001009L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001010W: http://hackndev.com
1011S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001012F: arch/arm/mach-pxa/include/mach/palmtreo.h
1013F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001014
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001015ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001017L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001018W: http://hackndev.com
1019S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001020F: arch/arm/mach-pxa/include/mach/palmz72.h
1021F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1026S: Maintained
1027
1028ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001029M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001030L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031W: http://www.arm.linux.org.uk/
1032S: Maintained
1033
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001034ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001035M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001036L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001037S: Maintained
1038
Russell Kingd4275352009-04-16 14:05:27 +01001039ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001040M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001041L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001042W: http://www.arm.linux.org.uk/
1043S: Maintained
1044F: arch/arm/common/time-acorn.c
1045F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1046F: arch/arm/include/asm/hardware/ioc.h
1047F: arch/arm/include/asm/hardware/iomd.h
1048F: arch/arm/include/asm/hardware/memc.h
1049F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001050F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001051F: drivers/net/ethernet/i825xx/ether1*
1052F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001053F: drivers/scsi/arm/
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001056M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057W: http://www.shark-linux.de/shark.html
1058S: Maintained
1059
Ben Dooksb21477f2009-06-13 10:46:34 +01001060ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001062M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001063L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001064L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001065W: http://www.fluff.org/ben/linux/
1066S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001067F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001068F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001069F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001070F: arch/arm/mach-s3c24*/
1071F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001072F: drivers/*/*s3c2410*
1073F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001074F: drivers/spi/spi-s3c*
1075F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001077ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001078M: Kukjin Kim <kgene.kim@samsung.com>
1079L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1080L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1081S: Maintained
1082F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001083F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001084
Kyungmin Park10ffa962011-03-04 17:36:26 -08001085ARM/SAMSUNG MOBILE MACHINE SUPPORT
1086M: Kyungmin Park <kyungmin.park@samsung.com>
1087L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1088S: Maintained
1089F: arch/arm/mach-s5pv210/mach-aquila.c
1090F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001091F: arch/arm/mach-exynos/mach-universal_c210.c
1092F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001093
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001094ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1095M: Kyungmin Park <kyungmin.park@samsung.com>
1096M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1097L: linux-arm-kernel@lists.infradead.org
1098L: linux-media@vger.kernel.org
1099S: Maintained
1100F: arch/arm/plat-s5p/dev-fimc*
1101F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001102F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001103
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001104ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1105M: Kyungmin Park <kyungmin.park@samsung.com>
1106M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001107M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001108L: linux-arm-kernel@lists.infradead.org
1109L: linux-media@vger.kernel.org
1110S: Maintained
1111F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001112F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001113
1114ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1115M: Kyungmin Park <kyungmin.park@samsung.com>
1116M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1117L: linux-arm-kernel@lists.infradead.org
1118L: linux-media@vger.kernel.org
1119S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001120F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001121
Paul Mundtd48d38e2010-02-08 12:50:24 +09001122ARM/SHMOBILE ARM ARCHITECTURE
1123M: Paul Mundt <lethal@linux-sh.org>
1124M: Magnus Damm <magnus.damm@gmail.com>
1125L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001126W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001127Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001128T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001129S: Supported
1130F: arch/arm/mach-shmobile/
1131F: drivers/sh/
1132
Dinh Nguyen66314222012-07-18 16:07:18 -06001133ARM/SOCFPGA ARCHITECTURE
1134M: Dinh Nguyen <dinguyen@altera.com>
1135S: Maintained
1136F: arch/arm/mach-socfpga/
1137
1138ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1139M: Dinh Nguyen <dinguyen@altera.com>
1140S: Maintained
1141F: drivers/clk/socfpga/
1142
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001143ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001144M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001145L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001146S: Maintained
1147
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001148ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001149M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001150L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151S: Maintained
1152
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001153ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001155L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001156S: Maintained
1157
wanzongshun98ad6e32009-02-13 06:04:32 +01001158ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001159M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001160L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001161W: http://www.mcuos.com
1162S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001163F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001164F: drivers/input/keyboard/w90p910_keypad.c
1165F: drivers/input/touchscreen/w90p910_ts.c
1166F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001167F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001168F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001169F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001170F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001171F: drivers/usb/host/ehci-w90x900.c
1172F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001173
Linus Walleij54274d72010-04-04 10:58:03 +01001174ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001175M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001176L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1177S: Supported
1178F: arch/arm/mach-u300/
1179F: drivers/i2c/busses/i2c-stu300.c
1180F: drivers/rtc/rtc-coh901331.c
1181F: drivers/watchdog/coh901327_wdt.c
1182F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001183F: drivers/mfd/ab3100*
1184F: drivers/rtc/rtc-ab3100.c
1185F: drivers/rtc/rtc-coh901331.c
1186T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001187
Linus Walleij87572882010-12-22 09:18:29 +01001188ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001189M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001190M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001191L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192S: Maintained
1193F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001194F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001195F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001196F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001197F: drivers/mfd/abx500*
1198F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001199F: drivers/mfd/dbx500*
1200F: drivers/mfd/db8500*
1201F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001202F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001203F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001204T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001205
Russell Kingd4275352009-04-16 14:05:27 +01001206ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001207M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001208L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001209W: http://www.arm.linux.org.uk/
1210S: Maintained
1211F: arch/arm/vfp/
1212
Marek Vasute66b6d82010-03-26 06:51:32 +01001213ARM/VOIPAC PXA270 SUPPORT
1214M: Marek Vasut <marek.vasut@gmail.com>
1215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1216S: Maintained
1217F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001218F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001219
Tony Prisk04529fe2012-07-24 04:19:37 +12001220ARM/VT8500 ARM ARCHITECTURE
1221M: Tony Prisk <linux@prisktech.co.nz>
1222L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1223S: Maintained
1224F: arch/arm/mach-vt8500/
1225F: drivers/video/vt8500lcdfb.*
1226F: drivers/video/wm8505fb*
1227F: drivers/video/wmt_ge_rops.*
1228F: drivers/tty/serial/vt8500_serial.c
1229F: drivers/rtc/rtc-vt8500-c
1230
Marek Vasute66b6d82010-03-26 06:51:32 +01001231ARM/ZIPIT Z2 SUPPORT
1232M: Marek Vasut <marek.vasut@gmail.com>
1233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234S: Maintained
1235F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001236F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001237
Catalin Marinas38074222012-03-05 11:49:34 +00001238ARM64 PORT (AARCH64 ARCHITECTURE)
1239M: Catalin Marinas <catalin.marinas@arm.com>
1240L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1241S: Maintained
1242F: arch/arm64/
1243
George Josephd58de032010-03-05 22:17:25 +01001244ASC7621 HARDWARE MONITOR DRIVER
1245M: George Joseph <george.joseph@fairview5.com>
1246L: lm-sensors@lm-sensors.org
1247S: Maintained
1248F: Documentation/hwmon/asc7621
1249F: drivers/hwmon/asc7621.c
1250
Corentin Charyb229ece2011-02-26 10:20:40 +01001251ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001252M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001254L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001255W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001257F: drivers/platform/x86/asus*.c
1258F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001260ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001261M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001262L: lm-sensors@lm-sensors.org
1263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001264F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001265
Andrew Morton953a6472008-11-06 12:53:28 -08001266ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001267M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001268W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001270F: Documentation/crypto/async-tx-api.txt
1271F: crypto/async_tx/
1272F: drivers/dma/
1273F: include/linux/dmaengine.h
1274F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001275
Wolfram Sanga1867d32009-09-18 22:45:51 +02001276AT24 EEPROM DRIVER
1277M: Wolfram Sang <w.sang@pengutronix.de>
1278L: linux-i2c@vger.kernel.org
1279S: Maintained
1280F: drivers/misc/eeprom/at24.c
1281F: include/linux/i2c/at24.h
1282
Randy Dunlape7839f22008-10-12 16:11:45 -07001283ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001284M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001285W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001287F: Documentation/aoe/
1288F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Joe Perches9a10a872010-12-01 09:37:55 -08001290ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001291M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001292L: linux-wireless@vger.kernel.org
1293S: Supported
1294F: drivers/net/wireless/ath/*
1295
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001296ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001297M: Jiri Slaby <jirislaby@gmail.com>
1298M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001299M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001300L: linux-wireless@vger.kernel.org
1301L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001302W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001303S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001304F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001305
Kalle Valo12e62d62011-09-13 10:21:25 +03001306ATHEROS ATH6KL WIRELESS DRIVER
1307M: Kalle Valo <kvalo@qca.qualcomm.com>
1308L: linux-wireless@vger.kernel.org
1309W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1310T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1311S: Supported
1312F: drivers/net/wireless/ath/ath6kl/
1313
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001314ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001315M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1316M: Jouni Malinen <jouni@qca.qualcomm.com>
1317M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1318M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001319L: linux-wireless@vger.kernel.org
1320L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001321W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001322S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001323F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001324
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001325CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1326M: Christian Lamparter <chunkeey@googlemail.com>
1327L: linux-wireless@vger.kernel.org
1328W: http://wireless.kernel.org/en/users/Drivers/carl9170
1329S: Maintained
1330F: drivers/net/wireless/ath/carl9170/
1331
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001332ATK0110 HWMON DRIVER
1333M: Luca Tettamanti <kronos.it@gmail.com>
1334L: lm-sensors@lm-sensors.org
1335S: Maintained
1336F: drivers/hwmon/asus_atk0110.c
1337
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001338ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001339M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001341F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001342
Chris Snook7ae115b2008-09-09 03:26:57 -04001343ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001344M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001345M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001346L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001347W: http://sourceforge.net/projects/atl1
1348W: http://atl1.sourceforge.net
1349S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001350F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001353M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001354L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001355L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356W: http://linux-atm.sourceforge.net
1357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001358F: drivers/atm/
1359F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Pierre Ossman272f1332007-05-14 21:25:26 +02001361ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001362M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001363L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001364W: http://www.atmel.com/products/AT91/
1365W: http://www.at91.com/
1366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001367F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001368
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001369ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001370M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001371S: Maintained
1372F: drivers/mmc/host/atmel-mci.c
1373F: drivers/mmc/host/atmel-mci-regs.h
1374
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001375ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001376M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001377S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001378F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001379
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001380ATMEL DMA DRIVER
1381M: Nicolas Ferre <nicolas.ferre@atmel.com>
1382L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1383S: Supported
1384F: drivers/dma/at_hdmac.c
1385F: drivers/dma/at_hdmac_regs.h
1386F: arch/arm/mach-at91/include/mach/at_hdmac.h
1387
Josh Wu15515542012-03-23 17:56:29 +08001388ATMEL ISI DRIVER
1389M: Josh Wu <josh.wu@atmel.com>
1390L: linux-media@vger.kernel.org
1391S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001392F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001393F: include/media/atmel-isi.h
1394
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001395ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001396M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001397L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001399F: drivers/video/atmel_lcdfb.c
1400F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001401
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001402ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001403M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001404S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001405F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001406
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001407ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001408M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001409S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001410F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001411
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001412ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1413M: Nicolas Ferre <nicolas.ferre@atmel.com>
1414L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415S: Supported
1416F: drivers/misc/atmel_tclib.c
1417F: drivers/clocksource/tcb_clksrc.c
1418
Josh Wuff2675d2012-03-23 17:56:55 +08001419ATMEL TSADCC DRIVER
1420M: Josh Wu <josh.wu@atmel.com>
1421L: linux-input@vger.kernel.org
1422S: Supported
1423F: drivers/input/touchscreen/atmel_tsadcc.c
1424
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001425ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001426M: Nicolas Ferre <nicolas.ferre@atmel.com>
1427L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001428S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001429F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001432M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001433L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434W: http://www.thekelleys.org.uk/atmel
1435W: http://atmelwlandriver.sourceforge.net/
1436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001437F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Chris Wrighta92b7b82005-07-07 18:12:23 -07001439AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001440M: Al Viro <viro@zeniv.linux.org.uk>
1441M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001442L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001443W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001444T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001446F: include/linux/audit.h
1447F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001448
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001449AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001450M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001451W: http://miguelojeda.es/auxdisplay.htm
1452W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001454F: drivers/auxdisplay/
1455F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001456
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001457AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001458M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1459M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001460W: http://www.atmel.com/products/AVR32/
1461W: http://avr32linux.org/
1462W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001464F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001465
1466AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001467M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1468M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001470F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001473M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001475W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001477F: include/linux/ax25.h
1478F: include/net/ax25.h
1479F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001481B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001482M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001483L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001484L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001485W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001487F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001488
1489B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001490M: Larry Finger <Larry.Finger@lwfinger.net>
1491M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001492L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001493L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001494W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001496F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001497
Richard Purdie300abeb2007-02-07 22:21:07 +00001498BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001499M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001501F: drivers/video/backlight/
1502F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001503
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001504BATMAN ADVANCED
1505M: Marek Lindner <lindner_marek@yahoo.de>
1506M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001507M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001508L: b.a.t.m.a.n@lists.open-mesh.org
1509W: http://www.open-mesh.org/
1510S: Maintained
1511F: net/batman-adv/
1512
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001513BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001514M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001515L: linux-hams@vger.kernel.org
1516W: http://www.baycom.org/~tom/ham/ham.html
1517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001518F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001519
1520BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001521S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001522F: Documentation/filesystems/befs.txt
1523F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001524
1525BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001526M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: Documentation/filesystems/bfs.txt
1529F: fs/bfs/
1530F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001531
Bryan Wu1394f032007-05-06 14:50:22 -07001532BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001533M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001534L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001535W: http://blackfin.uclinux.org
1536S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001537F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001538
Bryan Wue190d6b2007-07-17 14:43:44 +08001539BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001540L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001541W: http://blackfin.uclinux.org
1542S: Supported
Jeff Kirsher7b35f0332011-06-18 00:01:26 -07001543F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001544
Mike Frysinger566da5b2007-06-11 15:31:30 +08001545BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001546M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001547L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001548W: http://blackfin.uclinux.org
1549S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001550F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001551
Mike Frysinger936ed492010-03-10 15:20:38 -08001552BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001553M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001554L: uclinux-dist-devel@blackfin.uclinux.org
1555W: http://blackfin.uclinux.org
1556S: Supported
1557F: drivers/mmc/host/bfin_sdh.c
1558
Bryan Wu1394f032007-05-06 14:50:22 -07001559BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001561L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001562W: http://blackfin.uclinux.org
1563S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001564F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001565
Bryan Wu1e6d3202007-07-15 02:50:02 +08001566BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001567M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001568L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001569W: http://blackfin.uclinux.org
1570S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001571F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001572
Bryan Wud24ecfc2007-05-01 23:26:32 +02001573BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001574M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001575L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001576W: http://blackfin.uclinux.org/
1577S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001578F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001579
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001580BLINKM RGB LED DRIVER
1581M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1582S: Maintained
1583F: drivers/leds/leds-blinkm.c
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001586M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001587T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Joern Engel2b54aae2008-02-06 01:38:02 -08001591BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001592M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001593L: linux-mtd@lists.infradead.org
1594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001596
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001597BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001598M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001599M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001600M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001601L: linux-bluetooth@vger.kernel.org
1602W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001603T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1604T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001606F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001609M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001610M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001611M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001612L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001613W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001614T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1615T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001617F: net/bluetooth/
1618F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001621M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001622M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001623L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001624W: http://sourceforge.net/projects/bonding/
1625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001626F: drivers/net/bonding/
1627F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Gary Zambrano39105892006-06-22 17:26:20 -07001629BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001630M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001631L: netdev@vger.kernel.org
1632S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001633F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001634
Michael Chan948c51e2006-06-04 02:51:39 -07001635BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001637L: netdev@vger.kernel.org
1638S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001639F: drivers/net/ethernet/broadcom/bnx2.*
1640F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001641
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001642BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001643M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001644L: netdev@vger.kernel.org
1645S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001646F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001647
Stephen Warrenf680f252012-09-15 00:18:54 -06001648BROADCOM BCM2835 ARM ARCHICTURE
1649M: Stephen Warren <swarren@wwwdotorg.org>
1650L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1651T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1652S: Maintained
1653F: arch/arm/mach-bcm2835/
1654F: arch/arm/boot/dts/bcm2835*
1655F: arch/arm/configs/bcm2835_defconfig
1656F: drivers/*/*bcm2835*
1657
Michael Chan948c51e2006-06-04 02:51:39 -07001658BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Matt Carlson <mcarlson@broadcom.com>
1660M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001661L: netdev@vger.kernel.org
1662S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001663F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001664
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001665BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1666M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001667M: Roland Vossen <rvossen@broadcom.com>
1668M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001669M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1670M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001671L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001672L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001673S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001674F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001675
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001676BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1677M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1678L: linux-scsi@vger.kernel.org
1679S: Supported
1680F: drivers/scsi/bnx2fc/
1681
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001682BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1683M: Rafał Miłecki <zajec5@gmail.com>
1684L: linux-wireless@vger.kernel.org
1685S: Maintained
1686F: drivers/bcma/
1687F: include/linux/bcma/
1688
Jing Huang7725ccf2009-09-23 17:46:15 -07001689BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001690M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001691L: linux-scsi@vger.kernel.org
1692S: Supported
1693F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001694
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001695BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1696M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001697L: netdev@vger.kernel.org
1698S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001699F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001700
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001701BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001702M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001703L: linux-scsi@vger.kernel.org
1704S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001705F: block/bsg.c
1706F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001707
Clemens Ladischaf399172011-01-10 16:32:54 +01001708BT87X AUDIO DRIVER
1709M: Clemens Ladisch <clemens@ladisch.de>
1710L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1711T: git git://git.alsa-project.org/alsa-kernel.git
1712S: Maintained
1713F: Documentation/sound/alsa/Bt87x.txt
1714F: sound/pci/bt87x.c
1715
Michael Bueschff1d5c22008-07-25 01:46:10 -07001716BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001717M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001718W: http://bu3sch.de/btgpio.php
1719S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001720F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001721
Joe Percheseb1eb042009-01-21 10:49:16 -05001722BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001723M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001724L: linux-btrfs@vger.kernel.org
1725W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001726Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001727T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001729F: Documentation/filesystems/btrfs.txt
1730F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001733M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001734L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001735W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001736T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001738F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001739F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Clemens Ladischaf399172011-01-10 16:32:54 +01001741C-MEDIA CMI8788 DRIVER
1742M: Clemens Ladisch <clemens@ladisch.de>
1743L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1744T: git git://git.alsa-project.org/alsa-kernel.git
1745S: Maintained
1746F: sound/pci/oxygen/
1747
Mark Salter21413552011-10-04 11:21:42 -04001748C6X ARCHITECTURE
1749M: Mark Salter <msalter@redhat.com>
1750M: Aurelien Jacquiot <a-jacquiot@ti.com>
1751L: linux-c6x-dev@linux-c6x.org
1752W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1753S: Maintained
1754F: arch/c6x/
1755
David Howellsa5432f5a2009-04-20 15:46:45 +01001756CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001757M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001758L: linux-cachefs@redhat.com
1759S: Supported
1760F: Documentation/filesystems/caching/cachefiles.txt
1761F: fs/cachefiles/
1762
Jonathan Corbet77d51402007-03-22 19:44:17 -03001763CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001764M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001765L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001766T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001768F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001769F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001770
Joe Perches201b6ba2010-09-07 20:33:24 +00001771CAIF NETWORK LAYER
1772M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1773L: netdev@vger.kernel.org
1774S: Supported
1775F: Documentation/networking/caif/
1776F: drivers/net/caif/
1777F: include/linux/caif/
1778F: include/net/caif/
1779F: net/caif/
1780
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001781CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001782M: Muli Ben-Yehuda <muli@il.ibm.com>
1783M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001784L: discuss@x86-64.org
1785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001786F: arch/x86/kernel/pci-calgary_64.c
1787F: arch/x86/kernel/tce_64.c
1788F: arch/x86/include/asm/calgary.h
1789F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001790
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001791CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001792M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001793L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001794W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001795T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001796S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001797F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001798F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001799F: include/linux/can/core.h
1800F: include/linux/can/bcm.h
1801F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001802F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001803
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001804CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001805M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001806M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001807L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001808W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001809T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001810S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001811F: drivers/net/can/
1812F: include/linux/can/dev.h
1813F: include/linux/can/error.h
1814F: include/linux/can/netlink.h
1815F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001816
James Morris95d16c72012-03-16 12:05:48 +11001817CAPABILITIES
1818M: Serge Hallyn <serge.hallyn@canonical.com>
1819L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001820S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001821F: include/linux/capability.h
1822F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001823F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001824F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001825
Arnd Bergmannb8154542008-05-16 11:10:59 +02001826CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001827M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001828L: linuxppc-dev@lists.ozlabs.org
1829L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001830W: http://www.ibm.com/developerworks/power/cell/
1831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001832F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001833F: arch/powerpc/include/asm/spu*.h
1834F: arch/powerpc/oprofile/*cell*
1835F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001836
Sage Weil9030aaf2009-10-06 11:31:15 -07001837CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001838M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001839L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001840W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001841T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001842S: Supported
1843F: Documentation/filesystems/ceph.txt
1844F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001845F: net/ceph
1846F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001847F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001848
David Vrabel18332a82008-09-17 16:34:44 +01001849CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001850L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001851S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001852F: Documentation/usb/WUSB-Design-overview.txt
1853F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001854F: drivers/usb/host/hwa-hc.c
1855F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001856F: drivers/usb/wusbcore/
1857F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001858
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001859CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001860M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001861W: http://miguelojeda.es/auxdisplay.htm
1862W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001864F: drivers/auxdisplay/cfag12864b.c
1865F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001866
1867CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001868M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001869W: http://miguelojeda.es/auxdisplay.htm
1870W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001872F: drivers/auxdisplay/cfag12864bfb.c
1873F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001874
Johannes Berg704232c2007-04-23 12:20:05 -07001875CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001876M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001877L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001878W: http://wireless.kernel.org/
1879T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1880T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001882F: include/linux/nl80211.h
1883F: include/net/cfg80211.h
1884F: net/wireless/*
1885X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001886
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001887CHAR and MISC DRIVERS
1888M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001889M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001890T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001891S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001892F: drivers/char/*
1893F: drivers/misc/*
1894
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001895CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001896M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001898F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001899
Harry Weif8407f262011-02-25 14:44:15 -08001900CHINESE DOCUMENTATION
1901M: Harry Wei <harryxiyou@gmail.com>
1902L: xiyoulinuxkernelgroup@googlegroups.com
1903L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1904S: Maintained
1905F: Documentation/zh_CN/
1906
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001907CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1908M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1909L: linux-usb@vger.kernel.org
1910S: Maintained
1911F: drivers/usb/chipidea/
1912
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001913CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001914M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001915M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001916M: Neel Patel <neepatel@cisco.com>
1917M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001918S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001919F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001920
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001921CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001922M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001923L: netdev@vger.kernel.org
1924S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001925F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001926
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001927CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001928M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001929L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001931F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001932
Timur Tabid9e9d822008-04-24 08:45:26 +10001933CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001934M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001935L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001937F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001938
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001939CLEANCACHE API
1940M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1941L: linux-kernel@vger.kernel.org
1942S: Maintained
1943F: mm/cleancache.c
1944F: include/linux/cleancache.h
1945
Russell Kingd4275352009-04-16 14:05:27 +01001946CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001947M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001948S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001949F: include/linux/clk.h
1950
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001951CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001952M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001953M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1954M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001955L: linux-scsi@vger.kernel.org
1956S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001957F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001958
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001959CMPC ACPI DRIVER
1960M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1961M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05001962L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001963S: Supported
1964F: drivers/platform/x86/classmate-laptop.c
1965
Nicolas Palix74425ee2010-06-06 17:15:01 +02001966COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001967M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001968M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001969M: Nicolas Palix <nicolas.palix@imag.fr>
1970L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001971W: http://coccinelle.lip6.fr/
1972S: Supported
1973F: scripts/coccinelle/
1974F: scripts/coccicheck
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001977M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978M: coda@cs.cmu.edu
1979L: codalist@coda.cs.cmu.edu
1980W: http://www.coda.cs.cmu.edu/
1981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001982F: Documentation/filesystems/coda.txt
1983F: fs/coda/
1984F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Mike Turquette7704add2012-05-02 18:37:45 -07001986COMMON CLK FRAMEWORK
1987M: Mike Turquette <mturquette@ti.com>
1988M: Mike Turquette <mturquette@linaro.org>
1989L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1990T: git git://git.linaro.org/people/mturquette/linux.git
1991S: Maintained
1992F: drivers/clk/clk.c
1993F: drivers/clk/clk-*
1994F: include/linux/clk-pr*
1995
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001996COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001997M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001998L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001999L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002000W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002001Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002002T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002004F: Documentation/filesystems/cifs.txt
2005F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007COMPACTPCI HOTPLUG CORE
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/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013COMPACTPCI HOTPLUG ZIATECH ZT5550 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_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002020M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002021L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002025COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002027L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002029F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002030
Simon Arlott949be0f2007-03-06 02:47:46 -08002031CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002032M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002033L: accessrunner-general@lists.sourceforge.net
2034W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002036F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002037
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002038CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002039M: Joel Becker <jlbec@evilplan.org>
2040T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002041S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002042F: fs/configfs/
2043F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002044
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002045CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002046M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002047L: netdev@vger.kernel.org
2048S: Maintained
2049F: drivers/connector/
2050
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002051CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002052M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002053M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002054L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002055L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002056T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002058F: include/linux/cgroup*
2059F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002060F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002061
Rudolf Marekbebe4672007-05-08 17:22:02 +02002062CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002063M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002064L: lm-sensors@lm-sensors.org
2065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002066F: Documentation/hwmon/coretemp
2067F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071W: http://www.fi.muni.cz/~kas/cosa/
2072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002073F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Florian Fainelli4371ee32009-06-01 02:43:17 -07002075CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002076M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002077L: netdev@vger.kernel.org
2078S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002079F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002082M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002083L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002084L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: drivers/cpufreq/
2087F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002090M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002092F: arch/x86/kernel/cpuid.c
2093F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002095CPU POWER MONITORING SUBSYSTEM
2096M: Dominik Brodowski <linux@dominikbrodowski.net>
2097M: Thomas Renninger <trenn@suse.de>
2098S: Maintained
2099F: tools/power/cpupower
2100
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002101CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002102M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002103W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002104W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002106F: Documentation/cgroups/cpusets.txt
2107F: include/linux/cpuset.h
2108F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002111W: http://sourceforge.net/projects/cramfs/
2112S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002113F: Documentation/filesystems/cramfs.txt
2114F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002117M: Mikael Starvik <starvik@axis.com>
2118M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002119L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120W: http://developer.axis.com
2121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002122F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002123F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002126M: Herbert Xu <herbert@gondor.apana.org.au>
2127M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002129T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: Documentation/crypto/
2132F: arch/*/crypto/
2133F: crypto/
2134F: drivers/crypto/
2135F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Neil Horman5b07bd52009-02-05 16:03:04 +11002137CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002138M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002139L: linux-crypto@vger.kernel.org
2140S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002141F: crypto/ansi_cprng.c
2142F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002143
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002144CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002145M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002148
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002149CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002150M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002151L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002152L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002153T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002154W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002155W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002157F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002158F: drivers/media/pci/cx18/
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002159
Antti Palosaari91952bc2012-10-01 12:28:46 -03002160CXD2820R MEDIA DRIVER
2161M: Antti Palosaari <crope@iki.fi>
2162L: linux-media@vger.kernel.org
2163W: http://linuxtv.org/
2164W: http://palosaari.fi/linux/
2165Q: http://patchwork.linuxtv.org/project/linux-media/list/
2166T: git git://linuxtv.org/anttip/media_tree.git
2167S: Maintained
2168F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002169
Steve Wisee5ec3782008-05-20 14:06:33 -07002170CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002171M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002172L: netdev@vger.kernel.org
2173W: http://www.chelsio.com
2174S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002175F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002176
2177CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002178M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002179L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002180W: http://www.openfabrics.org
2181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002182F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002183
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002184CXGB4 ETHERNET DRIVER (CXGB4)
2185M: Dimitris Michailidis <dm@chelsio.com>
2186L: netdev@vger.kernel.org
2187W: http://www.chelsio.com
2188S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002189F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002190
2191CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2192M: Steve Wise <swise@chelsio.com>
2193L: linux-rdma@vger.kernel.org
2194W: http://www.openfabrics.org
2195S: Supported
2196F: drivers/infiniband/hw/cxgb4/
2197
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002198CXGB4VF ETHERNET DRIVER (CXGB4VF)
2199M: Casey Leedom <leedom@chelsio.com>
2200L: netdev@vger.kernel.org
2201W: http://www.chelsio.com
2202S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002203F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002204
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002205STMMAC ETHERNET DRIVER
2206M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2207L: netdev@vger.kernel.org
2208W: http://www.stlinux.com
2209S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002210F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002213M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215W: http://www.arm.linux.org.uk/
2216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002220M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002221W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002223F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002227S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002228F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002229F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002233S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002234F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002236CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002237M: Javier Martinez Canillas <javier@dowhile0.org>
2238L: linux-input@vger.kernel.org
2239S: Maintained
2240F: drivers/input/touchscreen/cyttsp*
2241F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002244M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245W: http://yaina.de/jreuter/
2246W: http://www.qsl.net/dl1bke/
2247L: linux-hams@vger.kernel.org
2248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002249F: net/ax25/af_ax25.c
2250F: net/ax25/ax25_dev.c
2251F: net/ax25/ax25_ds_*
2252F: net/ax25/ax25_in.c
2253F: net/ax25/ax25_out.c
2254F: net/ax25/ax25_timer.c
2255F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002257DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002258L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002259S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002260F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002261F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002262
2263DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002264M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002265W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002268F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002271M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002272M: Ali Akcaagac <aliakc@web.de>
2273M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002275L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276L: http://lists.twibble.org/mailman/listinfo/dc395x/
2277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002278F: Documentation/scsi/dc395x.txt
2279F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002281DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002282M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002283L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002284W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: include/linux/dccp.h
2287F: include/linux/tfrc.h
2288F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291W: http://linux-decnet.sourceforge.net
2292L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002293S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002294F: Documentation/networking/decnet.txt
2295F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002298M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002300F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002302DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002303M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002304L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002306F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002309M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310W: http://www.debian.org/~dz/i8k/
2311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002312F: drivers/char/i8k.c
2313F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Doug Warzecha90563ec2005-09-06 15:17:15 -07002315DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002316M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002318F: Documentation/dcdbas.txt
2319F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002320
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002321DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002322M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002323S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002324F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002325
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002326DESIGNWARE USB3 DRD IP DRIVER
2327M: Felipe Balbi <balbi@ti.com>
2328L: linux-usb@vger.kernel.org
2329L: linux-omap@vger.kernel.org
2330T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2331S: Maintained
2332F: drivers/usb/dwc3/
2333
Kyungmin Park89d07762012-01-10 15:09:09 -08002334DEVICE FREQUENCY (DEVFREQ)
2335M: MyungJoo Ham <myungjoo.ham@samsung.com>
2336M: Kyungmin Park <kyungmin.park@samsung.com>
2337L: linux-kernel@vger.kernel.org
2338S: Maintained
2339F: drivers/devfreq/
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002342M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344S: Maintained
2345
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002346DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002347M: Alasdair Kergon <agk@redhat.com>
2348M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002349L: dm-devel@redhat.com
2350W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002351Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002352T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002354F: Documentation/device-mapper/
2355F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002356F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002357F: include/linux/device-mapper.h
2358F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002359
Guenter Roeck335d7c52011-01-26 11:45:49 -08002360DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002361M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002362L: linux-i2c@vger.kernel.org
2363S: Maintained
2364F: drivers/i2c/busses/i2c-diolan-u2c.c
2365
Randy Dunlape7839f22008-10-12 16:11:45 -07002366DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002367M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002369F: Documentation/filesystems/dnotify.txt
2370F: fs/notify/dnotify/
2371F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
2373DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002374M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2376W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2377W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2378S: Maintained
2379
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002380DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002381M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: Documentation/filesystems/quota.txt
2384F: fs/quota/
2385F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Bernie Thompson702686a2012-03-01 13:52:13 -08002387DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2388M: Bernie Thompson <bernie@plugable.com>
2389L: linux-fbdev@vger.kernel.org
2390S: Maintained
2391W: http://plugable.com/category/projects/udlfb/
2392F: drivers/video/udlfb.c
2393F: include/video/udlfb.h
2394F: Documentation/fb/udlfb.txt
2395
Randy Dunlape7839f22008-10-12 16:11:45 -07002396DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002397M: Christine Caulfield <ccaulfie@redhat.com>
2398M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002399L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002400W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002401T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002402S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002403F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002404
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302405DMA BUFFER SHARING FRAMEWORK
2406M: Sumit Semwal <sumit.semwal@linaro.org>
2407S: Maintained
2408L: linux-media@vger.kernel.org
2409L: dri-devel@lists.freedesktop.org
2410L: linaro-mm-sig@lists.linaro.org
2411F: drivers/base/dma-buf*
2412F: include/linux/dma-buf*
2413F: Documentation/dma-buf-sharing.txt
2414T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2415
Dan Williamsb3e5f262007-08-07 10:26:35 -07002416DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002417M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002418M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002420F: drivers/dma/
2421F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302422T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2423T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002424
Juerg Haefligerb8250372007-06-09 10:11:16 -04002425DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002426M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002427L: lm-sensors@lm-sensors.org
2428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002429F: Documentation/hwmon/dme1737
2430F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002431
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002432DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002433M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002434L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002435S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002436F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002437
Joe Perches7d2c86b2009-04-07 20:59:01 -07002438DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002439M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002440L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002441T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002443F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002446M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447L: blinux-list@redhat.com
2448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002449F: drivers/char/dtlk.c
2450F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002452DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002453M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002454L: linux-scsi@vger.kernel.org
2455W: http://www.adaptec.com/
2456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002457F: drivers/scsi/dpt*
2458F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002459
Philipp Reisnerb411b362009-09-25 16:07:19 -07002460DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002461P: Philipp Reisner
2462P: Lars Ellenberg
2463M: drbd-dev@lists.linbit.com
2464L: drbd-user@lists.linbit.com
2465W: http://www.drbd.org
2466T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2467T: git git://git.drbd.org/drbd-8.3.git
2468S: Supported
2469F: drivers/block/drbd/
2470F: lib/lru_cache.c
2471F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002472
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002473DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002474M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002475T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002477F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002478F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002479F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002480F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002481F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002482F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002483F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002486M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002487L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002488T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002490F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002491F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
Chris Wilson8daf7472010-09-28 14:07:26 +01002493INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002494M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002495L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002496L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002497T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002498S: Supported
2499F: drivers/gpu/drm/i915
2500F: include/drm/i915*
2501
Kyungmin Park398a6d42011-11-02 11:33:16 +09002502DRM DRIVERS FOR EXYNOS
2503M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002504M: Joonyoung Shim <jy0922.shim@samsung.com>
2505M: Seung-Woo Kim <sw0312.kim@samsung.com>
2506M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002507L: dri-devel@lists.freedesktop.org
2508S: Supported
2509F: drivers/gpu/drm/exynos
2510F: include/drm/exynos*
2511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002513M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002514L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002516F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Antti Palosaari91952bc2012-10-01 12:28:46 -03002518DVB_USB_AF9015 MEDIA DRIVER
2519M: Antti Palosaari <crope@iki.fi>
2520L: linux-media@vger.kernel.org
2521W: http://linuxtv.org/
2522W: http://palosaari.fi/linux/
2523Q: http://patchwork.linuxtv.org/project/linux-media/list/
2524T: git git://linuxtv.org/anttip/media_tree.git
2525S: Maintained
2526F: drivers/media/usb/dvb-usb-v2/af9015*
2527
2528DVB_USB_AF9035 MEDIA DRIVER
2529M: Antti Palosaari <crope@iki.fi>
2530L: linux-media@vger.kernel.org
2531W: http://linuxtv.org/
2532W: http://palosaari.fi/linux/
2533Q: http://patchwork.linuxtv.org/project/linux-media/list/
2534T: git git://linuxtv.org/anttip/media_tree.git
2535S: Maintained
2536F: drivers/media/usb/dvb-usb-v2/af9035*
2537
2538DVB_USB_ANYSEE MEDIA DRIVER
2539M: Antti Palosaari <crope@iki.fi>
2540L: linux-media@vger.kernel.org
2541W: http://linuxtv.org/
2542W: http://palosaari.fi/linux/
2543Q: http://patchwork.linuxtv.org/project/linux-media/list/
2544T: git git://linuxtv.org/anttip/media_tree.git
2545S: Maintained
2546F: drivers/media/usb/dvb-usb-v2/anysee*
2547
2548DVB_USB_AU6610 MEDIA DRIVER
2549M: Antti Palosaari <crope@iki.fi>
2550L: linux-media@vger.kernel.org
2551W: http://linuxtv.org/
2552W: http://palosaari.fi/linux/
2553Q: http://patchwork.linuxtv.org/project/linux-media/list/
2554T: git git://linuxtv.org/anttip/media_tree.git
2555S: Maintained
2556F: drivers/media/usb/dvb-usb-v2/au6610*
2557
2558DVB_USB_CE6230 MEDIA DRIVER
2559M: Antti Palosaari <crope@iki.fi>
2560L: linux-media@vger.kernel.org
2561W: http://linuxtv.org/
2562W: http://palosaari.fi/linux/
2563Q: http://patchwork.linuxtv.org/project/linux-media/list/
2564T: git git://linuxtv.org/anttip/media_tree.git
2565S: Maintained
2566F: drivers/media/usb/dvb-usb-v2/ce6230*
2567
Michael Krufkyd099dea2012-10-02 00:56:20 -03002568DVB_USB_CXUSB MEDIA DRIVER
2569M: Michael Krufky <mkrufky@linuxtv.org>
2570L: linux-media@vger.kernel.org
2571W: http://linuxtv.org/
2572W: http://github.com/mkrufky
2573Q: http://patchwork.linuxtv.org/project/linux-media/list/
2574T: git git://linuxtv.org/media_tree.git
2575S: Maintained
2576F: drivers/media/usb/dvb-usb-v2/cxusb*
2577
Antti Palosaari91952bc2012-10-01 12:28:46 -03002578DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2579M: Antti Palosaari <crope@iki.fi>
2580L: linux-media@vger.kernel.org
2581W: http://linuxtv.org/
2582W: http://palosaari.fi/linux/
2583Q: http://patchwork.linuxtv.org/project/linux-media/list/
2584T: git git://linuxtv.org/anttip/media_tree.git
2585S: Maintained
2586F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2587
2588DVB_USB_EC168 MEDIA DRIVER
2589M: Antti Palosaari <crope@iki.fi>
2590L: linux-media@vger.kernel.org
2591W: http://linuxtv.org/
2592W: http://palosaari.fi/linux/
2593Q: http://patchwork.linuxtv.org/project/linux-media/list/
2594T: git git://linuxtv.org/anttip/media_tree.git
2595S: Maintained
2596F: drivers/media/usb/dvb-usb-v2/ec168*
2597
Michael Krufky8856f5f2012-10-02 00:55:50 -03002598DVB_USB_MXL111SF MEDIA DRIVER
2599M: Michael Krufky <mkrufky@linuxtv.org>
2600L: linux-media@vger.kernel.org
2601W: http://linuxtv.org/
2602W: http://github.com/mkrufky
2603Q: http://patchwork.linuxtv.org/project/linux-media/list/
2604T: git git://linuxtv.org/mkrufky/mxl111sf.git
2605S: Maintained
2606F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2607
Antti Palosaari91952bc2012-10-01 12:28:46 -03002608DVB_USB_RTL28XXU MEDIA DRIVER
2609M: Antti Palosaari <crope@iki.fi>
2610L: linux-media@vger.kernel.org
2611W: http://linuxtv.org/
2612W: http://palosaari.fi/linux/
2613Q: http://patchwork.linuxtv.org/project/linux-media/list/
2614T: git git://linuxtv.org/anttip/media_tree.git
2615S: Maintained
2616F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2617
2618DVB_USB_V2 MEDIA DRIVER
2619M: Antti Palosaari <crope@iki.fi>
2620L: linux-media@vger.kernel.org
2621W: http://linuxtv.org/
2622W: http://palosaari.fi/linux/
2623Q: http://patchwork.linuxtv.org/project/linux-media/list/
2624T: git git://linuxtv.org/anttip/media_tree.git
2625S: Maintained
2626F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2627F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2628
Jason Baronac0ac382011-08-11 14:36:43 -04002629DYNAMIC DEBUG
2630M: Jason Baron <jbaron@redhat.com>
2631S: Maintained
2632F: lib/dynamic_debug.c
2633F: include/linux/dynamic_debug.h
2634
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002635DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002636M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002637S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002638F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002639
Antti Palosaari91952bc2012-10-01 12:28:46 -03002640E4000 MEDIA DRIVER
2641M: Antti Palosaari <crope@iki.fi>
2642L: linux-media@vger.kernel.org
2643W: http://linuxtv.org/
2644W: http://palosaari.fi/linux/
2645Q: http://patchwork.linuxtv.org/project/linux-media/list/
2646T: git git://linuxtv.org/anttip/media_tree.git
2647S: Maintained
2648F: drivers/media/tuners/e4000*
2649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002651M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002652L: linux-eata@i-connect.net
2653L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002655F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659L: linux-scsi@vger.kernel.org
2660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002661F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002664M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002665L: linux-eata@i-connect.net
2666L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002668F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002671M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002672L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673W: http://ebtables.sourceforge.net/
2674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002675F: include/linux/netfilter_bridge/ebt_*.h
2676F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Antti Palosaari91952bc2012-10-01 12:28:46 -03002678EC100 MEDIA DRIVER
2679M: Antti Palosaari <crope@iki.fi>
2680L: linux-media@vger.kernel.org
2681W: http://linuxtv.org/
2682W: http://palosaari.fi/linux/
2683Q: http://patchwork.linuxtv.org/project/linux-media/list/
2684T: git git://linuxtv.org/anttip/media_tree.git
2685S: Maintained
2686F: drivers/media/dvb-frontends/ec100*
2687
Michael Halcrow237fead2006-10-04 02:16:22 -07002688ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002689M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002690M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002691L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002692W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002693S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002694F: Documentation/filesystems/ecryptfs.txt
2695F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002696
Alan Coxda9bb1d2006-01-18 17:44:13 -08002697EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002698M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002699L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002700W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002701S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002702F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002703F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002704F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002705
Borislav Petkovc476c232009-05-20 20:31:58 +02002706EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002707M: Doug Thompson <dougthompson@xmission.com>
2708M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002709L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002710W: bluesmoke.sourceforge.net
2711S: Supported
2712F: drivers/edac/amd64_edac*
2713
Dave Peterson0e438e32006-03-26 01:38:55 -08002714EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002715M: Mark Gross <mark.gross@intel.com>
2716M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002717L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002718W: bluesmoke.sourceforge.net
2719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002721
2722EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002723M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002724L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002725W: bluesmoke.sourceforge.net
2726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002727F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002728
Douglas Thompson6bc78402007-07-19 01:50:12 -07002729EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002730M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002731L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002732W: bluesmoke.sourceforge.net
2733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002734F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002735
2736EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002737M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002738L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002739W: bluesmoke.sourceforge.net
2740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002741F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002742
2743EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002744M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002745L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002746W: bluesmoke.sourceforge.net
2747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002748F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002749
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002750EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002751M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002752L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002753W: bluesmoke.sourceforge.net
2754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002755F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002756
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002757EDAC-I7300
2758M: Mauro Carvalho Chehab <mchehab@redhat.com>
2759L: linux-edac@vger.kernel.org
2760W: bluesmoke.sourceforge.net
2761S: Maintained
2762F: drivers/edac/i7300_edac.c
2763
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002764EDAC-I7CORE
2765M: Mauro Carvalho Chehab <mchehab@redhat.com>
2766L: linux-edac@vger.kernel.org
2767W: bluesmoke.sourceforge.net
2768S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002769F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002770
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002771EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002772M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302773M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002774L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002775W: bluesmoke.sourceforge.net
2776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002777F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002778
2779EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002780M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002781L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002782W: bluesmoke.sourceforge.net
2783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002784F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002785
Dave Peterson0e438e32006-03-26 01:38:55 -08002786EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002787M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002788L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002789W: bluesmoke.sourceforge.net
2790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002791F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002792
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002793EDAC-SBRIDGE
2794M: Mauro Carvalho Chehab <mchehab@redhat.com>
2795L: linux-edac@vger.kernel.org
2796W: bluesmoke.sourceforge.net
2797S: Maintained
2798F: drivers/edac/sb_edac.c
2799
Clemens Ladischaf399172011-01-10 16:32:54 +01002800EDIROL UA-101/UA-1000 DRIVER
2801M: Clemens Ladisch <clemens@ladisch.de>
2802L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2803T: git git://git.alsa-project.org/alsa-kernel.git
2804S: Maintained
2805F: sound/usb/misc/ua101.c
2806
Matt Fleming1f7df952012-10-03 10:04:02 +01002807EXTENSIBLE FIRMWARE INTERFACE (EFI)
2808M: Matt Fleming <matt.fleming@intel.com>
2809L: linux-efi@vger.kernel.org
2810S: Maintained
2811F: Documentation/x86/efi-stub.txt
2812F: arch/ia64/kernel/efi.c
2813F: arch/x86/boot/compressed/eboot.[ch]
2814F: arch/x86/include/asm/efi.h
2815F: arch/x86/platform/efi/*
2816F: drivers/firmware/efivars.c
2817F: include/linux/efi*.h
2818
Peter Jones85a00d92010-09-22 13:05:04 -07002819EFIFB FRAMEBUFFER DRIVER
2820L: linux-fbdev@vger.kernel.org
2821M: Peter Jones <pjones@redhat.com>
2822S: Maintained
2823F: drivers/video/efifb.c
2824
Josh Triplett0bee8d22006-07-30 03:03:58 -07002825EFS FILESYSTEM
2826W: http://aeschi.ch.eu.org/efs/
2827S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002828F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002829
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002830EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002831M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2832M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002833L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002835F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002836
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002837EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002838M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002839L: netdev@vger.kernel.org
2840S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002841F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002842
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002843EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002844M: Paul Gortmaker <paul.gortmaker@windriver.com>
2845M: Matt Mackall <mpm@selenic.com>
2846M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002847L: linux-embedded@vger.kernel.org
2848S: Maintained
2849
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002850EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002851M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002852L: linux-scsi@vger.kernel.org
2853W: http://sourceforge.net/projects/lpfcxxxx
2854S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002856
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002857ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002858M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002859S: Maintained
2860F: drivers/misc/cb710/
2861F: drivers/mmc/host/cb710-mmc.*
2862F: include/linux/cb710.h
2863
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002864ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2865M: Maxim Levitsky <maximlevitsky@gmail.com>
2866S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002867F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002870M: Christopher Hoover <ch@murgatroid.com>
2871M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002873F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002875EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002876M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002877S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002878T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002879F: drivers/video/s1d13xxxfb.c
2880F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002883M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002884L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002886F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002889M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002890L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002891L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002892W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002894F: include/linux/netfilter_bridge/
2895F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002898M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002900F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002903M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002904L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002906F: Documentation/filesystems/ext2.txt
2907F: fs/ext2/
2908F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002911M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002912M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002913M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002914L: linux-ext4@vger.kernel.org
2915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002916F: Documentation/filesystems/ext3.txt
2917F: fs/ext3/
2918F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002919
2920EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002921M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002922M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002923L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002924W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002925Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002927F: Documentation/filesystems/ext4.txt
2928F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Mimi Zoharc5532b02011-08-17 18:52:24 -04002930Extended Verification Module (EVM)
2931M: Mimi Zohar <zohar@us.ibm.com>
2932S: Supported
2933F: security/integrity/evm/
2934
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002935EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2936M: MyungJoo Ham <myungjoo.ham@samsung.com>
2937M: Chanwoo Choi <cw00.choi@samsung.com>
2938L: linux-kernel@vger.kernel.org
2939S: Maintained
2940F: drivers/extcon/
2941F: Documentation/extcon/
2942
Jingoo Han0a799512012-02-06 11:30:39 +09002943EXYNOS DP DRIVER
2944M: Jingoo Han <jg1.han@samsung.com>
2945L: linux-fbdev@vger.kernel.org
2946S: Maintained
2947F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002948F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002949
Donghwa Lee33ad3912012-03-06 11:44:58 +09002950EXYNOS MIPI DISPLAY DRIVERS
2951M: Inki Dae <inki.dae@samsung.com>
2952M: Donghwa Lee <dh09.lee@samsung.com>
2953M: Kyungmin Park <kyungmin.park@samsung.com>
2954L: linux-fbdev@vger.kernel.org
2955S: Maintained
2956F: drivers/video/exynos/exynos_mipi*
2957F: include/video/exynos_mipi*
2958
Jean Delvaree53004e2006-01-09 23:26:14 +01002959F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002960M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002961L: lm-sensors@lm-sensors.org
2962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: Documentation/hwmon/f71805f
2964F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002965
Michael Büscheea977e2012-04-02 12:14:32 -03002966FC0011 TUNER DRIVER
2967M: Michael Buesch <m@bues.ch>
2968L: linux-media@vger.kernel.org
2969S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002970F: drivers/media/tuners/fc0011.h
2971F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002972
Antti Palosaari91952bc2012-10-01 12:28:46 -03002973FC2580 MEDIA DRIVER
2974M: Antti Palosaari <crope@iki.fi>
2975L: linux-media@vger.kernel.org
2976W: http://linuxtv.org/
2977W: http://palosaari.fi/linux/
2978Q: http://patchwork.linuxtv.org/project/linux-media/list/
2979T: git git://linuxtv.org/anttip/media_tree.git
2980S: Maintained
2981F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Eric Paris88b2dbd2010-08-18 12:25:50 -04002983FANOTIFY
2984M: Eric Paris <eparis@redhat.com>
2985S: Maintained
2986F: fs/notify/fanotify/
2987F: include/linux/fanotify.h
2988
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002990M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991W: http://www.farsite.co.uk/
2992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002993F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Akinobu Mitac5408b82007-04-23 14:41:20 -07002995FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002996M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002998F: Documentation/fault-injection/
2999F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003000
Robert Lovecae727d2010-02-16 12:16:00 -08003001FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3002M: Robert Love <robert.w.love@intel.com>
3003L: devel@open-fcoe.org
3004W: www.Open-FCoE.org
3005S: Supported
3006F: drivers/scsi/libfc/
3007F: drivers/scsi/fcoe/
3008F: include/scsi/fc/
3009F: include/scsi/libfc.h
3010F: include/scsi/libfcoe.h
3011
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003012FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003013M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003014L: linux-fsdevel@vger.kernel.org
3015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003016F: include/linux/fcntl.h
3017F: include/linux/fs.h
3018F: fs/fcntl.c
3019F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003020
3021FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003022M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003023L: linux-fsdevel@vger.kernel.org
3024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003025F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003026
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003027FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003028M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003029L: lm-sensors@lm-sensors.org
3030S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003031F: drivers/hwmon/f75375s.c
3032F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003033
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003034FIREWIRE AUDIO DRIVERS
3035M: Clemens Ladisch <clemens@ladisch.de>
3036L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3037T: git git://git.alsa-project.org/alsa-kernel.git
3038S: Maintained
3039F: sound/firewire/
3040
Chris Boota511ce32012-04-14 17:50:35 -07003041FIREWIRE SBP-2 TARGET
3042M: Chris Boot <bootc@bootc.net>
3043L: linux-scsi@vger.kernel.org
3044L: target-devel@vger.kernel.org
3045L: linux1394-devel@lists.sourceforge.net
3046T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3047S: Maintained
3048F: drivers/target/sbp/
3049
Joe Perches7d2c86b2009-04-07 20:59:01 -07003050FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003051M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003052L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003053W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003054T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003056F: drivers/firewire/
3057F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003058F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003059
3060FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003061M: Ming Lei <ming.lei@canonical.com>
3062L: linux-kernel@vger.kernel.org
3063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003064F: Documentation/firmware_class/
3065F: drivers/base/firmware*.c
3066F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003067
Jiri Kosina8206f662012-05-18 13:52:29 +02003068FLOPPY DRIVER
3069M: Jiri Kosina <jkosina@suse.cz>
3070T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3071S: Odd fixes
3072F: drivers/block/floppy.c
3073
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003074FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003075M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003076W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003078F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003079
3080FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003081L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003082S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003083F: drivers/net/wan/dlci.c
3084F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003087M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003088L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003090Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003091T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003093F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003094F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003095F: drivers/video/
3096F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003097F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Zhang Wei173acc72008-03-01 07:42:48 -07003099FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003100M: Li Yang <leoli@freescale.com>
3101M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003102L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003105
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003106FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003107M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003108L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003109L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003111F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003112
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003113FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003114M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003115L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003116L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003118F: arch/arm/plat-mxc/include/mach/imxfb.h
3119F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003120
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003121FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003122M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3123M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003124L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003125L: netdev@vger.kernel.org
3126S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003127F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003128F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003129
Timur Tabid9e9d822008-04-24 08:45:26 +10003130FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003131M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003132L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003134F: arch/powerpc/sysdev/qe_lib/
3135F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003136
Joe Perchesb55ef9292009-10-26 16:49:46 -07003137FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003138M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003139L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003140L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003141S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003142F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003143
Li Yangbeaf53b2007-05-25 13:54:02 +08003144FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003145M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003146L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003147L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003148S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003149F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003150
Timur Tabid9e9d822008-04-24 08:45:26 +10003151FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003152M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003153L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003154S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003155F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003156
3157FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003158M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003159L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003160L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003161S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003162F: sound/soc/fsl/fsl*
3163F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003166M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003169F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
Pavel Machek71038f52009-01-15 13:51:02 -08003171FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003172M: Pavel Machek <pavel@ucw.cz>
3173M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003174L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003176F: Documentation/power/freezing-of-tasks.txt
3177F: include/linux/freezer.h
3178F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003179
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003180FRONTSWAP API
3181M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3182L: linux-kernel@vger.kernel.org
3183S: Maintained
3184F: mm/frontswap.c
3185F: include/linux/frontswap.h
3186
David Howellsa5432f5a2009-04-20 15:46:45 +01003187FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003189L: linux-cachefs@redhat.com
3190S: Supported
3191F: Documentation/filesystems/caching/
3192F: fs/fscache/
3193F: include/linux/fscache*.h
3194
David Howells5ab7ffe2007-04-10 15:10:45 +01003195FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003196M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003198F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Jonathan Woithe20b93732008-06-11 10:14:56 +09303200FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303201M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003202L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003204F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303205
Heungjun Kim4da621b62011-11-11 08:05:33 -03003206FUJITSU M-5MO LS CAMERA ISP DRIVER
3207M: Kyungmin Park <kyungmin.park@samsung.com>
3208M: Heungjun Kim <riverful.kim@samsung.com>
3209L: linux-media@vger.kernel.org
3210S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003211F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003212F: include/media/m5mols.h
3213
Robert Gerlach2d24c492012-01-18 14:26:22 +01003214FUJITSU TABLET EXTRAS
3215M: Robert Gerlach <khnz@gmx.de>
3216L: platform-driver-x86@vger.kernel.org
3217S: Maintained
3218F: drivers/platform/x86/fujitsu-tablet.c
3219
Miklos Szeredi04578f12005-09-09 13:10:22 -07003220FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003221M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003222L: fuse-devel@lists.sourceforge.net
3223W: http://fuse.sourceforge.net/
3224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003225F: fs/fuse/
3226F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003229M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003231S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003232F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003235M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236L: linux-scsi@vger.kernel.org
3237W: http://www.icp-vortex.com/
3238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003239F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003241GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003242M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003244F: drivers/i2c/busses/i2c-gpio.c
3245F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003246
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003247GENERIC GPIO I2C MULTIPLEXER DRIVER
3248M: Peter Korsgaard <peter.korsgaard@barco.com>
3249L: linux-i2c@vger.kernel.org
3250S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003251F: drivers/i2c/muxes/i2c-mux-gpio.c
3252F: include/linux/i2c-mux-gpio.h
3253F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003254
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003255GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003256M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003259F: drivers/net/wan/c101.c
3260F: drivers/net/wan/hd6457*
3261F: drivers/net/wan/hdlc*
3262F: drivers/net/wan/n2.c
3263F: drivers/net/wan/pc300too.c
3264F: drivers/net/wan/pci200syn.c
3265F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003267GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003268M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003269L: linux-arch@vger.kernel.org
3270T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3271S: Maintained
3272F: include/asm-generic
3273
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003274GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003275M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003276L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003277S: Supported
3278F: drivers/uio/uio_pci_generic.c
3279
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003280GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003281M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003282L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003283W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003284T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3285T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003287F: Documentation/filesystems/gfs2*.txt
3288F: fs/gfs2/
3289F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003290
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003291GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003292M: Hansjoerg Lipp <hjlipp@web.de>
3293M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003294L: gigaset307x-common@lists.sourceforge.net
3295W: http://gigaset307x.sourceforge.net/
3296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003297F: Documentation/isdn/README.gigaset
3298F: drivers/isdn/gigaset/
3299F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003300
Grant Likelya0dc00b2011-02-12 01:48:14 -07003301GPIO SUBSYSTEM
3302M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003303M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003304S: Maintained
3305T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003306F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003307F: drivers/gpio/
3308F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003309F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003310
Harry Wei71a6d0a2011-05-11 15:13:33 -07003311GRE DEMULTIPLEXER DRIVER
3312M: Dmitry Kozlov <xeb@mail.ru>
3313L: netdev@vger.kernel.org
3314S: Maintained
3315F: net/ipv4/gre.c
3316F: include/net/gre.h
3317
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003318GRETH 10/100/1G Ethernet MAC device driver
3319M: Kristoffer Glembo <kristoffer@gaisler.com>
3320L: netdev@vger.kernel.org
3321S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003322F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003323
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003324GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003325M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003326L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003327T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003328S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003329F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003330
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003331GSPCA GL860 SUBDRIVER
3332M: Olivier Lorin <o.lorin@laposte.net>
3333L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003334T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003335S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003336F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003337
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003338GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003340L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003341T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003342S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003343F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003344
3345GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003347L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003348T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003349S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003350F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003351
Brian Johnson261982f2009-07-19 15:58:56 -03003352GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003353M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003354L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003355T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003356S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003357F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003358
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003359GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003360M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003361L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003362T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003363S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003364F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003365
3366GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003367M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003368L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003369T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003370S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003371F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003372
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003373STK1160 USB VIDEO CAPTURE DRIVER
3374M: Ezequiel Garcia <elezegarcia@gmail.com>
3375L: linux-media@vger.kernel.org
3376T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3377S: Maintained
3378F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003379
Harry Wei71a6d0a2011-05-11 15:13:33 -07003380HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3381M: Frank Seidel <frank@f-seidel.de>
3382L: platform-driver-x86@vger.kernel.org
3383W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3384S: Maintained
3385F: drivers/platform/x86/hdaps.c
3386
3387HWPOISON MEMORY FAILURE HANDLING
3388M: Andi Kleen <andi@firstfloor.org>
3389L: linux-mm@kvack.org
3390T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3391S: Maintained
3392F: mm/memory-failure.c
3393F: mm/hwpoison-inject.c
3394
3395HYPERVISOR VIRTUAL CONSOLE DRIVER
3396L: linuxppc-dev@lists.ozlabs.org
3397S: Odd Fixes
3398F: drivers/tty/hvc/
3399
Michael Buesch844dd052006-06-26 00:24:59 -07003400HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003401M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003402M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003403L: lm-sensors@lm-sensors.org
3404W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003405T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003406T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003407S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003408F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003409F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003410F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003411
3412HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003413M: Matt Mackall <mpm@selenic.com>
3414M: Herbert Xu <herbert@gondor.apana.org.au>
3415S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003416F: Documentation/hw_random.txt
3417F: drivers/char/hw_random/
3418F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003419
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003420HARDWARE SPINLOCK CORE
3421M: Ohad Ben-Cohen <ohad@wizery.com>
3422S: Maintained
3423F: Documentation/hwspinlock.txt
3424F: drivers/hwspinlock/hwspinlock_*
3425F: include/linux/hwspinlock.h
3426
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003428L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003430F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Antti Palosaari91952bc2012-10-01 12:28:46 -03003432HD29L2 MEDIA DRIVER
3433M: Antti Palosaari <crope@iki.fi>
3434L: linux-media@vger.kernel.org
3435W: http://linuxtv.org/
3436W: http://palosaari.fi/linux/
3437Q: http://patchwork.linuxtv.org/project/linux-media/list/
3438T: git git://linuxtv.org/anttip/media_tree.git
3439S: Maintained
3440F: drivers/media/dvb-frontends/hd29l2*
3441
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003442HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003443M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003444L: iss_storagedev@hp.com
3445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: Documentation/blockdev/cpqarray.txt
3447F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003448
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003449HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003450M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003451L: iss_storagedev@hp.com
3452S: Supported
3453F: Documentation/scsi/hpsa.txt
3454F: drivers/scsi/hpsa*.[ch]
3455F: include/linux/cciss*.h
3456
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003457HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003458M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003459L: iss_storagedev@hp.com
3460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003461F: Documentation/blockdev/cciss.txt
3462F: drivers/block/cciss*
3463F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003466L: linux-fsdevel@vger.kernel.org
3467S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003468F: Documentation/filesystems/hfs.txt
3469F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
3471HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003472M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473L: linux-nvidia@lists.surfsouth.com
3474W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003478HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003479M: Pavel Machek <pavel@ucw.cz>
3480M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003481L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003483F: arch/x86/power/
3484F: drivers/base/power/
3485F: kernel/power/
3486F: include/linux/suspend.h
3487F: include/linux/freezer.h
3488F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003489F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003490
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003491HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003492M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003493L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003494T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003496F: drivers/hid/
3497F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003498
Ingo Molnar38bed542007-02-22 09:09:34 +01003499HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003500M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003501T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003503F: Documentation/timers/
3504F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003505F: kernel/time/clockevents.c
3506F: kernel/time/tick*.*
3507F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003508F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003509F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003513S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003514F: drivers/net/hamradio/dmascc.c
3515F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003517HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003518M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003519W: http://www.highpoint-tech.com
3520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003521F: Documentation/scsi/hptiop.txt
3522F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003523
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003525M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526L: linux-hippi@sunsite.dk
3527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003528F: include/linux/hippidevice.h
3529F: include/linux/if_hippi.h
3530F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003531F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
Jouni Malinenff1d2762005-05-12 22:54:16 -04003533HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003534M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003535L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003536L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003537W: http://hostap.epitest.fi/
3538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003539F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003540
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003541HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003542L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003543S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003544F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003545
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003546HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003547M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003548S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003549F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003550
Joe Perches7d2c86b2009-04-07 20:59:01 -07003551HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003552M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003554F: Documentation/timers/hpet.txt
3555F: drivers/char/hpet.c
3556F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003557
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003558HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003559M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003561F: arch/x86/kernel/hpet.c
3562F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003565M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003568F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Joe Perches7d2c86b2009-04-07 20:59:01 -07003570HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003571M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003572W: http://www.pharscape.org
3573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003574F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003575
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003576HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003577M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003578L: linux-input@vger.kernel.org
3579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003580F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003581
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003583M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003585F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003587Hyper-V CORE AND DRIVERS
3588M: K. Y. Srinivasan <kys@microsoft.com>
3589M: Haiyang Zhang <haiyangz@microsoft.com>
3590L: devel@linuxdriverproject.org
3591S: Maintained
3592F: drivers/hv/
3593F: drivers/hid/hid-hyperv.c
3594F: drivers/net/hyperv/
3595F: drivers/staging/hv/
3596
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003597I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003598M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003599L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003601F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003602
Jean Delvare5b543962005-08-15 19:51:02 +02003603I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003604M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3605M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003606M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003607L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003608W: http://i2c.wiki.kernel.org/
3609T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003610T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003612F: Documentation/i2c/
3613F: drivers/i2c/
3614F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003615F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Till Harbaume8c76ee2007-05-01 23:26:35 +02003617I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003618M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003619L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003620W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003622F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003623
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003627F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
3629i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003631T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632S: Maintained
3633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003635M: Tony Luck <tony.luck@intel.com>
3636M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003638T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003640F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
Kent Yoder956c2032012-09-07 04:17:01 +08003642IBM Power in-Nest Crypto Acceleration
3643M: Kent Yoder <key@linux.vnet.ibm.com>
3644L: linux-crypto@vger.kernel.org
3645S: Supported
3646F: drivers/crypto/nx/
3647
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003648IBM Power 842 compression accelerator
3649M: Robert Jennings <rcj@linux.vnet.ibm.com>
3650S: Supported
3651F: drivers/crypto/nx/nx-842.c
3652F: include/linux/nx842.h
3653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003655M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003657F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Santiago Leon9d348af2010-09-03 18:29:53 +00003659IBM Power Virtual Ethernet Device Driver
3660M: Santiago Leon <santil@linux.vnet.ibm.com>
3661L: netdev@vger.kernel.org
3662S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003663F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003664
Robert Jennings4b7652c2012-07-31 12:34:36 -05003665IBM Power Virtual SCSI/FC Device Drivers
3666M: Robert Jennings <rcj@linux.vnet.ibm.com>
3667L: linux-scsi@vger.kernel.org
3668S: Supported
3669F: drivers/scsi/ibmvscsi/
3670X: drivers/scsi/ibmvscsi/ibmvstgt.c
3671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672IBM ServeRAID RAID DRIVER
3673P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003674M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003676S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003677F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003679ICH LPC AND GPIO DRIVER
3680M: Peter Tyser <ptyser@xes-inc.com>
3681S: Maintained
3682F: drivers/mfd/lpc_ich.c
3683F: drivers/gpio/gpio-ich.c
3684
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003685IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003688Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003689T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003691F: Documentation/ide/
3692F: drivers/ide/
3693F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Ike Panhc6cb8c132011-08-25 22:28:45 +08003695IDEAPAD LAPTOP EXTRAS DRIVER
3696M: Ike Panhc <ike.pan@canonical.com>
3697L: platform-driver-x86@vger.kernel.org
3698W: http://launchpad.net/ideapad-laptop
3699S: Maintained
3700F: drivers/platform/x86/ideapad-laptop.c
3701
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003702IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003703M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003704L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003706F: Documentation/cdrom/ide-cd
3707F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
Andy Henroid27471fd2008-10-09 11:45:22 -07003709IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003710M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003711L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003712S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003713F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003714
Sergey Lapin02cf2282009-06-08 12:18:50 +00003715IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003716M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003717M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003718L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003719W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003720T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003721S: Maintained
3722F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003723F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003724F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003725
Ameya Palande9545f862012-01-10 09:00:58 -08003726IIO SUBSYSTEM AND DRIVERS
3727M: Jonathan Cameron <jic23@cam.ac.uk>
3728L: linux-iio@vger.kernel.org
3729S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003730F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003731F: drivers/staging/iio/
3732
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003733IKANOS/ADI EAGLE ADSL USB DRIVER
3734M: Matthieu Castet <castet.matthieu@free.fr>
3735M: Stanislaw Gruszka <stf_xl@wp.pl>
3736S: Maintained
3737F: drivers/usb/atm/ueagle-atm.c
3738
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003739INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003740M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003742F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003743
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003745L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003746S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003747F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
3749INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003750M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003751M: Sean Hefty <sean.hefty@intel.com>
3752M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003753L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003754W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003755Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003756T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003758F: Documentation/infiniband/
3759F: drivers/infiniband/
3760F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Robert Lovec9f04f52005-07-15 12:21:07 -04003762INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003763M: John McCutchan <john@johnmccutchan.com>
3764M: Robert Love <rlove@rlove.org>
3765M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003767F: Documentation/filesystems/inotify.txt
3768F: fs/notify/inotify/
3769F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003770
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003771INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003772M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3773M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003774L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003775Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003776T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003778F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003779F: include/linux/input.h
3780F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003781
Henrik Rydberg3267a872010-06-24 19:10:40 -07003782INPUT MULTITOUCH (MT) PROTOCOL
3783M: Henrik Rydberg <rydberg@euromail.se>
3784L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003785T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003786S: Maintained
3787F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003788F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003789K: \b(ABS|SYN)_MT_
3790
Dave Jiang4ac13e12011-07-29 17:16:55 -07003791INTEL C600 SERIES SAS CONTROLLER DRIVER
3792M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003793M: Lukasz Dorau <lukasz.dorau@intel.com>
3794M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003795M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003796L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003797T: git git://git.code.sf.net/p/intel-sas/isci
3798S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003799F: drivers/scsi/isci/
3800F: firmware/isci/
3801
Len Brown26717172010-03-08 14:07:30 -05003802INTEL IDLE DRIVER
3803M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003804L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003805T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003806S: Supported
3807F: drivers/idle/intel_idle.c
3808
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003809INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003810M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003811L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003813F: Documentation/fb/intelfb.txt
3814F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003815
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003817M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003818L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303822INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003823M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003824L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303825W: http://www.lesswatts.org/projects/acpi/
3826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003827F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003832F: arch/x86/kernel/microcode_core.c
3833F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003835INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003836M: Dan Williams <djbw@fb.com>
3837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003838F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003839
David Woodhouse6c8909b2008-10-18 16:12:17 +01003840INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003841M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003842L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003843T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003844S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003845F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003846F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003847
Dan Williamsb3e5f262007-08-07 10:26:35 -07003848INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003849M: Dan Williams <djbw@fb.com>
3850S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003851F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003852
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003853INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003854M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003856F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3857F: arch/arm/mach-ixp4xx/include/mach/npe.h
3858F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3859F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003860F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003861F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003862
Michael Buesch844dd052006-06-26 00:24:59 -07003863INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003864M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003866F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003867
Jeff Kirsher0d164402010-10-05 01:15:17 +00003868INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003869M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3870M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3871M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003872M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3873M: Don Skidmore <donald.c.skidmore@intel.com>
3874M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003875M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003876M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003877M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003878L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003879W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003880T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3881T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003883F: Documentation/networking/e100.txt
3884F: Documentation/networking/e1000.txt
3885F: Documentation/networking/e1000e.txt
3886F: Documentation/networking/igb.txt
3887F: Documentation/networking/igbvf.txt
3888F: Documentation/networking/ixgb.txt
3889F: Documentation/networking/ixgbe.txt
3890F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003891F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Len Brown6dccf9c2011-07-12 22:29:32 -04003893INTEL MRST PMU DRIVER
3894M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003895L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003896S: Supported
3897F: arch/x86/platform/mrst/pmu.*
3898
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003899INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3900M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003901L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003903F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003904F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003905F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003906
Shane Wang4bd96a72010-03-10 14:36:10 +08003907INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003908M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3909M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003910M: Shane Wang <shane.wang@intel.com>
3911L: tboot-devel@lists.sourceforge.net
3912W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003913T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003914S: Supported
3915F: Documentation/intel_txt.txt
3916F: include/linux/tboot.h
3917F: arch/x86/kernel/tboot.c
3918
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003919INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003920M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003921M: linux-wimax@intel.com
3922L: wimax@linuxwimax.org
3923S: Supported
3924W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003925F: Documentation/wimax/README.i2400m
3926F: drivers/net/wimax/i2400m/
3927F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003928
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003929INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3930M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003931L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003932S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003933F: drivers/net/wireless/iwlegacy/
3934
Zhu Yib481de92007-09-25 17:54:57 -07003935INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003936M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003937M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003938M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003939L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003940W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07003941T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003943F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003944
Tomas Winklerde8fe022012-05-09 16:39:02 +03003945INTEL MANAGEMENT ENGINE (mei)
3946M: Tomas Winkler <tomas.winkler@intel.com>
3947L: linux-kernel@vger.kernel.org
3948S: Supported
3949F: include/linux/mei.h
3950F: drivers/misc/mei/*
3951F: Documentation/mei/*
3952
Ralf Baechlecb109a02007-08-30 23:56:30 -07003953IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003954M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955L: linux-mips@linux-mips.org
3956S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003957F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Ralf Baechlecb109a02007-08-30 23:56:30 -07003959IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003960M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003961L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003962S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003963F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003964
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003965IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003966M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003968F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
Francois Romieu1202d6f2007-09-17 17:13:55 -07003970IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003971M: Francois Romieu <romieu@fr.zoreil.com>
3972M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003973L: netdev@vger.kernel.org
3974S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003975F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003976
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003977IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003978M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003979L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003981F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003982
Corey Minyard4409ebe2006-04-20 02:43:12 -07003983IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003985L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003986W: http://openipmi.sourceforge.net/
3987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003988F: Documentation/IPMI.txt
3989F: drivers/char/ipmi/
3990F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003991
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003992IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003993M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003994L: linux-scsi@vger.kernel.org
3995W: http://www.adaptec.com/
3996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003997F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003998
3999IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004000M: Wensong Zhang <wensong@linux-vs.org>
4001M: Simon Horman <horms@verge.net.au>
4002M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004003L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004004L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004006F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004007F: include/net/ip_vs.h
4008F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004009F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010
Randy Dunlape7839f22008-10-12 16:11:45 -07004011IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004012M: Jiri Kosina <jkosina@suse.cz>
4013M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004014S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004015F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004016
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004017IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004018M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004019L: netdev@vger.kernel.org
4020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004021F: include/linux/ipx.h
4022F: include/net/ipx.h
4023F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004024
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004026M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004027L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004028L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004030S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004031T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004032F: Documentation/networking/irda.txt
4033F: drivers/net/irda/
4034F: include/net/irda/
4035F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004037IRQ SUBSYSTEM
4038M: Thomas Gleixner <tglx@linutronix.de>
4039S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004040T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004041F: kernel/irq/
4042
Grant Likely7ab3a832012-02-14 14:06:47 -07004043IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4044M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4045M: Grant Likely <grant.likely@secretlab.ca>
4046T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4047S: Maintained
4048F: Documentation/IRQ-domain.txt
4049F: include/linux/irqdomain.h
4050F: kernel/irq/irqdomain.c
4051
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004052ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004053M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004055F: Documentation/isapnp.txt
4056F: drivers/pnp/isapnp/
4057F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004058
Harry Wei71a6d0a2011-05-11 15:13:33 -07004059iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4060M: Peter Jones <pjones@redhat.com>
4061M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4062S: Maintained
4063F: drivers/firmware/iscsi_ibft*
4064
Mike Christie14816b1e2007-11-28 16:22:06 -08004065ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004066M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004067L: open-iscsi@googlegroups.com
4068W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004069T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004071F: drivers/scsi/*iscsi*
4072F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004073
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004075M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004076L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004077L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004079T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004081F: Documentation/isdn/
4082F: drivers/isdn/
4083F: include/linux/isdn.h
4084F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
4086ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004087M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004088L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089W: http://www.melware.de
4090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004091F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
Jean Delvared6248702010-03-05 22:17:20 +01004093IT87 HARDWARE MONITORING DRIVER
4094M: Jean Delvare <khali@linux-fr.org>
4095L: lm-sensors@lm-sensors.org
4096S: Maintained
4097F: Documentation/hwmon/it87
4098F: drivers/hwmon/it87.c
4099
Hans Verkuil91821ff2007-12-02 09:35:33 -03004100IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004101M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004102L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004103L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004104T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004105W: http://www.ivtvdriver.org
4106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004107F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004108F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004109F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004110
Guenter Roeck4453d732010-08-09 17:21:08 -07004111JC42.4 TEMPERATURE SENSOR DRIVER
4112M: Guenter Roeck <linux@roeck-us.net>
4113L: lm-sensors@lm-sensors.org
4114S: Maintained
4115F: drivers/hwmon/jc42.c
4116F: Documentation/hwmon/jc42
4117
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004118JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004119M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004120L: jfs-discussion@lists.sourceforge.net
4121W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004122T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004124F: Documentation/filesystems/jfs.txt
4125F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004126
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004127JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004129L: netdev@vger.kernel.org
4130S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004131F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004132
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004134M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004135L: linux-mtd@lists.infradead.org
4136W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004138F: fs/jffs2/
4139F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Josh Triplettde456d32006-07-30 03:04:00 -07004141JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004142M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004143M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004144L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004145S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004146F: fs/jbd/
4147F: include/linux/ext3_jbd.h
4148F: include/linux/jbd.h
4149
4150JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4151M: "Theodore Ts'o" <tytso@mit.edu>
4152L: linux-ext4@vger.kernel.org
4153S: Maintained
4154F: fs/jbd2/
4155F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004156
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004157JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004158M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004159L: linux-serial@vger.kernel.org
4160S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004161F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004162
Clemens Ladischaf399172011-01-10 16:32:54 +01004163K10TEMP HARDWARE MONITORING DRIVER
4164M: Clemens Ladisch <clemens@ladisch.de>
4165L: lm-sensors@lm-sensors.org
4166S: Maintained
4167F: Documentation/hwmon/k10temp
4168F: drivers/hwmon/k10temp.c
4169
Rudolf Marek4660cb32006-10-08 22:01:26 +02004170K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004171M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004172L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004174F: Documentation/hwmon/k8temp
4175F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
4177KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004178M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004179L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004180S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004181F: Documentation/kbuild/kconfig-language.txt
4182F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Vivek Goyalea6c2082006-05-20 14:59:55 -07004184KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004185M: Vivek Goyal <vgoyal@redhat.com>
4186M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004187L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004188W: http://lse.sourceforge.net/kdump/
4189S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004190F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004193M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004194L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004196F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Michal Marek70fb7ba2010-01-29 14:22:43 +01004198KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004199M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004200T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4201T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004202L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004204F: Documentation/kbuild/
4205F: Makefile
4206F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004207F: scripts/basic/
4208F: scripts/mk*
4209F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
4211KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004212L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004213W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004214S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004216KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004217M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004218L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004221F: fs/nfsd/
4222F: include/linux/nfsd/
4223F: fs/lockd/
4224F: fs/nfs_common/
4225F: net/sunrpc/
4226F: include/linux/lockd/
4227F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
Avi Kivity426d62e2006-12-13 00:34:03 -08004229KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004230M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004231M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004232L: kvm@vger.kernel.org
4233W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004234S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004235F: Documentation/*/kvm.txt
4236F: arch/*/kvm/
4237F: arch/*/include/asm/kvm*
4238F: include/linux/kvm*
4239F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004240
Joerg Roedelad8003d2008-09-10 20:01:07 +02004241KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004242M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004243L: kvm@vger.kernel.org
4244W: http://kvm.qumranet.com
4245S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004246F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004247F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004248
Hollis Blanchard513014b2008-04-16 23:28:08 -05004249KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004250M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004251L: kvm-ppc@vger.kernel.org
4252W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004254F: arch/powerpc/include/asm/kvm*
4255F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004256
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004257KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004258M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004259L: kvm-ia64@vger.kernel.org
4260W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004262F: Documentation/ia64/kvm.txt
4263F: arch/ia64/include/asm/kvm*
4264F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004265
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004266KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004267M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004268M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004269M: linux390@de.ibm.com
4270L: linux-s390@vger.kernel.org
4271W: http://www.ibm.com/developerworks/linux/linux390/
4272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004273F: Documentation/s390/kvm.txt
4274F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004275F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004276F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004277
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004278KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004279M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004280W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004281L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004283F: include/linux/kexec.h
4284F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004285
David Howellse9714612010-03-29 23:42:09 +01004286KEYS/KEYRINGS:
4287M: David Howells <dhowells@redhat.com>
4288L: keyrings@linux-nfs.org
4289S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004290F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004291F: include/linux/key.h
4292F: include/linux/key-type.h
4293F: include/keys/
4294F: security/keys/
4295
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004296KEYS-TRUSTED
4297M: David Safford <safford@watson.ibm.com>
4298M: Mimi Zohar <zohar@us.ibm.com>
4299L: linux-security-module@vger.kernel.org
4300L: keyrings@linux-nfs.org
4301S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004302F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004303F: include/keys/trusted-type.h
4304F: security/keys/trusted.c
4305F: security/keys/trusted.h
4306
4307KEYS-ENCRYPTED
4308M: Mimi Zohar <zohar@us.ibm.com>
4309M: David Safford <safford@watson.ibm.com>
4310L: linux-security-module@vger.kernel.org
4311L: keyrings@linux-nfs.org
4312S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004313F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004314F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004315F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004316
Jason Wessel5b778da2010-05-20 21:04:28 -05004317KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004318M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004319W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004320L: kgdb-bugreport@lists.sourceforge.net
4321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004322F: Documentation/DocBook/kgdb.tmpl
4323F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004324F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004325F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004326F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004327F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004328
Pekka Enberg456db8c2008-04-28 22:47:29 +03004329KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004330M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004331M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004332S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004333F: Documentation/kmemcheck.txt
4334F: arch/x86/include/asm/kmemcheck.h
4335F: arch/x86/mm/kmemcheck/
4336F: include/linux/kmemcheck.h
4337F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004338
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004339KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004340M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004341S: Maintained
4342F: Documentation/kmemleak.txt
4343F: include/linux/kmemleak.h
4344F: mm/kmemleak.c
4345F: mm/kmemleak-test.c
4346
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004347KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004348M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4349M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4350M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004351M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004353F: Documentation/kprobes.txt
4354F: include/linux/kprobes.h
4355F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004356
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004357KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004358M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004359W: http://miguelojeda.es/auxdisplay.htm
4360W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004362F: Documentation/auxdisplay/ks0108
4363F: drivers/auxdisplay/ks0108.c
4364F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004365
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004368S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004369F: Documentation/networking/lapb-module.txt
4370F: include/*/lapb.h
4371F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
4373LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004374M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375L: linux-scsi@vger.kernel.org
4376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004377F: Documentation/scsi/53c700.txt
4378F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Richard Purdie263de9b2006-05-15 09:44:16 -07004380LED SUBSYSTEM
Bryan Wu17ff3c12012-05-10 13:01:47 -07004381M: Bryan Wu <bryan.wu@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004383L: linux-leds@vger.kernel.org
4384T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004386F: drivers/leds/
4387F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004388
Jean Delvareb0461a42011-06-15 15:08:46 -07004389LEGACY EEPROM DRIVER
4390M: Jean Delvare <khali@linux-fr.org>
4391S: Maintained
4392F: Documentation/misc-devices/eeprom
4393F: drivers/misc/eeprom/eeprom.c
4394
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004396M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397L: legousb-devel@lists.sourceforge.net
4398W: http://legousb.sourceforge.net/
4399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Michael Krufky055616a2012-10-02 00:56:06 -03004402LG2160 MEDIA DRIVER
4403M: Michael Krufky <mkrufky@linuxtv.org>
4404L: linux-media@vger.kernel.org
4405W: http://linuxtv.org/
4406W: http://github.com/mkrufky
4407Q: http://patchwork.linuxtv.org/project/linux-media/list/
4408T: git git://linuxtv.org/mkrufky/tuners.git
4409S: Maintained
4410F: drivers/media/dvb-frontends/lg2160.*
4411
Michael Krufky6f0e7722012-10-02 00:56:00 -03004412LGDT3305 MEDIA DRIVER
4413M: Michael Krufky <mkrufky@linuxtv.org>
4414L: linux-media@vger.kernel.org
4415W: http://linuxtv.org/
4416W: http://github.com/mkrufky
4417Q: http://patchwork.linuxtv.org/project/linux-media/list/
4418T: git git://linuxtv.org/mkrufky/tuners.git
4419S: Maintained
4420F: drivers/media/dvb-frontends/lgdt3305.*
4421
Rusty Russell568a17f2007-10-25 14:12:24 +10004422LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004423M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004424L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004425W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004426S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004427F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004428F: arch/x86/lguest/
4429F: drivers/lguest/
4430F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004431F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004434M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435W: http://www.ibm.com/linux/ltc/projects/ppc
4436S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004437F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004439LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004440M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4441M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004443L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004444Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004445T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004447F: Documentation/powerpc/
4448F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
4450LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004451M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004453L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004455F: arch/powerpc/platforms/powermac/
4456F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Grant Likely77a76362008-07-12 12:11:43 -06004458LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004459M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004460L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004461T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004463F: arch/powerpc/platforms/512x/
4464F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
4466LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004467M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004468M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004470L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004471T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004473F: arch/powerpc/platforms/40x/
4474F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
Grant Likely260c02a2007-10-02 12:15:34 +10004476LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004477M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004478W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004479L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004480T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004482F: arch/powerpc/*/*virtex*
4483F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
Tom Rinie93adf12005-07-26 12:49:53 -07004485LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004486M: Vitaly Bordug <vitb@kernel.crashing.org>
4487M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004488W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004489L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004490S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004491F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004494M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004495W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004496L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004497S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004498F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004499F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Olof Johanssonab06ff32006-09-06 14:44:54 -05004501LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004502M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004503L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004504S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004505F: arch/powerpc/platforms/pasemi/
4506F: drivers/*/*pasemi*
4507F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004508
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004510M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004511L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512S: Supported
4513
Harry Weia23ce6d2011-02-11 16:52:20 +01004514LIS3LV02D ACCELEROMETER DRIVER
4515M: Eric Piel <eric.piel@tremplin-utc.net>
4516S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004517F: Documentation/misc-devices/lis3lv02d
4518F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004519F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004520
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004521LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004522M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004524F: include/linux/llc.h
4525F: include/net/llc*
4526F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004527
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004528LM73 HARDWARE MONITOR DRIVER
4529M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4530L: lm-sensors@lm-sensors.org
4531S: Maintained
4532F: drivers/hwmon/lm73.c
4533
Jean Delvare156e2d12011-07-25 21:46:11 +02004534LM78 HARDWARE MONITOR DRIVER
4535M: Jean Delvare <khali@linux-fr.org>
4536L: lm-sensors@lm-sensors.org
4537S: Maintained
4538F: Documentation/hwmon/lm78
4539F: drivers/hwmon/lm78.c
4540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004543L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004545F: Documentation/hwmon/lm83
4546F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
4548LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004550L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004552F: Documentation/hwmon/lm90
4553F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004555LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004556M: Peter Zijlstra <peterz@infradead.org>
4557M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004558T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004560F: Documentation/lockdep*.txt
4561F: Documentation/lockstat.txt
4562F: include/linux/lockdep.h
4563F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004564
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004565LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004567L: linux-ntfs-dev@lists.sourceforge.net
4568W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004570F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004571F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
Joern Engelef6ada32009-11-20 22:17:12 +01004573LogFS
4574M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304575M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004576L: logfs@logfs.org
4577W: logfs.org
4578S: Maintained
4579F: fs/logfs/
4580
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004581LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004582M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004583M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004584L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004585L: linux-scsi@vger.kernel.org
4586W: http://www.lsilogic.com/support
4587S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004588F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004589
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004591M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592L: linux-scsi@vger.kernel.org
4593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004594F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
Guenter Roecke5f5c992010-06-25 11:59:54 -07004596LTC4261 HARDWARE MONITOR DRIVER
4597M: Guenter Roeck <linux@roeck-us.net>
4598L: lm-sensors@lm-sensors.org
4599S: Maintained
4600F: Documentation/hwmon/ltc4261
4601F: drivers/hwmon/ltc4261.c
4602
Mike Frysinger81365c32008-10-29 14:01:12 -07004603LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004604M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004605M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004606M: Cyril Hrubis <chrubis@suse.cz>
4607M: Caspar Zhang <caspar@casparzhang.com>
4608M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004609L: ltp-list@lists.sourceforge.net (subscribers-only)
4610W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004611T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004612T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004613S: Maintained
4614
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004615M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004616M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004617L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004618L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4619W: http://www.linux-m32r.org/
4620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004621F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004622
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004624M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625L: linux-m68k@lists.linux-m68k.org
4626W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004627T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004629F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004630F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
4632M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004633M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004635L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004637F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638
4639M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004640M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641W: http://www.tazenda.demon.co.uk/phil/linux-hp
4642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004643F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
Jiri Benc64a327a2007-05-05 11:47:08 -07004645MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004646M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004647L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004648W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004649T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4650T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004652F: Documentation/networking/mac80211-injection.txt
4653F: include/net/mac80211.h
4654F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004655
Stefano Brivio1036d862007-12-23 04:46:27 +01004656MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004657M: Stefano Brivio <stefano.brivio@polimi.it>
4658M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004659L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004660W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004661T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4662T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004664F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004665
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004666MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004668L: netdev@vger.kernel.org
4669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004670F: drivers/net/macvlan.c
4671F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004672
Michael Kerriskfaf16682005-07-31 22:34:47 -07004673MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004674M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004675W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004676L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004677S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004678
stephen hemminger44c14c12012-04-02 12:59:47 +00004679MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4680M: Mirko Lindner <mlindner@marvell.com>
4681M: Stephen Hemminger <shemminger@vyatta.com>
4682L: netdev@vger.kernel.org
4683S: Maintained
4684F: drivers/net/ethernet/marvell/sk*
4685
Stefano Brivio74cda162007-11-19 20:27:46 +01004686MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004688L: libertas-dev@lists.infradead.org
4689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004690F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004691
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004692MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004693M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004694L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004695S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004696F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004697F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Bing Zhaofcad5842011-07-13 13:11:58 -07004699MARVELL MWIFIEX WIRELESS DRIVER
4700M: Bing Zhao <bzhao@marvell.com>
4701L: linux-wireless@vger.kernel.org
4702S: Maintained
4703F: drivers/net/wireless/mwifiex/
4704
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004705MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004706M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004707L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004708S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004709F: drivers/net/wireless/mwl8k.c
4710
Pierre Ossman2a695672009-03-16 19:52:26 +01004711MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004712M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004713S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004714F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004715
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004717L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004718S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004719F: drivers/video/matrox/matroxfb_*
4720F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721
Guenter Roeckca462082012-06-01 23:28:23 -07004722MAX16065 HARDWARE MONITOR DRIVER
4723M: Guenter Roeck <linux@roeck-us.net>
4724L: lm-sensors@lm-sensors.org
4725S: Maintained
4726F: Documentation/hwmon/max16065
4727F: drivers/hwmon/max16065.c
4728
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004729MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004730M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004731L: lm-sensors@lm-sensors.org
4732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004733F: Documentation/hwmon/max6650
4734F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004735
Joe Perches127c49a2009-04-08 08:34:04 -07004736MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004737M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004738P: LinuxTV.org Project
4739L: linux-media@vger.kernel.org
4740W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004741Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004742T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004743S: Maintained
4744F: Documentation/dvb/
4745F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004746F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004747F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004748F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004749F: include/media/
4750F: include/linux/dvb/
4751F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004752
4753MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004754M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004755L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004756W: http://megaraid.lsilogic.com
4757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004758F: Documentation/scsi/megaraid.txt
4759F: drivers/scsi/megaraid.*
4760F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004761
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004762MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764W: http://www.linux-mm.org
4765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004766F: include/linux/mm.h
4767F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004768
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004769MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004770M: Johannes Weiner <hannes@cmpxchg.org>
4771M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004772M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004773M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004774L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004775L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004777F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004778F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004779
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004781M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004783W: http://www.linux-mtd.infradead.org/
4784Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004785T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: drivers/mtd/
4788F: include/linux/mtd/
4789F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790
Michal Simekc6375b02009-03-27 14:25:52 +01004791MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004792M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004793L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004794W: http://www.monstr.eu/fdt/
4795T: git git://git.monstr.eu/linux-2.6-microblaze.git
4796S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004797F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004800M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004802F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
4804MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004805M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004807W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004808T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004809Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004810S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004811F: Documentation/mips/
4812F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004817F: include/linux/module.h
4818F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
4820MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004822S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004823F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004824F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004825F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
Pavel Pisac58ff042007-05-16 01:10:41 +02004827MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004828M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004829L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004831F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004832
Jiri Slabyb9705b62008-04-30 00:53:48 -07004833MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004834M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004836F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004837F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004838
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004839MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004840M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004841L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004843F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004844
Anisse Astier0f1006b2009-12-17 11:28:49 +01004845MSI WMI SUPPORT
4846M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05004847L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004848S: Supported
4849F: drivers/platform/x86/msi-wmi.c
4850
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004851MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004853T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004854S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004855F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004856
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004857MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004858M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004859L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004860T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004862F: drivers/mmc/
4863F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004864
David Brownell15a05802007-08-08 09:12:54 -07004865MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004866S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004867F: drivers/mmc/host/mmc_spi.c
4868F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004869
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004871M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004873F: Documentation/sound/oss/MultiSound
4874F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
Jiri Slabyd7354102006-12-08 02:38:35 -08004876MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004877S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004878F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004879F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004880
Felipe Balbi550a7372008-07-24 12:27:36 +03004881MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004882M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004883L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004884T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004886F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004887
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004888MXL5007T MEDIA DRIVER
4889M: Michael Krufky <mkrufky@linuxtv.org>
4890L: linux-media@vger.kernel.org
4891W: http://linuxtv.org/
4892W: http://github.com/mkrufky
4893Q: http://patchwork.linuxtv.org/project/linux-media/list/
4894T: git git://linuxtv.org/mkrufky/tuners.git
4895S: Maintained
4896F: drivers/media/tuners/mxl5007t.*
4897
Brice Goglin2d3cf582008-05-17 12:45:36 +02004898MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004899M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004900L: netdev@vger.kernel.org
4901W: http://www.myri.com/scs/download-Myri10GE.html
4902S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004903F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004904
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004906S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004907F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908
Daniel Mack23dc05a2011-05-18 11:28:38 +02004909NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4910M: Daniel Mack <zonque@gmail.com>
4911S: Maintained
4912L: alsa-devel@alsa-project.org
4913W: http://www.native-instruments.com
4914F: sound/usb/caiaq/
4915
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004917M: Petr Vandrovec <petr@vandrovec.name>
4918S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004919F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
4921NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004922M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923L: linux-scsi@vger.kernel.org
4924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004925F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004927NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004928M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004929L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004930W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004931S: Supported
4932F: drivers/infiniband/hw/nes/
4933
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004934NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004935M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004936L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004938F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004939
Jon Masonb2f5a052010-07-15 08:47:27 +00004940NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004941M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004942L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004943S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004944F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004945F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004946F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004947
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949P: Harald Welte
4950P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004951M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004952M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004953L: netfilter-devel@vger.kernel.org
4954L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004955L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956W: http://www.netfilter.org/
4957W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004958T: git git://1984.lsi.us.es/nf
4959T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004961F: include/linux/netfilter*
4962F: include/linux/netfilter/
4963F: include/net/netfilter/
4964F: net/*/netfilter.c
4965F: net/*/netfilter/
4966F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
Paul Moore4cc67732006-09-25 15:57:13 -07004968NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004969M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004970W: http://netlabel.sf.net
4971L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004972S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004973F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004974F: include/net/netlabel.h
4975F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004976
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004978M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004980W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004982F: include/linux/netrom.h
4983F: include/net/netrom.h
4984F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004986NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004987M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004989F: Documentation/blockdev/nbd.txt
4990F: drivers/block/nbd.c
4991F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Neil Horman6e436502009-10-05 03:56:55 +00004993NETWORK DROP MONITOR
4994M: Neil Horman <nhorman@tuxdriver.com>
4995L: netdev@vger.kernel.org
4996S: Maintained
4997W: https://fedorahosted.org/dropwatch/
4998F: net/core/drop_monitor.c
4999
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005001M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005002L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005003W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005004W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005005T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5006T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005008F: net/
5009F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005010F: include/linux/in.h
5011F: include/linux/net.h
5012F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
5014NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005015M: "David S. Miller" <davem@davemloft.net>
5016M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005017M: James Morris <jmorris@namei.org>
5018M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5019M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005020L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005021T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005023F: net/ipv4/
5024F: net/ipv6/
5025F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005026F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027
James Morris10e2ff12007-08-25 14:41:28 -07005028NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005029M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005030L: netdev@vger.kernel.org
5031S: Maintained
5032
John W. Linville29f8f632006-01-18 14:52:48 -08005033NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005034M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005035L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005036Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005037T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005038S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005039F: net/mac80211/
5040F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005041F: net/wireless/
5042F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005043F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005044F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005045F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005046
Joe Perches788873a2009-04-16 09:38:45 +00005047NETWORKING DRIVERS
5048L: netdev@vger.kernel.org
5049W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005050T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5051T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005052S: Odd Fixes
5053F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005054F: include/linux/if_*
5055F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00005056
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005057NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005058M: Sony Chacko <sony.chacko@qlogic.com>
5059M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005060L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005061W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005062S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005063F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005064
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005065NFC SUBSYSTEM
5066M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5067M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5068M: Samuel Ortiz <sameo@linux.intel.com>
5069L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005070L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005071S: Maintained
5072F: net/nfc/
5073F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005074F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005075F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005077NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005078M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005079L: linux-nfs@vger.kernel.org
5080W: http://client.linux-nfs.org
5081T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005083F: fs/lockd/
5084F: fs/nfs/
5085F: fs/nfs_common/
5086F: net/sunrpc/
5087F: include/linux/lockd/
5088F: include/linux/nfs*
5089F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
5091NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005092M: Jan-Pascal van Best <janpascal@vanbest.org>
5093M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005096F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005098NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005099M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005100L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005101W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005102T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005104F: Documentation/filesystems/nilfs2.txt
5105F: fs/nilfs2/
5106F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005109M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005112F: Documentation/scsi/NinjaSCSI.txt
5113F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
5115NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005116M: GOTO Masanori <gotom@debian.or.jp>
5117M: 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/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005124M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005126W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005127T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005129F: Documentation/filesystems/ntfs.txt
5130F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005132NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005133M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005134L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005136F: drivers/video/riva/
5137F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138
Tony Lindgrenf5525782009-05-28 13:23:53 -07005139OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005140M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005141L: linux-omap@vger.kernel.org
5142W: http://www.muru.com/linux/omap/
5143W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005144Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005145T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005146S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005147F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005148F: drivers/i2c/busses/i2c-omap.c
5149F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005150
5151OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005152M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005153L: linux-omap@vger.kernel.org
5154S: Maintained
5155F: arch/arm/*omap*/*clock*
5156
5157OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005158M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005159L: linux-omap@vger.kernel.org
5160S: Maintained
5161F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005162F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005163
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005164OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5165M: Rajendra Nayak <rnayak@ti.com>
5166M: Paul Walmsley <paul@pwsan.com>
5167L: linux-omap@vger.kernel.org
5168S: Maintained
5169F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5170F: arch/arm/mach-omap2/powerdomain44xx.c
5171F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5172F: arch/arm/mach-omap2/clockdomain44xx.c
5173
Tony Lindgrenf5525782009-05-28 13:23:53 -07005174OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005175M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005176M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005177L: alsa-devel@alsa-project.org (subscribers-only)
5178L: linux-omap@vger.kernel.org
5179S: Maintained
5180F: sound/soc/omap/
5181
5182OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005183M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005184L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005185L: linux-omap@vger.kernel.org
5186S: Maintained
5187F: drivers/video/omap/
5188
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005189OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005190M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005191L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005192L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005193S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005194F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005195F: Documentation/arm/OMAP/DSS
5196
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005197OMAP HARDWARE SPINLOCK SUPPORT
5198M: Ohad Ben-Cohen <ohad@wizery.com>
5199L: linux-omap@vger.kernel.org
5200S: Maintained
5201F: drivers/hwspinlock/omap_hwspinlock.c
5202F: arch/arm/mach-omap2/hwspinlock.c
5203
Tony Lindgrenf5525782009-05-28 13:23:53 -07005204OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005205M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005206L: linux-omap@vger.kernel.org
5207S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005208F: drivers/mmc/host/omap.c
5209
5210OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305211M: Venkatraman S <svenkatr@ti.com>
5212L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005213L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305214S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005215F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005216
5217OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005218M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005219S: Maintained
5220F: drivers/char/hw_random/omap-rng.c
5221
Paul Walmsleyf400c822010-12-06 19:08:54 -07005222OMAP HWMOD SUPPORT
5223M: Benoît Cousson <b-cousson@ti.com>
5224M: Paul Walmsley <paul@pwsan.com>
5225L: linux-omap@vger.kernel.org
5226S: Maintained
5227F: arch/arm/mach-omap2/omap_hwmod.c
5228F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5229
5230OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5231M: Benoît Cousson <b-cousson@ti.com>
5232L: linux-omap@vger.kernel.org
5233S: Maintained
5234F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5235
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005236OMAP IMAGE SIGNAL PROCESSOR (ISP)
5237M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5238L: linux-media@vger.kernel.org
5239S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005240F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005241
Tony Lindgrenf5525782009-05-28 13:23:53 -07005242OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005243M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005244L: linux-usb@vger.kernel.org
5245L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005246T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005247S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005248F: drivers/usb/*/*omap*
5249F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005250
Kevin Hilman6d994712012-07-16 10:05:07 -07005251OMAP GPIO DRIVER
5252M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5253M: Kevin Hilman <khilman@ti.com>
5254L: linux-omap@vger.kernel.org
5255S: Maintained
5256F: drivers/gpio/gpio-omap.c
5257
Bob Copeland0ad122d2008-07-25 19:45:18 -07005258OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005259M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005260L: linux-karma-devel@lists.sourceforge.net
5261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005262F: Documentation/filesystems/omfs.txt
5263F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005264
Harald Weltec1986ee2005-11-13 16:06:29 -08005265OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005266M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005268F: drivers/char/pcmcia/cm4000_cs.c
5269F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005270
Harald Welte77c44ab2005-11-13 16:06:26 -08005271OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005272M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005274F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005275
Jonathan Corbet77d51402007-03-22 19:44:17 -03005276OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005277M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005278L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005279T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005280S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005281F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005282
Thomas Gleixner431bca72007-05-02 09:31:35 +02005283ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005285L: linux-mtd@lists.infradead.org
5286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005287F: drivers/mtd/onenand/
5288F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005289
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292L: osst-users@lists.sourceforge.net
5293L: linux-scsi@vger.kernel.org
5294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005295F: drivers/scsi/osst*
5296F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005298OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005300L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005302F: Documentation/i2c/busses/i2c-ocores
5303F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005304
Grant Likely860c44c2009-10-26 16:49:49 -07005305OPEN FIRMWARE AND FLATTENED DEVICE TREE
5306M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005307M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005308L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005309W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005310T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005311S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005312F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005313F: drivers/of
5314F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005315F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005316K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005317K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005318
Jonas Bonn19f9d392011-06-04 22:00:38 +03005319OPENRISC ARCHITECTURE
5320M: Jonas Bonn <jonas@southpole.se>
5321W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005322L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005323S: Maintained
5324T: git git://openrisc.net/~jonas/linux
5325F: arch/openrisc
5326
Jesse Grossccb13522011-10-25 19:26:31 -07005327OPENVSWITCH
5328M: Jesse Gross <jesse@nicira.com>
5329L: dev@openvswitch.org
5330W: http://openvswitch.org
5331T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5332S: Maintained
5333F: net/openvswitch/
5334
Clemens Ladischaf399172011-01-10 16:32:54 +01005335OPL4 DRIVER
5336M: Clemens Ladisch <clemens@ladisch.de>
5337L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5338T: git git://git.alsa-project.org/alsa-kernel.git
5339S: Maintained
5340F: sound/drivers/opl4/
5341
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005343M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344L: oprofile-list@lists.sf.net
5345S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005346F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005347F: arch/*/oprofile/
5348F: drivers/oprofile/
5349F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005351ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005352M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005353M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005354L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5355W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005356T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005357S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005358F: Documentation/filesystems/ocfs2.txt
5359F: Documentation/filesystems/dlmfs.txt
5360F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005361
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005363L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005364W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005365W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005366S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005367F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005369OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005370M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005371M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005372L: osd-dev@open-osd.org
5373W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005374T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005375S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005376F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005377F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005378F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005379
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005380P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005381M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005382L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005383W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005385F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005386
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005387PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005388M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005389L: netdev@vger.kernel.org
5390S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005391F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005392
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005393PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005394M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005395L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005397F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005398
Steffen Klassert48fc2672010-08-13 10:10:46 -04005399PADATA PARALLEL EXECUTION MECHANISM
5400M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005401L: linux-crypto@vger.kernel.org
5402S: Maintained
5403F: kernel/padata.c
5404F: include/linux/padata.h
5405F: Documentation/padata.txt
5406
Harald Welte709ee532008-09-23 17:46:57 +02005407PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005408M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005409L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005411F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005412
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005413PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005414M: David Howells <dhowells@redhat.com>
5415M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005416L: linux-am33-list@redhat.com (moderated for non-subscribers)
5417W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005419F: Documentation/mn10300/
5420F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005421
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005423L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005424S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005425F: drivers/parport/
5426F: include/linux/parport*.h
5427F: drivers/char/ppdev.c
5428F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005430PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005431M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005432M: Chris Wright <chrisw@sous-sol.org>
5433M: Alok Kataria <akataria@vmware.com>
5434M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005435L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005437F: Documentation/ia64/paravirt_ops.txt
5438F: arch/*/kernel/paravirt*
5439F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005440
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005442M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005443L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444W: http://www.torque.net/linux-pp.html
5445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005446F: Documentation/blockdev/paride.txt
5447F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448
5449PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005450M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005451M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005452L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005454Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005455T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005457F: arch/parisc/
5458F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459
Jim Cromie1662d322006-10-06 00:43:59 -07005460PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005461M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005462L: lm-sensors@lm-sensors.org
5463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005464F: Documentation/hwmon/pc87360
5465F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005466
5467PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005468M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005470F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005471
Jean Delvare1ad107f2010-08-14 21:09:00 +02005472PC87427 HARDWARE MONITORING DRIVER
5473M: Jean Delvare <khali@linux-fr.org>
5474L: lm-sensors@lm-sensors.org
5475S: Maintained
5476F: Documentation/hwmon/pc87427
5477F: drivers/hwmon/pc87427.c
5478
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005479PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005480M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005481S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005482F: drivers/leds/leds-pca9532.c
5483F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005484
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005485PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005486M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005487L: linux-i2c@vger.kernel.org
5488S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005489F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005490
Wolfram Sanga1867d32009-09-18 22:45:51 +02005491PCA9564/PCA9665 I2C BUS DRIVER
5492M: Wolfram Sang <w.sang@pengutronix.de>
5493L: linux-i2c@vger.kernel.org
5494S: Maintained
5495F: drivers/i2c/algos/i2c-algo-pca.c
5496F: drivers/i2c/busses/i2c-pca-*
5497F: include/linux/i2c-algo-pca.h
5498F: include/linux/i2c-pca-platform.h
5499
Khalid Aziz3971dae2012-04-12 12:49:13 -07005500PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005501M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005502S: Maintained
5503F: drivers/firmware/pcdp.*
5504
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005505PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005506M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005507L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005509F: Documentation/PCI/pci-error-recovery.txt
5510F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005511
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005513M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005514L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005515Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005516T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005518F: Documentation/PCI/
5519F: drivers/pci/
5520F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005523P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005524L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005525W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005526T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005528F: Documentation/pcmcia/
5529F: drivers/pcmcia/
5530F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531
5532PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005533M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005534L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005536F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Steffen Klassert48fc2672010-08-13 10:10:46 -04005538PCRYPT PARALLEL CRYPTO ENGINE
5539M: Steffen Klassert <steffen.klassert@secunet.com>
5540L: linux-crypto@vger.kernel.org
5541S: Maintained
5542F: crypto/pcrypt.c
5543F: include/crypto/pcrypt.h
5544
Tejun Heoe72df0b2010-12-10 17:02:49 +01005545PER-CPU MEMORY ALLOCATOR
5546M: Tejun Heo <tj@kernel.org>
5547M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005548T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5549S: Maintained
5550F: include/linux/percpu*.h
5551F: mm/percpu*.c
5552F: arch/*/include/asm/percpu.h
5553
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005554PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005555M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005557F: include/linux/delayacct.h
5558F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005559
Ingo Molnar57c0c152009-09-21 12:20:38 +02005560PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005561M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5562M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005563M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005564M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005565T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005566S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005567F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005568F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005569F: arch/*/kernel/perf_event*.c
5570F: arch/*/kernel/*/perf_event*.c
5571F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005572F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005573F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005574F: arch/*/kernel/perf_callchain.c
5575F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005576
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005577PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005578M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005579L: linux-abi-devel@lists.sourceforge.net
5580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005581F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005582
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005583PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005584M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005585S: Supported
5586F: Documentation/networking/phonet.txt
5587F: include/linux/phonet.h
5588F: include/net/phonet/
5589F: net/phonet/
5590
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005592M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593L: linux-mtd@lists.infradead.org
5594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005595F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
Bruno Prémontefdbb102012-07-30 21:39:03 +02005597PICOLCD HID DRIVER
5598M: Bruno Prémont <bonbons@linux-vserver.org>
5599L: linux-input@vger.kernel.org
5600S: Maintained
5601F: drivers/hid/hid-picolcd*
5602
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005603PICOXCELL SUPPORT
5604M: Jamie Iles <jamie@jamieiles.com>
5605L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5606T: git git://github.com/jamieiles/linux-2.6-ji.git
5607S: Supported
5608F: arch/arm/mach-picoxcell
5609F: drivers/*/picoxcell*
5610F: drivers/*/*/picoxcell*
5611
Linus Walleij2744e8a2011-05-02 20:50:54 +02005612PIN CONTROL SUBSYSTEM
5613M: Linus Walleij <linus.walleij@linaro.org>
5614S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005615F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005616F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005617
Viresh Kumardeda8282012-03-28 22:27:07 +05305618PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005619M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305620L: spear-devel@list.st.com
5621L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5622W: http://www.st.com/spear
5623S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005624F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305625
Peter Osterlund249a6772005-09-27 21:45:30 -07005626PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005627M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07005628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005629F: drivers/block/pktcdvd.c
5630F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005631
GuanXuetaob31d8272011-01-16 00:35:49 +08005632PKUNITY SOC DRIVERS
5633M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5634W: http://mprc.pku.edu.cn/~guanxuetao/linux
5635S: Maintained
5636T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5637F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005638F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005639F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005640F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005641
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005642PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005643M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005644L: lm-sensors@lm-sensors.org
5645W: http://www.lm-sensors.org/
5646W: http://www.roeck-us.net/linux/drivers/
5647T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5648S: Maintained
5649F: Documentation/hwmon/pmbus
5650F: drivers/hwmon/pmbus/
5651F: include/linux/i2c/pmbus.h
5652
Anil Ravindranath89a36812009-08-25 17:35:18 -07005653PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005654M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005655L: linux-scsi@vger.kernel.org
5656W: http://www.pmc-sierra.com/
5657S: Supported
5658F: drivers/scsi/pmcraid.*
5659
jack wangdbf9bfe2009-10-14 16:19:21 +08005660PMC SIERRA PM8001 DRIVER
5661M: jack_wang@usish.com
5662M: lindar_liu@usish.com
5663L: linux-scsi@vger.kernel.org
5664S: Supported
5665F: drivers/scsi/pm8001/
5666
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005668M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005669T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005671F: fs/timerfd.c
5672F: include/linux/timer*
5673F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Anton Vorontsov3be86142007-07-15 04:43:36 +04005675POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005676M: Anton Vorontsov <cbou@mail.ru>
5677M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005678T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005681F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005682
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005685M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Vitaly Wool999445d2007-01-04 13:07:03 +01005689PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005690M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005691L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005693F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005696M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697L: linux-ppp@vger.kernel.org
5698S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005699F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
5701PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005702M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: net/atm/pppoatm.c
5705F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706
5707PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005708M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005710F: drivers/net/ppp/pppoe.c
5711F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712
James Chapmana6d23702007-06-27 15:53:17 -07005713PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005715S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005716F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005717F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005718
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005719PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005720M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005721W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5722L: linuxpps@ml.enneenne.com (subscribers-only)
5723S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005724F: Documentation/pps/
5725F: drivers/pps/
5726F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005727
Harry Wei71a6d0a2011-05-11 15:13:33 -07005728PPTP DRIVER
5729M: Dmitry Kozlov <xeb@mail.ru>
5730L: netdev@vger.kernel.org
5731S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005732F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005733W: http://sourceforge.net/projects/accel-pptp
5734
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005736M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737L: kpreempt-tech@lists.sourceforge.net
5738W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5739S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005740F: Documentation/preempt-locking.txt
5741F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742
5743PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005744M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005745L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005746W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005747S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005748F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005750PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005751M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005752L: linux-ide@vger.kernel.org
5753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005754F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005755
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005756PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005757M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005758L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005759L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005760S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005761F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005762
Geoff Levandf58a9d12006-11-23 00:46:51 +01005763PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005764M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005765L: linuxppc-dev@lists.ozlabs.org
5766L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005768F: arch/powerpc/boot/ps3*
5769F: arch/powerpc/include/asm/lv1call.h
5770F: arch/powerpc/include/asm/ps3*.h
5771F: arch/powerpc/platforms/ps3/
5772F: drivers/*/ps3*
5773F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005774F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005775F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005776F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005777
Jim Pariscffb4add2009-01-06 11:32:10 +00005778PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005779M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005780L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005781S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005782F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005783
Anton Vorontsov8defe592012-08-03 18:07:20 -07005784PSTORE FILESYSTEM
5785M: Anton Vorontsov <cbouatmailru@gmail.com>
5786M: Colin Cross <ccross@android.com>
5787M: Kees Cook <keescook@chromium.org>
5788M: Tony Luck <tony.luck@intel.com>
5789S: Maintained
5790T: git git://git.infradead.org/users/cbou/linux-pstore.git
5791F: fs/pstore/
5792F: include/linux/pstore*
5793F: drivers/firmware/efivars.c
5794F: drivers/acpi/apei/erst.c
5795
Richard Cochran7fbc4152012-03-10 01:55:53 +00005796PTP HARDWARE CLOCK SUPPORT
5797M: Richard Cochran <richardcochran@gmail.com>
5798S: Maintained
5799W: http://linuxptp.sourceforge.net/
5800F: Documentation/ABI/testing/sysfs-ptp
5801F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005802F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005803F: drivers/net/phy/dp83640*
5804F: drivers/ptp/*
5805F: include/linux/ptp_cl*
5806
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005807PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005808M: Roland McGrath <roland@redhat.com>
5809M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005810S: Maintained
5811F: include/asm-generic/syscall.h
5812F: include/linux/ptrace.h
5813F: include/linux/regset.h
5814F: include/linux/tracehook.h
5815F: kernel/ptrace.c
5816
Michael Krufky83202042006-07-03 00:24:18 -07005817PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005818M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005819L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005820L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005821W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005822T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005824F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005825F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005826
Thierry Reding200efed2012-03-27 13:16:18 +02005827PWM SUBSYSTEM
5828M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005829L: linux-kernel@vger.kernel.org
5830S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005831W: http://gitorious.org/linux-pwm
5832T: git git://gitorious.org/linux-pwm/linux-pwm.git
5833F: Documentation/pwm.txt
5834F: Documentation/devicetree/bindings/pwm/
5835F: include/linux/pwm.h
5836F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005837F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005838F: drivers/video/backlight/pwm_bl.c
5839F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005840
Eric Miao30ec2612008-06-12 15:21:41 -07005841PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005842M: Eric Miao <eric.y.miao@gmail.com>
5843M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005844M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005845L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005846T: git git://github.com/hzhuang1/linux.git
5847T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005849F: arch/arm/mach-pxa/
5850F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005851F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005852F: drivers/usb/gadget/pxa2*
5853F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005854F: sound/arm/pxa*
5855F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005857MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005858M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005859M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005860L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005861T: git git://github.com/hzhuang1/linux.git
5862T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005863S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005864F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005865
Pierre Ossman272f1332007-05-14 21:25:26 +02005866PXA MMCI DRIVER
5867S: Orphan
5868
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005869PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005870M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005871L: rtc-linux@googlegroups.com
5872S: Maintained
5873
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005874QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005875M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005876L: linux-rdma@vger.kernel.org
5877S: Supported
5878F: drivers/infiniband/hw/qib/
5879
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005880QLOGIC QLA1280 SCSI DRIVER
5881M: Michael Reed <mdr@sgi.com>
5882L: linux-scsi@vger.kernel.org
5883S: Maintained
5884F: drivers/scsi/qla1280.[ch]
5885
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005887M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005888M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889L: linux-scsi@vger.kernel.org
5890S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005891F: Documentation/scsi/LICENSE.qla2xxx
5892F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
Ravi Anand883c98f2010-04-28 11:45:49 +05305894QLOGIC QLA4XXX iSCSI DRIVER
5895M: Ravi Anand <ravi.anand@qlogic.com>
5896M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5897M: iscsi-driver@qlogic.com
5898L: linux-scsi@vger.kernel.org
5899S: Supported
5900F: drivers/scsi/qla4xxx/
5901
Ron Mercer5a4faa872006-07-25 00:40:21 -07005902QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005903M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005904M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005905M: linux-driver@qlogic.com
5906L: netdev@vger.kernel.org
5907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005908F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005909F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005910
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005911QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005912M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005913M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005914M: linux-driver@qlogic.com
5915L: netdev@vger.kernel.org
5916S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005917F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005918
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005919QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005920M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005921M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005922M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005923L: netdev@vger.kernel.org
5924S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005925F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005926
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005928M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929W: http://www.alarsen.net/linux/qnx4fs/
5930S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005931F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005932F: include/linux/qnx4_fs.h
5933F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934
Antti Palosaari91952bc2012-10-01 12:28:46 -03005935QT1010 MEDIA DRIVER
5936M: Antti Palosaari <crope@iki.fi>
5937L: linux-media@vger.kernel.org
5938W: http://linuxtv.org/
5939W: http://palosaari.fi/linux/
5940Q: http://patchwork.linuxtv.org/project/linux-media/list/
5941T: git git://linuxtv.org/anttip/media_tree.git
5942S: Maintained
5943F: drivers/media/tuners/qt1010*
5944
Richard Kuo4f4567c2011-10-31 18:56:38 -05005945QUALCOMM HEXAGON ARCHITECTURE
5946M: Richard Kuo <rkuo@codeaurora.org>
5947L: linux-hexagon@vger.kernel.org
5948S: Supported
5949F: arch/hexagon/
5950
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005951RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005952M: Yehuda Sadeh <yehuda@inktank.com>
5953M: Sage Weil <sage@inktank.com>
5954M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005955M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005956W: http://ceph.com/
5957T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005958S: Supported
5959F: drivers/block/rbd.c
5960F: drivers/block/rbd_types.h
5961
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005964L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005966F: drivers/video/aty/radeon*
5967F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968
5969RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005970M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005971L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005973F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974
Randy Dunlape7839f22008-10-12 16:11:45 -07005975RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005976P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005977M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005978M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005979M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005980L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005981L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005982W: http://rt2x00.serialmonkey.com/
5983S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005984T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005985F: drivers/net/wireless/rt2x00/
5986
Nick Piggin9db55792008-02-08 04:19:49 -08005987RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005988M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005990F: Documentation/blockdev/ramdisk.txt
5991F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005992
Matt Mackall9e95ce22005-04-16 15:25:56 -07005993RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04005994M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005996F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005997
Matt Porter394b7012005-11-07 01:00:15 -08005998RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005999M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006000M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006002F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006003
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006004RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006005L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006006S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006007F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006008
6009RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006010M: Josh Triplett <josh@freedesktop.org>
6011M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006012S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006013T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006014F: Documentation/RCU/torture.txt
6015F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006016
Florian Fainellic1f766b2008-02-06 22:39:44 +01006017RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006018M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006019S: Maintained
6020
Florian Fainellidb17f3952007-12-19 11:30:30 +01006021RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006022M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006023L: netdev@vger.kernel.org
6024S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006025F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006026
Andy Grovera09ed662009-02-24 15:30:41 +00006027RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006028M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006029L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006031F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006032
Josh Triplett595182b2006-10-04 02:17:21 -07006033READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006034M: Dipankar Sarma <dipankar@in.ibm.com>
6035M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006036W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006037S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006038T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006039F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006040X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006041F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006042F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006043X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006044
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006045REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006046M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006047L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006048Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006050F: Documentation/rtc.txt
6051F: drivers/rtc/
6052F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006053
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006055L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006057F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058
Mark Brownb83a3132011-05-11 19:59:58 +02006059REGISTER MAP ABSTRACTION
6060M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6061T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6062S: Supported
6063F: drivers/base/regmap/
6064F: include/linux/regmap.h
6065
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006066REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6067M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006068T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006069S: Maintained
6070F: drivers/remoteproc/
6071F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006072F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006073
Ivo van Doorne08976452008-04-12 19:23:55 +02006074RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006075M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006076L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006077W: http://wireless.kernel.org/
6078T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6079T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006080S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006081F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006082F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006083
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006084RICOH SMARTMEDIA/XD DRIVER
6085M: Maxim Levitsky <maximlevitsky@gmail.com>
6086S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006087F: drivers/mtd/nand/r852.c
6088F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006089
Maxim Levitsky92634122011-03-25 01:56:59 -07006090RICOH R5C592 MEMORYSTICK DRIVER
6091M: Maxim Levitsky <maximlevitsky@gmail.com>
6092S: Maintained
6093F: drivers/memstick/host/r592.*
6094
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095ROCKETPORT DRIVER
6096P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097W: http://www.comtrol.com
6098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006099F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006100F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101
6102ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006103M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006105W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006107F: include/linux/rose.h
6108F: include/net/rose.h
6109F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110
Antti Palosaari91952bc2012-10-01 12:28:46 -03006111RTL2830 MEDIA DRIVER
6112M: Antti Palosaari <crope@iki.fi>
6113L: linux-media@vger.kernel.org
6114W: http://linuxtv.org/
6115W: http://palosaari.fi/linux/
6116Q: http://patchwork.linuxtv.org/project/linux-media/list/
6117T: git git://linuxtv.org/anttip/media_tree.git
6118S: Maintained
6119F: drivers/media/dvb-frontends/rtl2830*
6120
Larry Finger59840482008-11-12 17:13:09 -06006121RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006122M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006123L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006124W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006125T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006126S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006127F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006128
Larry Finger59840482008-11-12 17:13:09 -06006129RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006130M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006131M: Hin-Tak Leung <htl10@users.sourceforge.net>
6132M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006133L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006134W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006135T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006136S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006137F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006138
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006139RTL8192CE WIRELESS DRIVER
6140M: Larry Finger <Larry.Finger@lwfinger.net>
6141M: Chaoming Li <chaoming_li@realsil.com.cn>
6142L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006143W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006144T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6145S: Maintained
6146F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006147F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006148
6149S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006150M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006151L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006153F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006154
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155S390
Joe Perches8b58be82009-07-29 15:04:30 -07006156M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6157M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006159L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006160W: http://www.ibm.com/developerworks/linux/linux390/
6161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006162F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006163F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006164F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006165F: Documentation/s390/
6166F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006167
6168S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006169M: Ursula Braun <ursula.braun@de.ibm.com>
6170M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006171M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006172L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006173W: http://www.ibm.com/developerworks/linux/linux390/
6174S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006175F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006176
Felix Beckfeed9b62009-03-26 15:24:23 +01006177S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006178M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006179M: linux390@de.ibm.com
6180L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006181W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006182S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006183F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006184
Heiko Carstens5238da42006-02-11 17:56:01 -08006185S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006186M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006187M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006188L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006189W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006191F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192
Ursula Braundd96df22007-09-19 13:09:02 +02006193S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006194M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006195M: linux390@de.ibm.com
6196L: linux-s390@vger.kernel.org
6197W: http://www.ibm.com/developerworks/linux/linux390/
6198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006199F: drivers/s390/net/*iucv*
6200F: include/net/iucv/
6201F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006202
Ben Dooks4dde7f72008-06-30 22:40:38 +01006203S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006204M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006205L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006207F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006208
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006210M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006211L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006212T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213W: http://www.mihu.de/linux/saa7146
6214S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006215F: drivers/media/common/saa7146/
6216F: drivers/media/pci/saa7146/
6217F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
Corentin Chary92304a42011-12-05 12:38:35 -05006219SAMSUNG LAPTOP DRIVER
6220M: Corentin Chary <corentincj@iksaif.net>
6221L: platform-driver-x86@vger.kernel.org
6222S: Maintained
6223F: drivers/platform/x86/samsung-laptop.c
6224
Mark Brown4a109cc2010-09-24 10:50:46 +01006225SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006226M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006227L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6228S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006229F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006230
Jingoo Han0d89a282011-12-19 11:09:35 +09006231SAMSUNG FRAMEBUFFER DRIVER
6232M: Jingoo Han <jg1.han@samsung.com>
6233L: linux-fbdev@vger.kernel.org
6234S: Maintained
6235F: drivers/video/s3c-fb.c
6236
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006237SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6238M: Sangbeom Kim <sbkim73@samsung.com>
6239L: linux-kernel@vger.kernel.org
6240S: Supported
6241F: drivers/mfd/sec*.c
6242F: drivers/regulator/s2m*.c
6243F: drivers/regulator/s5m*.c
6244F: drivers/rtc/rtc-sec.c
6245F: include/linux/mfd/samsung/
6246
Alan Coxca749e22011-03-18 13:56:14 +00006247SERIAL DRIVERS
6248M: Alan Cox <alan@linux.intel.com>
6249L: linux-serial@vger.kernel.org
6250S: Maintained
6251F: drivers/tty/serial
6252
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306253SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006254M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306255S: Maintained
6256F: include/linux/dw_dmac.h
6257F: drivers/dma/dw_dmac_regs.h
6258F: drivers/dma/dw_dmac.c
6259
Thomas Gleixner88606e82010-12-14 21:37:13 +01006260TIMEKEEPING, NTP
6261M: John Stultz <johnstul@us.ibm.com>
6262M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006263T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006264S: Supported
6265F: include/linux/clocksource.h
6266F: include/linux/time.h
6267F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006268F: kernel/time/clocksource.c
6269F: kernel/time/time*.c
6270F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006271F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006272
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006273TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006274M: Huang Shijie <shijie8@gmail.com>
6275M: Kang Yong <kangyong@telegent.com>
6276M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006277S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006278F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006279
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006281M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006283F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
6285SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006286M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006287M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006288T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006290F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006291F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292
Chen Liqin6bcf6732009-06-13 15:24:33 +08006293SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006294M: Chen Liqin <liqin.chen@sunplusct.com>
6295M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006296W: http://www.sunplusct.com
6297S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006298F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006299
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006301M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302L: linux-scsi@vger.kernel.org
6303W: http://www.kernel.dk
6304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006305F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306
Roland Dreierfb50a832010-10-07 09:54:53 -07006307SCSI RDMA PROTOCOL (SRP) INITIATOR
6308M: David Dillow <dillowda@ornl.gov>
6309L: linux-rdma@vger.kernel.org
6310S: Supported
6311W: http://www.openfabrics.org
6312Q: http://patchwork.kernel.org/project/linux-rdma/list/
6313T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6314F: drivers/infiniband/ulp/srp/
6315F: include/scsi/srp.h
6316
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006318M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319L: linux-scsi@vger.kernel.org
6320W: http://www.torque.net/sg
6321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006322F: drivers/scsi/sg.c
6323F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324
6325SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006326M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006328T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6329T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6330T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006332F: drivers/scsi/
6333F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334
6335SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006336M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337L: linux-scsi@vger.kernel.org
6338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006339F: Documentation/scsi/st.txt
6340F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341
6342SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006343M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006344M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006345L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006346W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006348F: Documentation/networking/sctp.txt
6349F: include/linux/sctp.h
6350F: include/net/sctp/
6351F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352
6353SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006354M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006355S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006356F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006357F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006358F: drivers/watchdog/scx200_wdt.c
6359F: drivers/i2c/busses/scx200*
6360F: drivers/mtd/maps/scx200_docflash.c
6361F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006362
6363SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006364M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006366F: drivers/char/scx200_gpio.c
6367F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006368
6369SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006370M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373
Sascha Sommer6a369132008-07-15 14:21:29 +02006374SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006375M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006376L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006378F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006379
Randy Dunlape7839f22008-10-12 16:11:45 -07006380SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006381M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006382L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006383T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6384S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006385F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006386F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006387
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006388SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006389M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006390L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006391L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006393F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394
Ben Dooks0d1bb412009-06-14 13:52:37 +01006395SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006396M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006397L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006398S: Maintained
6399F: drivers/mmc/host/sdhci-s3c.c
6400
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006401SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006402M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006403L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006404L: linux-mmc@vger.kernel.org
6405S: Maintained
6406F: drivers/mmc/host/sdhci-spear.c
6407
James Morris8711cca2008-12-04 03:19:45 +11006408SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006409M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006410L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006411T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006412W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006413S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006414F: security/
James Morris8711cca2008-12-04 03:19:45 +11006415
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006417M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418S: Supported
6419
6420SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006421M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006422M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006423M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006424L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006425W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006426T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006428F: include/linux/selinux*
6429F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006430F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431
John Johansenc1c124e2010-07-29 14:48:09 -07006432APPARMOR SECURITY MODULE
6433M: John Johansen <john.johansen@canonical.com>
6434L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6435W: apparmor.wiki.kernel.org
6436T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6437S: Supported
6438F: security/apparmor/
6439
Jiri Slabycef2cf02007-05-08 00:31:45 -07006440SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006441M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006443F: drivers/misc/phantom.c
6444F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006445
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006446SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006449T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006451F: drivers/ata/
6452F: include/linux/ata.h
6453F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306455SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006456M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006457L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006458W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006459S: Supported
6460F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306461
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006462SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006463M: Sathya Perla <sathya.perla@emulex.com>
6464M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6465M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006466L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006467W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006468S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006469F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006470
Ben Hutchings8ceee662008-04-27 12:55:59 +01006471SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006472M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006473M: Ben Hutchings <bhutchings@solarflare.com>
6474L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006475S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006476F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006477
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006478SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006479M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006481F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006482
6483SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006484M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006485L: linux-ia64@vger.kernel.org
6486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006487F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006488F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006489F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006490
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006492M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493L: linux-visws-devel@lists.sf.net
6494W: http://linux-visws.sf.net
6495S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006496F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
Jack Steiner75312612008-08-15 00:40:42 -07006498SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006499M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006501F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006502
Len Brown6349d992009-08-14 15:07:14 -04006503SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006504M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006505L: sfi-devel@simplefirmware.org
6506W: http://simplefirmware.org/
6507T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006508S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006509F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006510F: drivers/sfi/
6511F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006512
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513SIMTEC EB110ATX (Chalice CATS)
6514P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006515P: Vincent Sanders <vince@simtec.co.uk>
6516M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517W: http://www.simtec.co.uk/products/EB110ATX/
6518S: Supported
6519
6520SIMTEC EB2410ITX (BAST)
6521P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006522P: Vincent Sanders <vince@simtec.co.uk>
6523M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524W: http://www.simtec.co.uk/products/EB2410ITX/
6525S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006526F: arch/arm/mach-s3c2410/mach-bast.c
6527F: arch/arm/mach-s3c2410/bast-ide.c
6528F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006530TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006531M: Sekhar Nori <nsekhar@ti.com>
6532M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306533L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306534T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006535Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006536S: Supported
6537F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006538F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006539
Francois Romieu92aab3c2005-07-30 13:11:18 +02006540SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006541M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006542L: netdev@vger.kernel.org
6543S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006544F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006545
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006547M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006549L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006551F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006553SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006554M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006555L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006557F: Documentation/i2c/busses/i2c-sis96x
6558F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006559
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006561M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006564F: Documentation/fb/sisfb.txt
6565F: drivers/video/sis/
6566F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567
6568SIS USB2VGA 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.at/linuxsisusbvga.shtml
6571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006572F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573
Christoph Lameter415ad262007-07-26 10:40:56 -07006574SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006575M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006576M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006578L: linux-mm@kvack.org
6579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006580F: include/linux/sl?b*.h
6581F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006582
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006583SLEEPABLE READ-COPY UPDATE (SRCU)
6584M: Lai Jiangshan <laijs@cn.fujitsu.com>
6585M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6586W: http://www.rdrop.com/users/paulmck/RCU/
6587S: Supported
6588T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6589F: include/linux/srcu*
6590F: kernel/srcu*
6591
Casey Schaufler66372842012-05-23 18:34:52 -07006592SMACK SECURITY MODULE
6593M: Casey Schaufler <casey@schaufler-ca.com>
6594L: linux-security-module@vger.kernel.org
6595W: http://schaufler-ca.com
6596T: git git://git.gitorious.org/smack-next/kernel.git
6597S: Maintained
6598F: Documentation/security/Smack.txt
6599F: security/smack/
6600
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006602M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006603S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006604F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006606SMM665 HARDWARE MONITOR DRIVER
6607M: Guenter Roeck <linux@roeck-us.net>
6608L: lm-sensors@lm-sensors.org
6609S: Maintained
6610F: Documentation/hwmon/smm665
6611F: drivers/hwmon/smm665.c
6612
Steve Glendinning9df73052010-08-14 21:08:54 +02006613SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006614M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006615L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006616S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006617F: Documentation/hwmon/emc2103
6618F: drivers/hwmon/emc2103.c
6619
Hans de Goedea98d5062011-03-21 17:59:36 +01006620SMSC SCH5627 HARDWARE MONITOR DRIVER
6621M: Hans de Goede <hdegoede@redhat.com>
6622L: lm-sensors@lm-sensors.org
6623S: Supported
6624F: Documentation/hwmon/sch5627
6625F: drivers/hwmon/sch5627.c
6626
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006627SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006628M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006629L: lm-sensors@lm-sensors.org
6630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006631F: Documentation/hwmon/smsc47b397
6632F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006633
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006634SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006635M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006636L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006638F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006639F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006640
Steve Glendinning2cb37722008-12-11 20:54:30 -08006641SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006642M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006643L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006644S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006645F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006646
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006647SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006648M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006649L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006650S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006651F: drivers/video/smscufx.c
6652
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006653SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006655L: linux-altix@sgi.com
6656L: linux-ia64@vger.kernel.org
6657W: http://www.sgi.com/altix
6658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006659F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006660
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006661SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006662M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006663L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006664T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006665S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006666F: include/media/soc*
6667F: drivers/media/i2c/soc_camera/
6668F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006669
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006670SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006671M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006673F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006674
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006676M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006678S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006679F: drivers/md/
6680F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006683M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006684L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006686F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687
Michael Buesch61e115a2007-09-18 15:12:50 -04006688SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006689M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006690L: netdev@vger.kernel.org
6691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006692F: drivers/ssb/
6693F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006694
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006696M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05006697L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006698W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006700F: Documentation/laptops/sony-laptop.txt
6701F: drivers/char/sonypi.c
6702F: drivers/platform/x86/sony-laptop.c
6703F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704
Alex Dubovbaf85322008-02-09 10:20:54 -08006705SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006706M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006707W: http://tifmxx.berlios.de/
6708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006709F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006710
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006712M: Jaroslav Kysela <perex@perex.cz>
6713M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006714L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006715W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006716T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006717T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006719F: Documentation/sound/
6720F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006721F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722
Mark Brownbd903bd2008-11-19 19:16:05 +00006723SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006724M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006725M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006726T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006727L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006728W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006729S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006730F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006731F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006732
Sam Ravnborg473321f2009-01-04 15:47:49 -08006733SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006734M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006736Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006737T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6738T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006740F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006741F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742
David S. Miller6404fcc2010-03-16 01:00:17 -07006743SPARC SERIAL DRIVERS
6744M: "David S. Miller" <davem@davemloft.net>
6745L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006746T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6747T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006748S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006749F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006750F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006751F: drivers/tty/serial/sunhv.c
6752F: drivers/tty/serial/sunsab.c
6753F: drivers/tty/serial/sunsab.h
6754F: drivers/tty/serial/sunsu.c
6755F: drivers/tty/serial/sunzilog.c
6756F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006757
Christopher Li389325b2012-04-05 14:25:14 -07006758SPARSE CHECKER
6759M: "Christopher Li" <sparse@chrisli.org>
6760L: linux-sparse@vger.kernel.org
6761W: https://sparse.wiki.kernel.org/
6762T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6763T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6764S: Maintained
6765F: include/linux/compiler.h
6766
viresh kumarfc0c1952010-04-01 12:31:21 +01006767SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006768M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306769M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006770L: spear-devel@list.st.com
6771L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006772W: http://www.st.com/spear
6773S: Maintained
6774F: arch/arm/plat-spear/
6775
Viresh Kumar71e09a92012-04-20 22:39:48 +05306776SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006777M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306778M: Shiraz Hashim <shiraz.hashim@st.com>
6779L: spear-devel@list.st.com
6780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6781W: http://www.st.com/spear
6782S: Maintained
6783F: arch/arm/mach-spear13xx/
6784
viresh kumarfc0c1952010-04-01 12:31:21 +01006785SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006786M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306787M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006788L: spear-devel@list.st.com
6789L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006790W: http://www.st.com/spear
6791S: Maintained
6792F: arch/arm/mach-spear3xx/
6793
6794SPEAR6XX MACHINE SUPPORT
6795M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306796M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006797M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006798L: spear-devel@list.st.com
6799L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006800W: http://www.st.com/spear
6801S: Maintained
6802F: arch/arm/mach-spear6xx/
6803
6804SPEAR CLOCK FRAMEWORK SUPPORT
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
Viresh Kumar5df33a62012-04-10 09:02:35 +05306810F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006811
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006812SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006813M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006814L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006815Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006816T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006818F: Documentation/spi/
6819F: drivers/spi/
6820F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006821
Jim Lewis2752e4012006-09-29 02:01:19 -07006822SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006823M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6824M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07006825L: netdev@vger.kernel.org
6826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006827F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006828F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07006829
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006830SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006831M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006832L: linuxppc-dev@lists.ozlabs.org
6833L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006834W: http://www.ibm.com/developerworks/power/cell/
6835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006836F: Documentation/filesystems/spufs.txt
6837F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006838
Phillip Lougherfc555842009-01-05 08:46:29 +00006839SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006840M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006841L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6842W: http://squashfs.org.uk
6843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006844F: Documentation/filesystems/squashfs.txt
6845F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006846
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006848M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006850F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851
Linus Torvalds26e9a392008-10-17 09:50:12 -07006852STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006853M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006854L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006855S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006856
Linus Torvalds26e9a392008-10-17 09:50:12 -07006857STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006858M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006859T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006860L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006861S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006862F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006863
Joe Perchesc8c8b102011-07-05 09:42:12 -07006864STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6865M: Henk de Groot <pe1dnn@amsat.org>
6866S: Odd Fixes
6867F: drivers/staging/wlags49_h2/
6868F: drivers/staging/wlags49_h25/
6869
Joe Perchesc9555152011-07-05 09:42:01 -07006870STAGING - ASUS OLED
6871M: Jakub Schmidtke <sjakub@gmail.com>
6872S: Odd Fixes
6873F: drivers/staging/asus_oled/
6874
Joe Perchesebd3d012011-07-05 09:42:02 -07006875STAGING - COMEDI
6876M: Ian Abbott <abbotti@mev.co.uk>
6877M: Mori Hess <fmhess@users.sourceforge.net>
6878S: Odd Fixes
6879F: drivers/staging/comedi/
6880
Joe Perches8ca572c2011-07-05 09:42:03 -07006881STAGING - CRYSTAL HD VIDEO DECODER
6882M: Naren Sankar <nsankar@broadcom.com>
6883M: Jarod Wilson <jarod@wilsonet.com>
6884M: Scott Davilla <davilla@4pi.com>
6885M: Manu Abraham <abraham.manu@gmail.com>
6886S: Odd Fixes
6887F: drivers/staging/crystalhd/
6888
Joe Perches0f16ffc2011-07-05 09:42:04 -07006889STAGING - ECHO CANCELLER
6890M: Steve Underwood <steveu@coppice.org>
6891M: David Rowe <david@rowetel.com>
6892S: Odd Fixes
6893F: drivers/staging/echo/
6894
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006895STAGING - ET131X NETWORK DRIVER
6896M: Mark Einon <mark.einon@gmail.com>
6897S: Odd Fixes
6898F: drivers/staging/et131x/
6899
Joe Perchesa0138162011-07-05 15:21:34 -07006900STAGING - FLARION FT1000 DRIVERS
6901M: Marek Belisko <marek.belisko@gmail.com>
6902S: Odd Fixes
6903F: drivers/staging/ft1000/
6904
Joe Perchesec3fab92011-07-05 09:42:05 -07006905STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6906M: David Täht <d@teklibre.com>
6907S: Odd Fixes
6908F: drivers/staging/frontier/
6909
Joe Perches6c1bb422011-07-05 09:42:07 -07006910STAGING - INDUSTRIAL IO
6911M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006912L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006913S: Odd Fixes
6914F: drivers/staging/iio/
6915
Joe Perchesa0138162011-07-05 15:21:34 -07006916STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6917M: Jarod Wilson <jarod@wilsonet.com>
6918W: http://www.lirc.org/
6919S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006920F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006921
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006922STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006923M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006924M: Marc Dietrich <marvin24@gmx.de>
6925L: ac100@lists.launchpad.net (moderated for non-subscribers)
6926S: Maintained
6927F: drivers/staging/nvec/
6928
Joe Perchesa0138162011-07-05 15:21:34 -07006929STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6930M: Andres Salomon <dilinger@queued.net>
6931M: Chris Ball <cjb@laptop.org>
6932M: Jon Nettleton <jon.nettleton@gmail.com>
6933W: http://wiki.laptop.org/go/DCON
6934S: Odd Fixes
6935F: drivers/staging/olpc_dcon/
6936
Chris Kelly94cfdd12012-03-14 10:55:42 +00006937STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006938M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006939M: Chris Kelly <ckelly@ozmodevices.com>
6940S: Maintained
6941F: drivers/staging/ozwpan/
6942
Joe Perchesa0138162011-07-05 15:21:34 -07006943STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006944M: Willy Tarreau <willy@meta-x.org>
6945S: Odd Fixes
6946F: drivers/staging/panel/
6947
Joe Perchesa0138162011-07-05 15:21:34 -07006948STAGING - REALTEK RTL8712U DRIVERS
6949M: Larry Finger <Larry.Finger@lwfinger.net>
6950M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6951S: Odd Fixes
6952F: drivers/staging/rtl8712/
6953
Joe Perches9629fa82011-07-05 09:42:09 -07006954STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6955M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6956S: Odd Fixes
6957F: drivers/staging/sm7xx/
6958
Joe Perchesa0138162011-07-05 15:21:34 -07006959STAGING - SOFTLOGIC 6x10 MPEG CODEC
6960M: Ben Collins <bcollins@bluecherry.net>
6961S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006962F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006963
6964STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6965M: William Hubbs <w.d.hubbs@gmail.com>
6966M: Chris Brannon <chris@the-brannons.com>
6967M: Kirk Reiser <kirk@braille.uwo.ca>
6968M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6969L: speakup@braille.uwo.ca
6970W: http://www.linux-speakup.org/
6971S: Odd Fixes
6972F: drivers/staging/speakup/
6973
6974STAGING - TI DSP BRIDGE DRIVERS
6975M: Omar Ramirez Luna <omar.ramirez@ti.com>
6976S: Odd Fixes
6977F: drivers/staging/tidspbridge/
6978
Joe Perchesa0138162011-07-05 15:21:34 -07006979STAGING - USB ENE SM/MS CARD READER DRIVER
6980M: Al Cho <acho@novell.com>
6981S: Odd Fixes
6982F: drivers/staging/keucr/
6983
Joe Perchesb3e871c2011-07-05 09:42:10 -07006984STAGING - VIA VT665X DRIVERS
6985M: Forest Bond <forest@alittletooquiet.net>
6986S: Odd Fixes
6987F: drivers/staging/vt665?/
6988
Joe Perches81a9a522011-07-05 09:42:11 -07006989STAGING - WINBOND IS89C35 WLAN USB DRIVER
6990M: Pavel Machek <pavel@ucw.cz>
6991S: Odd Fixes
6992F: drivers/staging/winbond/
6993
Joe Perches709bcb02011-07-05 09:42:13 -07006994STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02006995M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07006996S: Odd Fixes
6997F: drivers/staging/xgifb/
6998
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007000M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007001S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007002F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007004SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007005M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007006W: http://sammy.net/sun3/
7007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007008F: arch/m68k/kernel/*sun3*
7009F: arch/m68k/sun3*/
7010F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007011F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007012
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007013SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007014M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007015L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007017Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007018T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007019S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007020F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007021F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007022F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007024SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007025M: Len Brown <len.brown@intel.com>
7026M: Pavel Machek <pavel@ucw.cz>
7027M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007028L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007030F: Documentation/power/
7031F: arch/x86/kernel/acpi/
7032F: drivers/base/power/
7033F: kernel/power/
7034F: include/linux/suspend.h
7035F: include/linux/freezer.h
7036F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
7038SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007039M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040L: linux-video@atrey.karlin.mff.cuni.cz
7041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007042F: Documentation/svga.txt
7043F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007045SWIOTLB SUBSYSTEM
7046M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7047L: linux-kernel@vger.kernel.org
7048S: Supported
7049F: lib/swiotlb.c
7050F: arch/*/kernel/pci-swiotlb.c
7051F: include/linux/swiotlb.h
7052
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007054M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007056F: Documentation/filesystems/sysv-fs.txt
7057F: fs/sysv/
7058F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007060TARGET SUBSYSTEM
7061M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7062L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007063L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007064L: http://groups.google.com/group/linux-iscsi-target-dev
7065W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007066T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007067S: Supported
7068F: drivers/target/
7069F: include/target/
7070F: Documentation/target/
7071
Alan Cox4e688522008-04-30 00:52:11 -07007072TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007073M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007075F: Documentation/accounting/taskstats*
7076F: include/linux/taskstats*
7077F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007078
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007079TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007080M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007081L: netdev@vger.kernel.org
7082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007083F: include/linux/pkt_cls.h
7084F: include/net/pkt_cls.h
7085F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007086
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007087TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007088M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7089M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007090W: http://tcp-lp-mod.sourceforge.net/
7091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007092F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007093
Antti Palosaari91952bc2012-10-01 12:28:46 -03007094TDA10071 MEDIA DRIVER
7095M: Antti Palosaari <crope@iki.fi>
7096L: linux-media@vger.kernel.org
7097W: http://linuxtv.org/
7098W: http://palosaari.fi/linux/
7099Q: http://patchwork.linuxtv.org/project/linux-media/list/
7100T: git git://linuxtv.org/anttip/media_tree.git
7101S: Maintained
7102F: drivers/media/dvb-frontends/tda10071*
7103
7104TDA18212 MEDIA DRIVER
7105M: Antti Palosaari <crope@iki.fi>
7106L: linux-media@vger.kernel.org
7107W: http://linuxtv.org/
7108W: http://palosaari.fi/linux/
7109Q: http://patchwork.linuxtv.org/project/linux-media/list/
7110T: git git://linuxtv.org/anttip/media_tree.git
7111S: Maintained
7112F: drivers/media/tuners/tda18212*
7113
7114TDA18218 MEDIA DRIVER
7115M: Antti Palosaari <crope@iki.fi>
7116L: linux-media@vger.kernel.org
7117W: http://linuxtv.org/
7118W: http://palosaari.fi/linux/
7119Q: http://patchwork.linuxtv.org/project/linux-media/list/
7120T: git git://linuxtv.org/anttip/media_tree.git
7121S: Maintained
7122F: drivers/media/tuners/tda18218*
7123
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007124TDA18271 MEDIA DRIVER
7125M: Michael Krufky <mkrufky@linuxtv.org>
7126L: linux-media@vger.kernel.org
7127W: http://linuxtv.org/
7128W: http://github.com/mkrufky
7129Q: http://patchwork.linuxtv.org/project/linux-media/list/
7130T: git git://linuxtv.org/mkrufky/tuners.git
7131S: Maintained
7132F: drivers/media/tuners/tda18271*
7133
Michael Krufkye48307a2012-10-02 00:56:33 -03007134TDA827x MEDIA DRIVER
7135M: Michael Krufky <mkrufky@linuxtv.org>
7136L: linux-media@vger.kernel.org
7137W: http://linuxtv.org/
7138W: http://github.com/mkrufky
7139Q: http://patchwork.linuxtv.org/project/linux-media/list/
7140T: git git://linuxtv.org/mkrufky/tuners.git
7141S: Maintained
7142F: drivers/media/tuners/tda8290.*
7143
Michael Krufky66cf9212012-10-02 00:56:28 -03007144TDA8290 MEDIA DRIVER
7145M: Michael Krufky <mkrufky@linuxtv.org>
7146L: linux-media@vger.kernel.org
7147W: http://linuxtv.org/
7148W: http://github.com/mkrufky
7149Q: http://patchwork.linuxtv.org/project/linux-media/list/
7150T: git git://linuxtv.org/mkrufky/tuners.git
7151S: Maintained
7152F: drivers/media/tuners/tda8290.*
7153
Jiri Pirko3d249d42011-11-11 22:16:48 +00007154TEAM DRIVER
7155M: Jiri Pirko <jpirko@redhat.com>
7156L: netdev@vger.kernel.org
7157S: Supported
7158F: drivers/net/team/
7159F: include/linux/if_team.h
7160
Erik Gilling84b94142010-06-09 15:35:53 -07007161TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007162M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007163L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007164Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7165T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007166S: Supported
7167F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007168F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007169F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007170
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007171TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007172M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007173L: netdev@vger.kernel.org
7174S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007175F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007176
Alan Cox4e688522008-04-30 00:52:11 -07007177Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007178M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007179S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007180F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007181
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007182TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007183M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007184M: Max Filippov <jcmvbkbc@gmail.com>
7185L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007187F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007188
7189THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007190M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007191L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007192L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007193W: http://ibm-acpi.sourceforge.net
7194W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007195T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007197F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007198
Alex Dubov4020f2d2006-10-04 02:15:37 -07007199TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007200M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007202F: drivers/misc/tifm*
7203F: drivers/mmc/host/tifm_sd.c
7204F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007205
M R Swami Reddy152ad442012-04-02 20:02:31 +05307206TI LM49xxx FAMILY ASoC CODEC DRIVERS
7207M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307208M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307209L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7210S: Maintained
7211F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307212F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307213
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007214TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007215M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007216L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7217S: Maintained
7218F: sound/soc/codecs/twl4030*
7219
Luciano Coelho90921012011-11-20 21:40:41 +02007220TI WILINK WIRELESS DRIVERS
7221M: Luciano Coelho <coelho@ti.com>
7222L: linux-wireless@vger.kernel.org
7223W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7224W: http://wireless.kernel.org/en/users/Drivers/wl1251
7225T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7226S: Maintained
7227F: drivers/net/wireless/ti/
7228F: include/linux/wl12xx.h
7229
Per Lidene86eaa32006-01-12 16:45:18 +01007230TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007231M: Jon Maloy <jon.maloy@ericsson.com>
7232M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007233L: netdev@vger.kernel.org (core kernel code)
7234L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007235W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007237F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007238F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007239
Chris Metcalf867e3592010-05-28 23:09:12 -04007240TILE ARCHITECTURE
7241M: Chris Metcalf <cmetcalf@tilera.com>
7242W: http://www.tilera.com/scm/
7243S: Supported
7244F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007245F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007246F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007247F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007248
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007250M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007251L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252W: http://sourceforge.net/projects/tlan/
7253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007254F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007255F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007256
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007257TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007258M: Kentaro Takeda <takedakn@nttdata.co.jp>
7259M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007260L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7261L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007262L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7263L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7264W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007265T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007267F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007268
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007269TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007270M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007271L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007272S: Maintained
7273F: drivers/platform/x86/topstar-laptop.c
7274
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007276L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007277S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007278F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279
7280TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007281M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282L: tlinux-users@tce.toshiba-dme.co.jp
7283W: http://www.buzzard.org.uk/toshiba/
7284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007285F: drivers/char/toshiba.c
7286F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287
Pierre Ossmand719f902009-03-24 21:06:09 +01007288TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007289M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007291L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007292S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007293F: drivers/mmc/host/tmio_mmc*
7294F: drivers/mmc/host/sh_mobile_sdhi.c
7295F: include/linux/mmc/tmio.h
7296F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007297
Hugh Dickins98f32602009-05-21 20:33:58 +01007298TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007299M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007300L: linux-mm@kvack.org
7301S: Maintained
7302F: include/linux/shmem_fs.h
7303F: mm/shmem.c
7304
Alan Cox4e688522008-04-30 00:52:11 -07007305TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007306M: Kent Yoder <key@linux.vnet.ibm.com>
7307M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007308W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007309M: Marcel Selhorst <tpmdd@selhorst.net>
7310M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007311W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007312L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007314F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007315
Joe Perchesd6f005a2009-10-26 16:49:40 -07007316TRACING
7317M: Steven Rostedt <rostedt@goodmis.org>
7318M: Frederic Weisbecker <fweisbec@gmail.com>
7319M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007320T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007321S: Maintained
7322F: Documentation/trace/ftrace.txt
7323F: arch/*/*/*/ftrace.h
7324F: arch/*/kernel/ftrace.c
7325F: include/*/ftrace.h
7326F: include/linux/trace*.h
7327F: include/trace/
7328F: kernel/trace/
7329
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007331M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007332T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007334K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335
Alan Cox4e688522008-04-30 00:52:11 -07007336TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007337M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7338S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007339T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007340F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007341F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007342F: include/linux/serial_core.h
7343F: include/linux/serial.h
7344F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007345
Antti Palosaari91952bc2012-10-01 12:28:46 -03007346TUA9001 MEDIA DRIVER
7347M: Antti Palosaari <crope@iki.fi>
7348L: linux-media@vger.kernel.org
7349W: http://linuxtv.org/
7350W: http://palosaari.fi/linux/
7351Q: http://patchwork.linuxtv.org/project/linux-media/list/
7352T: git git://linuxtv.org/anttip/media_tree.git
7353S: Maintained
7354F: drivers/media/tuners/tua9001*
7355
Grant Grundler740db6d2008-02-17 11:53:49 -07007356TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007357M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007358L: netdev@vger.kernel.org
7359S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007360F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361
7362TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007363M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364L: vtun@office.satix.net
7365W: http://vtun.sourceforge.net/tun
7366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007367F: Documentation/networking/tuntap.txt
7368F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007370TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007371M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007373F: drivers/tc/
7374F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007375
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007377M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378L: linux-scsi@vger.kernel.org
7379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007380F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007382UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007383M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007384M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007385L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007386T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007387W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007389F: Documentation/filesystems/ubifs.txt
7390F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007391
Alan Coxcc2020e2008-05-19 14:21:51 +01007392UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007393M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007394W: http://www.uclinux.org/
7395L: uclinux-dev@uclinux.org (subscribers-only)
7396S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007397F: arch/m68k/*/*_no.*
7398F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007399
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007400UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007401M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007402W: http://uclinux-h8.sourceforge.jp/
7403S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007404F: arch/h8300/
7405F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007406F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007407
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007409M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007411F: Documentation/filesystems/udf.txt
7412F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413
Alan Coxcc2020e2008-05-19 14:21:51 +01007414UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007415M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007417F: Documentation/filesystems/ufs.txt
7418F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007419
David Herrmann0a09d3a2012-06-10 15:16:28 +02007420UHID USERSPACE HID IO DRIVER:
7421M: David Herrmann <dh.herrmann@googlemail.com>
7422L: linux-input@vger.kernel.org
7423S: Maintained
7424F: drivers/hid/uhid.c
7425F: include/linux/uhid.h
7426
David Vrabel18332a82008-09-17 16:34:44 +01007427ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007428L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007429S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007430F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007431F: include/linux/uwb.h
7432F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007433
GuanXuetaob31d8272011-01-16 00:35:49 +08007434UNICORE32 ARCHITECTURE:
7435M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7436W: http://mprc.pku.edu.cn/~guanxuetao/linux
7437S: Maintained
7438T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7439F: arch/unicore32/
7440
Tony Finchd8379ab2009-11-27 15:50:30 +00007441UNIFDEF
7442M: Tony Finch <dot@dotat.at>
7443W: http://dotat.at/prog/unifdef
7444S: Maintained
7445F: scripts/unifdef.c
7446
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007448M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449W: http://www.kernel.dk
7450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007451F: Documentation/cdrom/
7452F: drivers/cdrom/cdrom.c
7453F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307455UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7456M: Vinayak Holikatti <vinholikatti@gmail.com>
7457M: Santosh Y <santoshsy@gmail.com>
7458L: linux-scsi@vger.kernel.org
7459S: Supported
7460F: Documentation/scsi/ufs.txt
7461F: drivers/scsi/ufs/
7462
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007463UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007464M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007465W: http://www.linux-mtd.infradead.org/
7466L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007467T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007468S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007469F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007470F: include/linux/mtd/ubi.h
7471F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007472
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007473UNSORTED BLOCK IMAGES (UBI) Fastmap
7474M: Richard Weinberger <richard@nod.at>
7475L: linux-mtd@lists.infradead.org
7476S: Maintained
7477F: drivers/mtd/ubi/fastmap.c
7478
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007480M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007481L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007483F: Documentation/usb/acm.txt
7484F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007486USB ATTACHED SCSI
7487M: Matthew Wilcox <willy@linux.intel.com>
7488M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7489L: linux-usb@vger.kernel.org
7490L: linux-scsi@vger.kernel.org
7491S: Supported
7492F: drivers/usb/storage/uas.c
7493
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007495M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007496L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007498F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007501M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007502L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007504F: drivers/net/usb/cdc_*.c
7505F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007507USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007508M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007509L: linux-usb@vger.kernel.org
7510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007511F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007512
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007513USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007514M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007515L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007516W: http://www.linux-usb.org/usbnet
7517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007518F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007519
Alan Coxcc2020e2008-05-19 14:21:51 +01007520USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007521M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007522L: rio500-users@lists.sourceforge.net
7523W: http://rio500.sourceforge.net
7524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007525F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007526
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007528M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007529L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007531F: Documentation/usb/ehci.txt
7532F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533
David Brownell69ae9e32006-11-14 02:03:31 -08007534USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007535M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007536L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007537W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007538T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007540F: drivers/usb/gadget/
7541F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007542
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007543USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007544M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007545L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007546T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007548F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007549F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550
matt mooney857aab32011-06-17 15:50:46 -07007551USB/IP DRIVERS
7552M: Matt Mooney <mfm@muteddisk.com>
7553L: linux-usb@vger.kernel.org
7554S: Maintained
7555F: drivers/staging/usbip/
7556
Olav Kongas959eea22005-11-03 17:38:14 +02007557USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007558M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007559L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007561F: drivers/usb/host/isp116x*
7562F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007563
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007565M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007566L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007568F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569
7570USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007571M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007572L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007573L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574S: Maintained
7575W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007576F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577
Clemens Ladischaf399172011-01-10 16:32:54 +01007578USB MIDI DRIVER
7579M: Clemens Ladisch <clemens@ladisch.de>
7580L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7581T: git git://git.alsa-project.org/alsa-kernel.git
7582S: Maintained
7583F: sound/usb/midi.*
7584
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007586M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007587L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007589F: Documentation/usb/ohci.txt
7590F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591
Matthias Urlichsba460e42005-07-14 00:33:47 -07007592USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007593M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007594L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007596F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007597
Linus Torvalds1da177e2005-04-16 15:20:36 -07007598USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007599M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007600L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007601L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602W: http://pegasus2.sourceforge.net/
7603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007604F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605
Felipe Balbid3ad5582012-05-21 16:24:49 +03007606USB PHY LAYER
7607M: Felipe Balbi <balbi@ti.com>
7608L: linux-usb@vger.kernel.org
7609T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7610S: Maintained
7611F: drivers/usb/phy/
7612F: drivers/usb/otg/
7613
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007614USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007615M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007616L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007618F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619
7620USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007621M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007622L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007623L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624W: http://pegasus2.sourceforge.net/
7625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007626F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007627
Alan Cox4e688522008-04-30 00:52:11 -07007628USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007629M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007630L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007632F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007633
7634USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007635M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007636L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007637S: Maintained
7638W: http://geocities.com/i0xox0i
7639W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007640F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007641
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007643M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007644W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007646F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647
7648USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007649M: Peter Berger <pberger@brimson.com>
7650M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007651L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007653F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654
7655USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007656M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007657L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007659F: Documentation/usb/usb-serial.txt
7660F: drivers/usb/serial/generic.c
7661F: drivers/usb/serial/usb-serial.c
7662F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007665M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007666L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007668F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669
7670USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007671M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007672L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007674F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675
7676USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007677M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007678L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679W: http://www.connecttech.com
7680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007681F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007683USB SMSC75XX ETHERNET DRIVER
7684M: Steve Glendinning <steve.glendinning@shawell.net>
7685L: netdev@vger.kernel.org
7686S: Maintained
7687F: drivers/net/usb/smsc75xx.*
7688
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007689USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007690M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007691L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007693F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007694
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007695USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007696M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007697L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007698L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007699T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007700W: http://www.linux-projects.org
7701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007702F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007703F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704
7705USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007706M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007707L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007709T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007711F: Documentation/usb/
7712F: drivers/net/usb/
7713F: drivers/usb/
7714F: include/linux/usb.h
7715F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716
7717USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007718M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007719L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007721F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722
David Brownell69ae9e32006-11-14 02:03:31 -08007723USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007724M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007725L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007726W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007728F: drivers/net/usb/usbnet.c
7729F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007731USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007732M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007733L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007734L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007735T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007736W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007737S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007738F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007740USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007741M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007742L: linux-wireless@vger.kernel.org
7743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007744F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007745
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007746USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007747M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007748L: linux-usb@vger.kernel.org
7749S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007750F: drivers/usb/host/xhci*
7751F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007752
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007754L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007756S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007757F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007759USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007760M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007761L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007762L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007763T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007764W: http://royale.zerezo.com/zr364xx/
7765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007766F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007767F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007768
Randy Dunlape7839f22008-10-12 16:11:45 -07007769USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007770M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007771M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772L: user-mode-linux-devel@lists.sourceforge.net
7773L: user-mode-linux-user@lists.sourceforge.net
7774W: http://user-mode-linux.sourceforge.net
7775S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007776F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007777F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007778F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007779F: fs/hostfs/
7780F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007781
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007782USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007783M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007784M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007786F: Documentation/DocBook/uio-howto.tmpl
7787F: drivers/uio/
7788F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007789
Karel Zak256cccb2012-06-01 10:13:09 +02007790UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007791M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007792L: util-linux@vger.kernel.org
7793W: http://en.wikipedia.org/wiki/Util-linux
7794T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007795S: Maintained
7796
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007797UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007798M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007799L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007800W: http://dev.gentoo.org/~spock/projects/uvesafb/
7801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007802F: Documentation/fb/uvesafb.txt
7803F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007804
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007805VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007806M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: Documentation/filesystems/vfat.txt
7809F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810
Alex Williamsoncba33452012-07-31 08:16:22 -06007811VFIO DRIVER
7812M: Alex Williamson <alex.williamson@redhat.com>
7813L: kvm@vger.kernel.org
7814S: Maintained
7815F: Documentation/vfio.txt
7816F: drivers/vfio/
7817F: include/linux/vfio.h
7818
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007819VIDEOBUF2 FRAMEWORK
7820M: Pawel Osciak <pawel@osciak.com>
7821M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007822M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007823L: linux-media@vger.kernel.org
7824S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007825F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007826F: include/media/videobuf2-*
7827
Amit Shah9a824462010-03-23 18:23:09 +05307828VIRTIO CONSOLE DRIVER
7829M: Amit Shah <amit.shah@redhat.com>
7830L: virtualization@lists.linux-foundation.org
7831S: Maintained
7832F: drivers/char/virtio_console.c
7833F: include/linux/virtio_console.h
7834
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307835VIRTIO CORE, NET AND BLOCK DRIVERS
7836M: Rusty Russell <rusty@rustcorp.com.au>
7837M: "Michael S. Tsirkin" <mst@redhat.com>
7838L: virtualization@lists.linux-foundation.org
7839S: Maintained
7840F: drivers/virtio/
7841F: drivers/net/virtio_net.c
7842F: drivers/block/virtio_blk.c
7843F: include/linux/virtio_*.h
7844
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007845VIRTIO HOST (VHOST)
7846M: "Michael S. Tsirkin" <mst@redhat.com>
7847L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007848L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007849L: netdev@vger.kernel.org
7850S: Maintained
7851F: drivers/vhost/
7852F: include/linux/vhost.h
7853
Linus Torvalds1da177e2005-04-16 15:20:36 -07007854VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007855M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007857F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858
Jean Delvare32c0a522005-09-22 21:47:58 +02007859VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007860M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007861L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007863F: Documentation/i2c/busses/i2c-viapro
7864F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007865
Harald Weltef0bf7f62009-06-17 20:22:39 +02007866VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007867M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007868M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007869S: Maintained
7870F: drivers/mmc/host/via-sdmmc.c
7871
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007872VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007873M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007874L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007875S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007876F: include/linux/via-core.h
7877F: include/linux/via-gpio.h
7878F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007879F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007880
Francois Romieu01f20732007-01-26 00:57:17 -08007881VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007882M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007883L: netdev@vger.kernel.org
7884S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007885F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886
Patrick McHardybe7f8272007-10-23 20:26:36 -07007887VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007888M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007889L: netdev@vger.kernel.org
7890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007891F: drivers/net/macvlan.c
7892F: include/linux/if_*vlan.h
7893F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007894
Florian Fainelli55e331c2009-06-16 15:33:53 -07007895VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007896M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007897L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007898S: Maintained
7899F: drivers/vlynq/vlynq.c
7900F: include/linux/vlynq.h
7901
Martyn Welch390beae2012-05-03 17:52:36 +01007902VME SUBSYSTEM
7903M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007904M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007905M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7906L: devel@driverdev.osuosl.org
7907S: Maintained
7908T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7909F: Documentation/vme_api.txt
7910F: drivers/staging/vme/
7911F: drivers/vme/
7912F: include/linux/vme*
7913
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007914VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007915M: Shreyas Bhatewara <sbhatewara@vmware.com>
7916M: "VMware, Inc." <pv-drivers@vmware.com>
7917L: netdev@vger.kernel.org
7918S: Maintained
7919F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007920
Alok Kataria851b1642009-10-13 14:51:05 -07007921VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007922M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007923M: VMware PV-Drivers <pv-drivers@vmware.com>
7924L: linux-scsi@vger.kernel.org
7925S: Maintained
7926F: drivers/scsi/vmw_pvscsi.c
7927F: drivers/scsi/vmw_pvscsi.h
7928
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007929VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007930M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007931M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007932W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007933W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007934T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007935S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007936F: drivers/regulator/
7937F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007938
Juerg Haefligerab413192006-09-24 20:54:04 +02007939VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007940M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007941L: lm-sensors@lm-sensors.org
7942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007943F: Documentation/hwmon/vt1211
7944F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007945
Roger Lucas1de9e372005-11-26 20:20:05 +01007946VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007947M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007948L: lm-sensors@lm-sensors.org
7949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007950F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007951
Tony Olech88095e72011-05-14 16:48:13 -04007952VUB300 USB to SDIO/SD/MMC bridge chip
7953M: Tony Olech <tony.olech@elandigitalsystems.com>
7954L: linux-mmc@vger.kernel.org
7955L: linux-usb@vger.kernel.org
7956S: Supported
7957F: drivers/mmc/host/vub300.c
7958
Linus Torvalds1da177e2005-04-16 15:20:36 -07007959W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007960M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007962F: Documentation/w1/
7963F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964
Charles Spirakis13927072006-07-05 18:05:15 +02007965W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007966M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007967L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007969F: Documentation/hwmon/w83791d
7970F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02007971
Rudolf Marek61db0112006-12-12 18:18:30 +01007972W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007973M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01007974L: lm-sensors@lm-sensors.org
7975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007976F: Documentation/hwmon/w83793
7977F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01007978
Jean Delvaree3760b42010-10-28 20:31:49 +02007979W83795 HARDWARE MONITORING DRIVER
7980M: Jean Delvare <khali@linux-fr.org>
7981L: lm-sensors@lm-sensors.org
7982S: Maintained
7983F: drivers/hwmon/w83795.c
7984
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007986M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007988F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007990WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007991M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00007992L: linux-watchdog@vger.kernel.org
7993W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01007994T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007996F: Documentation/watchdog/
7997F: drivers/watchdog/
7998F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01007999
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008001M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002L: linux-scsi@vger.kernel.org
8003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008004F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005
David Herrmannb22e00f2011-09-06 13:50:40 +02008006WIIMOTE HID DRIVER
8007M: David Herrmann <dh.herrmann@googlemail.com>
8008L: linux-input@vger.kernel.org
8009S: Maintained
8010F: drivers/hid/hid-wiimote*
8011
David Härdemane258b802009-09-21 17:04:53 -07008012WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008013M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008014S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008015F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008016
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008017WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008018M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008019M: linux-wimax@intel.com
8020L: wimax@linuxwimax.org
8021S: Supported
8022W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008023F: Documentation/wimax/README.wimax
8024F: include/linux/wimax.h
8025F: include/linux/wimax/debug.h
8026F: include/net/wimax.h
8027F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008028
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008029WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008030M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008032F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008033
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008035M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008036L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008037W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008039F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008040
Mark Brownfebf1df2008-04-02 00:51:09 -04008041WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008042M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8043M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008044L: linux-input@vger.kernel.org
8045T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8046W: http://opensource.wolfsonmicro.com/node/7
8047S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008048F: drivers/input/touchscreen/*wm97*
8049F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008050
Mark Brown055bcbc2010-08-13 14:18:12 +01008051WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008052M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008053L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008054T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008055T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008056W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008057S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008058F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008059F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008060F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008061F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008062F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008063F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008064F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008065F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008066F: drivers/input/misc/wm831x-on.c
8067F: drivers/input/touchscreen/wm831x-ts.c
8068F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008069F: drivers/mfd/arizona*
8070F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008071F: drivers/power/wm83*.c
8072F: drivers/rtc/rtc-wm83*.c
8073F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008074F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008075F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008076F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008077F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008078F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008079F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008080F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008081F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008082F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008083F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008084
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008085WORKQUEUE
8086M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008087T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8088S: Maintained
8089F: include/linux/workqueue.h
8090F: kernel/workqueue.c
8091F: Documentation/workqueue.txt
8092
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008094M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008096S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008097F: Documentation/networking/x25*
8098F: include/net/x25*
8099F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008101X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008102M: Thomas Gleixner <tglx@linutronix.de>
8103M: Ingo Molnar <mingo@redhat.com>
8104M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008105M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008106T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008108F: Documentation/x86/
8109F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008110
Matthew Garrettd09448532010-02-11 10:40:13 -05008111X86 PLATFORM DRIVERS
8112M: Matthew Garrett <mjg@redhat.com>
8113L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008114T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008115S: Maintained
8116F: drivers/platform/x86
8117
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008118X86 MCE INFRASTRUCTURE
8119M: Tony Luck <tony.luck@intel.com>
8120M: Borislav Petkov <bp@amd64.org>
8121L: linux-edac@vger.kernel.org
8122S: Maintained
8123F: arch/x86/kernel/cpu/mcheck/*
8124
Ian Campbellc4468082011-04-27 15:26:46 -07008125XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008126M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008127M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008128L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8129L: virtualization@lists.linux-foundation.org
8130S: Supported
8131F: arch/x86/xen/
8132F: drivers/*/xen-*front.c
8133F: drivers/xen/
8134F: arch/x86/include/asm/xen/
8135F: include/xen/
8136
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008137XEN HYPERVISOR ARM
8138M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8139L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8140S: Supported
8141F: arch/arm/xen/
8142F: arch/arm/include/asm/xen/
8143
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008144XEN NETWORK BACKEND DRIVER
8145M: Ian Campbell <ian.campbell@citrix.com>
8146L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8147L: netdev@vger.kernel.org
8148S: Supported
8149F: drivers/net/xen-netback/*
8150
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008151XEN PCI SUBSYSTEM
8152M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008153L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008154S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008155F: arch/x86/pci/*xen*
8156F: drivers/pci/*xen*
8157
8158XEN SWIOTLB SUBSYSTEM
8159M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008160L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008161S: Supported
8162F: arch/x86/xen/*swiotlb*
8163F: drivers/xen/*swiotlb*
8164
Linus Torvalds1da177e2005-04-16 15:20:36 -07008165XFS FILESYSTEM
8166P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008167M: Ben Myers <bpm@sgi.com>
8168M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008169M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008170L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008171W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008172T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008173S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008174F: Documentation/filesystems/xfs.txt
8175F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008177XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008178M: Anirudha Sarangi <anirudh@xilinx.com>
8179M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008180S: Maintained
8181F: drivers/net/ethernet/xilinx/xilinx_axienet*
8182
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008183XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008184M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008185W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008187F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008188
Peter Korsgaard238b8722006-12-06 20:35:17 -08008189XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008190M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008191L: linux-serial@vger.kernel.org
8192S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008193F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008194
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008196M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008197L: linux-hams@vger.kernel.org
8198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008199F: drivers/net/hamradio/yam*
8200F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008201
Henkaf64a5e2005-10-12 15:02:56 +02008202YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008203M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008204L: usbb2k-api-dev@nongnu.org
8205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008206F: Documentation/input/yealink.txt
8207F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008208
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008210M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211W: http://yaina.de/jreuter/
8212W: http://www.qsl.net/dl1bke/
8213L: linux-hams@vger.kernel.org
8214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008215F: Documentation/networking/z8530drv.txt
8216F: drivers/net/hamradio/*scc.c
8217F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008218
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008219ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008220M: Daniel Drake <dsd@gentoo.org>
8221M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008222W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008223L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008224L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008226F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008227
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008229L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008230L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008231W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008232T: Mercurial http://linuxtv.org/hg/v4l-dvb
8233S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008234F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008236ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008237M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008238S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008239F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008240
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008242M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008243L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008244Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008245T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008247F: *
8248F: */