blob: ecb83cdf06c06b160b226bd0e26a625497abbcc7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070093 N: Files and directories with regex patterns.
94 N: [^a-z]tegra all files whose path contains the word tegra
95 One pattern per line. Multiple N: lines acceptable.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070096 X: Files and directories that are NOT maintained, same rules as F:
97 Files exclusions are tested before file matches.
98 Can be useful for excluding a specific subdirectory, for instance:
99 F: net/
100 X: net/ipv6/
101 matches all files in and below net excluding net/ipv6/
102 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700103 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700105 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700106 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700107 matches patches or files that contain one or more of the words
108 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700109 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111Note: For the hard of thinking, this list is meant to remain in alphabetical
112order. If you could add yourselves to it in alphabetical order that would be
113so much easier [Ed]
114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700118
Steffen Klasserta6d89912007-08-10 14:05:27 -07001193C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700120M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700121L: netdev@vger.kernel.org
122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700123F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700124F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700127M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700128L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700130F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
adam radfordc4de0ce2010-03-08 12:40:36 -08001323WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
133M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800135W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800137F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
13953C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700146M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-hams@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700152M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700153M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700156F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
1588250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800159M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700163T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800164F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700165F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000169S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700170F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001729P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Eric Van Hensbergen <ericvh@gmail.com>
174M: Ron Minnich <rminnich@sandia.gov>
175M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100176L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500177W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800178Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700181F: Documentation/filesystems/9p.txt
182F: fs/9p/
Rob Landley2315cb12013-05-28 13:47:58 -0500183F: net/9p/
184F: include/net/9p/
185F: include/uapi/linux/virtio_9p.h
186F: include/trace/events/9p.h
187
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800188
Antti Palosaari91952bc2012-10-01 12:28:46 -0300189A8293 MEDIA DRIVER
190M: Antti Palosaari <crope@iki.fi>
191L: linux-media@vger.kernel.org
192W: http://linuxtv.org/
193W: http://palosaari.fi/linux/
194Q: http://patchwork.linuxtv.org/project/linux-media/list/
195T: git git://linuxtv.org/anttip/media_tree.git
196S: Maintained
197F: drivers/media/dvb-frontends/a8293*
198
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700200M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700201L: linux-scsi@vger.kernel.org
202W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700204F: Documentation/scsi/aacraid.txt
205F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700207ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100208M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200209L: lm-sensors@lm-sensors.org
210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700211F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200212
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700214M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700215L: lm-sensors@lm-sensors.org
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700220M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221L: linux-acenic@sunsite.dk
222S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700223F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Peter Feuerere86435e2009-06-21 18:53:03 +0200225ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700226M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700228W: http://piie.net/?section=acerhdf
229S: Maintained
230F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200231
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800233M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500234L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700236F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700239M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200240M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500241L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400242W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800243Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400244T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500245S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700246F: drivers/acpi/
247F: drivers/pnp/pnpacpi/
248F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700249F: include/acpi/
Lv Zheng994b942f2013-06-20 08:02:20 +0800250F: Documentation/acpi
Lv Zheng89ca78a2013-06-20 08:02:44 +0800251F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600252F: drivers/pci/*acpi*
253F: drivers/pci/*/*acpi*
254F: drivers/pci/*/*/*acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Len Brown8b59a452007-01-08 19:03:28 -0500263ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700269
Len Brown359acec2007-02-10 01:59:24 -0500270ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700271M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500272L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300273W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700275F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500276
Carlos Corbachobff431e2008-02-05 02:17:04 +0000277ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500278L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100279S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700280F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000281
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100282AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700283M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200284W: http://wiki.parisc-linux.org/AD1889
285L: linux-parisc@vger.kernel.org
286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700287F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100288
Michael Hennerich527a1a82010-10-28 11:31:28 +0000289AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/misc/ad525x_dpot.c
295
296AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/regulator/ad5398.c
302
303AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/misc/ad714x.c
309
310AD7877 TOUCHSCREEN DRIVER
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7877.c
316
317AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
318M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100319L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700320W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000321S: Supported
322F: drivers/input/touchscreen/ad7879.c
323
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700324ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
325M: Jiri Kosina <jkosina@suse.cz>
326S: Maintained
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200330L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: Documentation/hwmon/adm1025
333F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Corentin Labbecae2caa2007-02-14 21:15:04 +0100335ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700336M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100337L: lm-sensors@lm-sensors.org
338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700339F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100340
Michael Wucc0b88c2007-08-31 01:15:25 -0400341ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400342L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200343W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400344S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700345F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400346
Sakari Ailuse8e31622012-11-12 18:14:39 -0300347ADP1653 FLASH CONTROLLER DRIVER
348M: Sakari Ailus <sakari.ailus@iki.fi>
349L: linux-media@vger.kernel.org
350S: Maintained
351F: drivers/media/i2c/adp1653.c
352F: include/media/adp1653.h
353
Michael Hennerich527a1a82010-10-28 11:31:28 +0000354ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
355M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100356L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700357W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358S: Supported
359F: drivers/mfd/adp5520.c
360F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700361F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800362F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363F: drivers/input/keyboard/adp5520-keys.c
364
365ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
366M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100367L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700368W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000369S: Supported
370F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800371F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000372
373ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
374M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100375L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700376W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000377S: Supported
378F: drivers/video/backlight/adp8860_bl.c
379
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100380ADS1015 HARDWARE MONITOR DRIVER
381M: Dirk Eibach <eibach@gdsys.de>
382L: lm-sensors@lm-sensors.org
383S: Maintained
384F: Documentation/hwmon/ads1015
385F: drivers/hwmon/ads1015.c
386F: include/linux/i2c/ads1015.h
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700389M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700391F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Jean Delvareb058b852009-12-09 20:36:08 +0100393ADT7475 HARDWARE MONITOR DRIVER
394M: Jean Delvare <khali@linux-fr.org>
395L: lm-sensors@lm-sensors.org
396S: Maintained
397F: Documentation/hwmon/adt7475
398F: drivers/hwmon/adt7475.c
399
Michael Hennerich527a1a82010-10-28 11:31:28 +0000400ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
401M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100402L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700403W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000404S: Supported
405F: drivers/input/misc/adxl34x.c
406
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400407ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400409L: linux-scsi@vger.kernel.org
410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700411F: Documentation/scsi/advansys.txt
412F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700415M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700417F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Antti Palosaari91952bc2012-10-01 12:28:46 -0300419AF9013 MEDIA DRIVER
420M: Antti Palosaari <crope@iki.fi>
421L: linux-media@vger.kernel.org
422W: http://linuxtv.org/
423W: http://palosaari.fi/linux/
424Q: http://patchwork.linuxtv.org/project/linux-media/list/
425T: git git://linuxtv.org/anttip/media_tree.git
426S: Maintained
427F: drivers/media/dvb-frontends/af9013*
428
429AF9033 MEDIA DRIVER
430M: Antti Palosaari <crope@iki.fi>
431L: linux-media@vger.kernel.org
432W: http://linuxtv.org/
433W: http://palosaari.fi/linux/
434Q: http://patchwork.linuxtv.org/project/linux-media/list/
435T: git git://linuxtv.org/anttip/media_tree.git
436S: Maintained
437F: drivers/media/dvb-frontends/af9033*
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200440L: linux-fsdevel@vger.kernel.org
441S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700442F: Documentation/filesystems/affs.txt
443F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700446M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700447L: linux-afs@lists.infradead.org
448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700449F: fs/afs/
450F: include/net/af_rxrpc.h
451F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700455T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/char/agp/
458F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800459F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463L: linux-scsi@vger.kernel.org
464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700465F: drivers/scsi/aha152x*
466F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Hannes Reinecke64624d42007-10-19 10:32:29 +0200468AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200470L: linux-scsi@vger.kernel.org
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/scsi/aic7xxx/
473F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200474
Hans Verkuil450500a2012-11-23 07:11:33 -0300475AIMSLAB FM RADIO RECEIVER DRIVER
476M: Hans Verkuil <hverkuil@xs4all.nl>
477L: linux-media@vger.kernel.org
478T: git git://linuxtv.org/media_tree.git
479W: http://linuxtv.org
480S: Maintained
481F: drivers/media/radio/radio-aimslab*
482
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700483AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700484M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700485L: linux-aio@kvack.org
486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700487F: fs/aio.c
488F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700491M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700492L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493W: http://www.linux-usb.org/SpeedTouch/
494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700495F: drivers/usb/atm/speedtch.c
496F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Pierre Ossman272f1332007-05-14 21:25:26 +0200498ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700499M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700501F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200502
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000503ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700504M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100505L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700507F: Documentation/i2c/busses/i2c-ali1563
508F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700511M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500513M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700514S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700515L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700516F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Tobias Klauseradf92512011-02-09 10:58:29 +0100518ALTERA UART/JTAG UART SERIAL DRIVERS
519M: Tobias Klauser <tklauser@distanz.ch>
520L: linux-serial@vger.kernel.org
521L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
522S: Maintained
523F: drivers/tty/serial/altera_uart.c
524F: drivers/tty/serial/altera_jtaguart.c
525F: include/linux/altera_uart.h
526F: include/linux/altera_jtaguart.h
527
Andreas Herrmann512d1022011-05-25 20:43:31 +0200528AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100529M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200530L: lm-sensors@lm-sensors.org
531S: Maintained
532F: Documentation/hwmon/fam15h_power
533F: drivers/hwmon/fam15h_power.c
534
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700535AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700536M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700537L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700539F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700540
Jordan Crousef90b8112006-01-06 00:12:14 -0800541AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800542P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700543L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800544W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
545S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700546F: drivers/char/hw_random/geode-rng.c
547F: drivers/crypto/geode*
548F: drivers/video/geode/
549F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800550
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200551AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200552M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200553L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100554T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200555S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800556F: drivers/iommu/amd_iommu*.[ch]
557F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200558
Peter Orubae7f5b302008-07-28 18:44:11 +0200559AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100560M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700561L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700563F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200564
Stelian Pop284f42b2006-12-12 18:18:31 +0100565AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700566M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100567S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200568F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100569
Tom Tuckerf94b5332006-09-22 15:22:48 -0700570AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700571M: Tom Tucker <tom@opengridcomputing.com>
572M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700573L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700575F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700576
Hans Verkuil531fca12012-11-23 06:53:24 -0300577ANALOG DEVICES INC AD9389B DRIVER
578M: Hans Verkuil <hans.verkuil@cisco.com>
579L: linux-media@vger.kernel.org
580S: Maintained
581F: drivers/media/i2c/ad9389b*
582
583ANALOG DEVICES INC ADV7604 DRIVER
584M: Hans Verkuil <hans.verkuil@cisco.com>
585L: linux-media@vger.kernel.org
586S: Maintained
587F: drivers/media/i2c/adv7604*
588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000589ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200590M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100591L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000592L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700593W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000594S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100595F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200596F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000597F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000598F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100599F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000600
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400601ANALOG DEVICES INC ASOC DRIVERS
602L: uclinux-dist-devel@blackfin.uclinux.org
603L: alsa-devel@alsa-project.org (moderated for non-subscribers)
604W: http://blackfin.uclinux.org/
605S: Supported
606F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400607
Johannes Berg42269062006-07-25 16:15:50 +0200608AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700609M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000610L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700611L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700613F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200616M: Jiri Kosina <jkosina@suse.cz>
617S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700618F: arch/x86/kernel/apm_32.c
619F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800620F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200621F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700623APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700625L: linux-input@vger.kernel.org
626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700627F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700628
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700629APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200630M: Henrik Rydberg <rydberg@euromail.se>
631L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700633F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700636M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700638F: drivers/net/appletalk/
639F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Viresh Kumara4801672011-02-22 15:46:07 +0530641ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700642M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530643L: linux-ide@vger.kernel.org
644S: Maintained
645F: include/linux/pata_arasan_cf_data.h
646F: drivers/ata/pata_arasan_cf.c
647
Jaya Kumar1154ea72005-06-21 17:17:04 -0700648ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700649M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700651F: drivers/video/arcfb.c
652F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700655M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700657F: arch/arm/lib/floppydma.S
658F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Will Deacon6f965212011-07-01 14:38:53 +0100660ARM PMU PROFILING AND DEBUGGING
661M: Will Deacon <will.deacon@arm.com>
662S: Maintained
663F: arch/arm/kernel/perf_event*
664F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100665F: arch/arm/include/asm/pmu.h
666F: arch/arm/kernel/hw_breakpoint.c
667F: arch/arm/include/asm/hw_breakpoint.h
668
Russell Kingd4275352009-04-16 14:05:27 +0100669ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100672W: http://www.arm.linux.org.uk/
673S: Maintained
674F: arch/arm/
675
Stephen Boydd323c2432012-10-24 11:00:29 -0700676ARM SUB-ARCHITECTURES
677L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800678S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700679F: arch/arm/mach-*/
680F: arch/arm/plat-*/
681T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
682
Russell Kingcefbf4e2009-11-22 17:40:28 +0000683ARM PRIMECELL AACI PL041 DRIVER
684M: Russell King <linux@arm.linux.org.uk>
685S: Maintained
686F: sound/arm/aaci.*
687
688ARM PRIMECELL CLCD PL110 DRIVER
689M: Russell King <linux@arm.linux.org.uk>
690S: Maintained
691F: drivers/video/amba-clcd.*
692
693ARM PRIMECELL KMI PL050 DRIVER
694M: Russell King <linux@arm.linux.org.uk>
695S: Maintained
696F: drivers/input/serio/ambakmi.*
697F: include/linux/amba/kmi.h
698
Russell King2761f5c2007-05-24 06:56:08 +0200699ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000700M: Russell King <linux@arm.linux.org.uk>
701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700702F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000703F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200704
Russell King1b4304e2013-02-11 15:26:27 +0000705ARM PRIMECELL UART PL010 AND PL011 DRIVERS
706M: Russell King <linux@arm.linux.org.uk>
707S: Maintained
708F: drivers/tty/serial/amba-pl01*.c
709F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710
Russell Kingcefbf4e2009-11-22 17:40:28 +0000711ARM PRIMECELL BUS SUPPORT
712M: Russell King <linux@arm.linux.org.uk>
713S: Maintained
714F: drivers/amba/
715F: include/linux/amba/bus.h
716
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700718M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720S: Maintained
721
Sergey Lapin9c784f92008-08-03 02:29:48 +0100722ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700723M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100725S: Maintained
726
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800727ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700728M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700729L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800730S: Maintained
731
Maxime Ripard1b106692012-11-15 21:51:26 +0100732ARM/Allwinner A1X SoC support
733M: Maxime Ripard <maxime.ripard@free-electrons.com>
734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
735S: Maintained
736F: arch/arm/mach-sunxi/
737
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800738ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700739M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800740M: Nicolas Ferre <nicolas.ferre@atmel.com>
741M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200743W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800744W: http://www.linux4sam.org
745S: Supported
746F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100747
Rob Herring986cf2e2011-06-22 11:28:53 -0500748ARM/CALXEDA HIGHBANK ARCHITECTURE
749M: Rob Herring <rob.herring@calxeda.com>
750L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
751S: Maintained
752F: arch/arm/mach-highbank/
753
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300754ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -0700755M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300756S: Maintained
757F: arch/arm/mach-cns3xxx/
758T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
759
Alexander Shiyan386ab512012-11-17 17:57:24 +0400760ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
761M: Alexander Shiyan <shc_work@mail.ru>
762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
763S: Odd Fixes
764F: arch/arm/mach-clps711x/
765
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800766ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100767M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000768M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800770S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100771F: arch/arm/mach-ep93xx/
772F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800773
774ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700775M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700776L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800777S: Maintained
778
Russell Kingd4275352009-04-16 14:05:27 +0100779ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700782S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100783F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700784F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100785
Mike Rapoportd48134e72008-08-20 09:03:26 +0100786ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100789S: Maintained
790
Hubert Feurstein94150092009-10-07 08:36:07 +0100791ARM/CONTEC MICRO9 MACHINE SUPPORT
792M: Hubert Feurstein <hubert.feurstein@contec.at>
793S: Maintained
794F: arch/arm/mach-ep93xx/micro9.c
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700797M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798S: Maintained
799
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200800ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100801M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100803T: git git://git.berlios.de/gemini-board
804S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300805F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200806
Barry Songa990cbd2011-07-12 21:44:10 +0800807ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
808M: Barry Song <baohua.song@csr.com>
809L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +0800810T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +0800811S: Maintained
812F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800813F: drivers/dma/sirf-dma.c
814F: drivers/i2c/busses/i2c-sirf.c
Barry Songb3b665b2013-03-21 16:27:19 +0800815F: drivers/mmc/host/sdhci-sirf.c
Barry Song47ac3e42012-04-30 11:23:23 +0800816F: drivers/pinctrl/pinctrl-sirf.c
817F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800818
Russell Kingd4275352009-04-16 14:05:27 +0100819ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700820M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700821L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100822W: http://www.arm.linux.org.uk/
823S: Maintained
824F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700825F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100826
Russell Kinga9da4f72008-07-12 21:42:04 +0100827ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Daniel Ribeiro <drwyrm@gmail.com>
829M: Stefan Schmidt <stefan@openezx.org>
830M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200831L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100832W: http://www.openezx.org/
833S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200834T: topgit git://git.openezx.org/openezx.git
835F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100836
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200837ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100838M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100840S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700841T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300842F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200843
Russell Kingd4275352009-04-16 14:05:27 +0100844ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700845M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100847W: http://www.arm.linux.org.uk/
848S: Maintained
849F: arch/arm/include/asm/hardware/dec21285.h
850F: arch/arm/mach-footbridge/
851
Sascha Hauer86183a52008-07-24 23:50:35 +0200852ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700853M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700854L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200855S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700856T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100857F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700858F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200859
Shawn Guo8bcb9762011-10-07 22:24:18 +0800860ARM/FREESCALE IMX6
861M: Shawn Guo <shawn.guo@linaro.org>
862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
863S: Maintained
864T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
865F: arch/arm/mach-imx/*imx6*
866
Shawn Guoa9866a02011-10-21 11:53:34 +0800867ARM/FREESCALE MXS ARM ARCHITECTURE
868M: Shawn Guo <shawn.guo@linaro.org>
869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
870S: Maintained
871T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
872F: arch/arm/mach-mxs/
873
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800874ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700875M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800877S: Maintained
878
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100879ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700880M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100882S: Maintained
883
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200884ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700885M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100886M: Paul Parsons <lost.distance@yahoo.com>
887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200888S: Maintained
889F: arch/arm/mach-pxa/hx4700.c
890F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100891F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200892
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100893ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700894M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200895W: www.jlime.com
896S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700897T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
898F: arch/arm/mach-sa1100/jornada720.c
899F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100900
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200901ARM/IGEP MACHINE SUPPORT
902M: Enric Balletbo i Serra <eballetbo@gmail.com>
903M: Javier Martinez Canillas <javier@dowhile0.org>
904L: linux-omap@vger.kernel.org
905L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
906S: Maintained
907F: arch/arm/mach-omap2/board-igep0020.c
908
Marek Vasut403d2972010-05-22 00:29:39 +0200909ARM/INCOME PXA270 SUPPORT
910M: Marek Vasut <marek.vasut@gmail.com>
911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700913F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200914
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800915ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700916M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700917M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700919S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100920
921ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700922M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700924S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925
926ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700928M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700930S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800931
932ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700933M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700934M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700936S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800937
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800938ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700939M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800941S: Maintained
942
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200943ARM/INTEL IXP4XX ARM ARCHITECTURE
944M: Imre Kaloz <kaloz@openwrt.org>
945M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200947S: Maintained
948F: arch/arm/mach-ixp4xx/
949
Joe Perches838553c2010-10-26 14:22:59 -0700950ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100951M: Jonathan Cameron <jic23@cam.ac.uk>
952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953S: Maintained
954F: arch/arm/mach-pxa/stargate2.c
955F: drivers/pcmcia/pxa2xx_stargate2.c
956
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800957ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700958M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700959M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700960L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700961S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800962
963ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700964M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700965L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800966S: Maintained
967
Santosh Shilimkar1154f852013-08-05 14:11:14 -0400968ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
969M: Santosh Shilimkar <santosh.shilimkar@ti.com>
970L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971S: Maintained
972F: arch/arm/mach-keystone/
973
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800974ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700975M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800977S: Maintained
978
Philipp Zabel3b8861712008-07-09 21:27:15 +0100979ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700980M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100981S: Maintained
982
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200983ARM/Marvell Armada 370 and Armada XP SOC support
984M: Jason Cooper <jason@lakedaemon.net>
985M: Andrew Lunn <andrew@lunn.ch>
986M: Gregory Clement <gregory.clement@free-electrons.com>
987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
988S: Maintained
989F: arch/arm/mach-mvebu/
990
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400991ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
992M: Jason Cooper <jason@lakedaemon.net>
993M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400995S: Maintained
996F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400997F: arch/arm/mach-kirkwood/
998F: arch/arm/mach-mv78xx0/
999F: arch/arm/mach-orion5x/
1000F: arch/arm/plat-orion/
1001
Alexander Clouterd69ac132011-04-14 15:22:02 -07001002ARM/Orion SoC/Technologic Systems TS-78xx platform support
1003M: Alexander Clouter <alex@digriz.org.uk>
1004L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1005W: http://www.digriz.org.uk/ts78xx/kernel
1006S: Maintained
1007F: arch/arm/mach-orion5x/ts78xx-*
1008
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001009ARM/MICREL KS8695 ARCHITECTURE
1010M: Greg Ungerer <gerg@uclinux.org>
1011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012F: arch/arm/mach-ks8695
1013S: Odd Fixes
1014
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001015ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001017L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001018F: arch/arm/mach-pxa/mioa701.c
1019S: Maintained
1020
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001021ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001022M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001023S: Maintained
1024
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001025ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001026M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001027M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001028M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1029L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030S: Maintained
1031F: arch/arm/mach-nomadik/
1032F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001033F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001034T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001035
Andy Green9d762952009-05-19 06:41:42 -03001036ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001038L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1039W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1040S: Supported
1041
Daniel Walker0c19d212009-12-07 16:53:51 -08001042ARM/QUALCOMM MSM MACHINE SUPPORT
1043M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001044M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001045M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001046L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001047F: arch/arm/mach-msm/
1048F: drivers/video/msm/
1049F: drivers/mmc/host/msm_sdcc.c
1050F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001051F: drivers/tty/serial/msm_serial.h
1052F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001053F: drivers/*/pm8???-*
David Browncd9a8fb2013-03-12 11:41:55 -07001054F: drivers/ssbi/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001055F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001056T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001057S: Maintained
1058
Dirk Opfer8459c152005-11-06 14:27:52 +00001059ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1061M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001062S: Maintained
1063
Marek Vasut5d783a22009-07-16 13:26:48 +02001064ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001065M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001066L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001067W: http://hackndev.com
1068S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001069F: arch/arm/mach-pxa/include/mach/palmtx.h
1070F: arch/arm/mach-pxa/palmtx.c
1071F: arch/arm/mach-pxa/include/mach/palmt5.h
1072F: arch/arm/mach-pxa/palmt5.c
1073F: arch/arm/mach-pxa/include/mach/palmld.h
1074F: arch/arm/mach-pxa/palmld.c
1075F: arch/arm/mach-pxa/include/mach/palmte2.h
1076F: arch/arm/mach-pxa/palmte2.c
1077F: arch/arm/mach-pxa/include/mach/palmtc.h
1078F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001079
Joe Perchesb57fe922009-12-14 18:00:52 -08001080ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001081M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001082L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001083W: http://hackndev.com
1084S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001085F: arch/arm/mach-pxa/include/mach/palmtreo.h
1086F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001087
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001088ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001090L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001091W: http://hackndev.com
1092S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001093F: arch/arm/mach-pxa/include/mach/palmz72.h
1094F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1099S: Maintained
1100
1101ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001102M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001103L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104W: http://www.arm.linux.org.uk/
1105S: Maintained
1106
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001107ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001108M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001109L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001110S: Maintained
1111
Russell Kingd4275352009-04-16 14:05:27 +01001112ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001113M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001115W: http://www.arm.linux.org.uk/
1116S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001117F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1118F: arch/arm/include/asm/hardware/ioc.h
1119F: arch/arm/include/asm/hardware/iomd.h
1120F: arch/arm/include/asm/hardware/memc.h
1121F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001122F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001123F: drivers/net/ethernet/i825xx/ether1*
1124F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001125F: drivers/scsi/arm/
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001128M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129W: http://www.shark-linux.de/shark.html
1130S: Maintained
1131
Ben Dooksb21477f2009-06-13 10:46:34 +01001132ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001133M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001134M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001135L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001136L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001137W: http://www.fluff.org/ben/linux/
1138S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001139F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001140F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001141F: arch/arm/mach-s3c24*/
1142F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001143F: drivers/*/*s3c2410*
1144F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001145F: drivers/spi/spi-s3c*
1146F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001148ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001149M: Kukjin Kim <kgene.kim@samsung.com>
1150L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1152S: Maintained
1153F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001154F: arch/arm/mach-exynos*/
Doug Anderson33d43cd2013-06-18 07:02:23 +09001155N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001156
Kyungmin Park10ffa962011-03-04 17:36:26 -08001157ARM/SAMSUNG MOBILE MACHINE SUPPORT
1158M: Kyungmin Park <kyungmin.park@samsung.com>
1159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160S: Maintained
1161F: arch/arm/mach-s5pv210/mach-aquila.c
1162F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001163F: arch/arm/mach-exynos/mach-universal_c210.c
1164F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001165
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001166ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1167M: Kyungmin Park <kyungmin.park@samsung.com>
1168M: Kamil Debski <k.debski@samsung.com>
1169L: linux-arm-kernel@lists.infradead.org
1170L: linux-media@vger.kernel.org
1171S: Maintained
1172F: drivers/media/platform/s5p-g2d/
1173
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001174ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1175M: Kyungmin Park <kyungmin.park@samsung.com>
1176M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001177M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001178L: linux-arm-kernel@lists.infradead.org
1179L: linux-media@vger.kernel.org
1180S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001181F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001182F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001183
1184ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1185M: Kyungmin Park <kyungmin.park@samsung.com>
1186M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1187L: linux-arm-kernel@lists.infradead.org
1188L: linux-media@vger.kernel.org
1189S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001190F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001191
Paul Mundtd48d38e2010-02-08 12:50:24 +09001192ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001193M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001194M: Magnus Damm <magnus.damm@gmail.com>
1195L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001196W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001197Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001198T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001199S: Supported
1200F: arch/arm/mach-shmobile/
1201F: drivers/sh/
1202
Dinh Nguyen66314222012-07-18 16:07:18 -06001203ARM/SOCFPGA ARCHITECTURE
1204M: Dinh Nguyen <dinguyen@altera.com>
1205S: Maintained
1206F: arch/arm/mach-socfpga/
1207
1208ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1209M: Dinh Nguyen <dinguyen@altera.com>
1210S: Maintained
1211F: drivers/clk/socfpga/
1212
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001213ARM/STI ARCHITECTURE
1214M: Srinivas Kandagatla <srinivas.kandagatla@st.com>
1215M: Stuart Menefy <stuart.menefy@st.com>
1216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217L: kernel@stlinux.com
1218W: http://www.stlinux.com
1219S: Maintained
1220F: arch/arm/mach-sti/
1221
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001222ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001223M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001224L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001225S: Maintained
1226
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001227ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001228M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1230S: Maintained
1231
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001232ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001233M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001234L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001235S: Maintained
1236
wanzongshun98ad6e32009-02-13 06:04:32 +01001237ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001238M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001239L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001240W: http://www.mcuos.com
1241S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001242F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001243F: drivers/input/keyboard/w90p910_keypad.c
1244F: drivers/input/touchscreen/w90p910_ts.c
1245F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001246F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001247F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001248F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001249F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001250F: drivers/usb/host/ehci-w90x900.c
1251F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001252
Linus Walleij54274d72010-04-04 10:58:03 +01001253ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001254M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001255L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256S: Supported
1257F: arch/arm/mach-u300/
1258F: drivers/i2c/busses/i2c-stu300.c
1259F: drivers/rtc/rtc-coh901331.c
1260F: drivers/watchdog/coh901327_wdt.c
1261F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001262F: drivers/mfd/ab3100*
1263F: drivers/rtc/rtc-ab3100.c
1264F: drivers/rtc/rtc-coh901331.c
1265T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001266
Linus Walleij87572882010-12-22 09:18:29 +01001267ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001268M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270S: Maintained
1271F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001272F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001273F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001274F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001275F: drivers/mfd/abx500*
1276F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001277F: drivers/mfd/dbx500*
1278F: drivers/mfd/db8500*
1279F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001280F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001281F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001282T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001283
Russell Kingd4275352009-04-16 14:05:27 +01001284ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001285M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001286L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001287W: http://www.arm.linux.org.uk/
1288S: Maintained
1289F: arch/arm/vfp/
1290
Marek Vasute66b6d82010-03-26 06:51:32 +01001291ARM/VOIPAC PXA270 SUPPORT
1292M: Marek Vasut <marek.vasut@gmail.com>
1293L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294S: Maintained
1295F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001296F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001297
Tony Prisk04529fe2012-07-24 04:19:37 +12001298ARM/VT8500 ARM ARCHITECTURE
1299M: Tony Prisk <linux@prisktech.co.nz>
1300L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301S: Maintained
1302F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001303F: drivers/clocksource/vt8500_timer.c
1304F: drivers/gpio/gpio-vt8500.c
Tony Prisk560746e2013-06-15 09:52:16 +12001305F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001306F: drivers/mmc/host/wmt-sdmmc.c
1307F: drivers/pwm/pwm-vt8500.c
1308F: drivers/rtc/rtc-vt8500.c
1309F: drivers/tty/serial/vt8500_serial.c
1310F: drivers/usb/host/ehci-vt8500.c
1311F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001312F: drivers/video/vt8500lcdfb.*
1313F: drivers/video/wm8505fb*
1314F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001315
Marek Vasute66b6d82010-03-26 06:51:32 +01001316ARM/ZIPIT Z2 SUPPORT
1317M: Marek Vasut <marek.vasut@gmail.com>
1318L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319S: Maintained
1320F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001321F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001322
Michal Simek51f29d42013-01-21 17:41:46 +01001323ARM/ZYNQ ARCHITECTURE
1324M: Michal Simek <michal.simek@xilinx.com>
1325L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1326W: http://wiki.xilinx.com
1327T: git git://git.xilinx.com/linux-xlnx.git
1328S: Supported
1329F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001330F: drivers/cpuidle/cpuidle-zynq.c
Michal Simek51f29d42013-01-21 17:41:46 +01001331
Will Deaconb8f98792013-06-24 18:31:26 +01001332ARM SMMU DRIVER
1333M: Will Deacon <will.deacon@arm.com>
1334L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335S: Maintained
1336F: drivers/iommu/arm-smmu.c
1337
Catalin Marinas38074222012-03-05 11:49:34 +00001338ARM64 PORT (AARCH64 ARCHITECTURE)
1339M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001340M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001341L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342S: Maintained
1343F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001344F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001345
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001346AS3645A LED FLASH CONTROLLER DRIVER
1347M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1348L: linux-media@vger.kernel.org
1349T: git git://linuxtv.org/media_tree.git
1350S: Maintained
1351F: drivers/media/i2c/as3645a.c
1352F: include/media/as3645a.h
1353
George Josephd58de032010-03-05 22:17:25 +01001354ASC7621 HARDWARE MONITOR DRIVER
1355M: George Joseph <george.joseph@fairview5.com>
1356L: lm-sensors@lm-sensors.org
1357S: Maintained
1358F: Documentation/hwmon/asc7621
1359F: drivers/hwmon/asc7621.c
1360
Corentin Charyb229ece2011-02-26 10:20:40 +01001361ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001362M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001364L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001365W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001367F: drivers/platform/x86/asus*.c
1368F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Andrew Morton953a6472008-11-06 12:53:28 -08001370ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001371M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001372W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001374F: Documentation/crypto/async-tx-api.txt
1375F: crypto/async_tx/
1376F: drivers/dma/
1377F: include/linux/dmaengine.h
1378F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001379
Wolfram Sanga1867d32009-09-18 22:45:51 +02001380AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001381M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001382L: linux-i2c@vger.kernel.org
1383S: Maintained
1384F: drivers/misc/eeprom/at24.c
1385F: include/linux/i2c/at24.h
1386
Randy Dunlape7839f22008-10-12 16:11:45 -07001387ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001388M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001389W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001391F: Documentation/aoe/
1392F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Joe Perches9a10a872010-12-01 09:37:55 -08001394ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001395M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001396L: linux-wireless@vger.kernel.org
1397S: Supported
1398F: drivers/net/wireless/ath/*
1399
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001400ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001401M: Jiri Slaby <jirislaby@gmail.com>
1402M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001403M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001404L: linux-wireless@vger.kernel.org
1405L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001406W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001407S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001408F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001409
Kalle Valo12e62d62011-09-13 10:21:25 +03001410ATHEROS ATH6KL WIRELESS DRIVER
1411M: Kalle Valo <kvalo@qca.qualcomm.com>
1412L: linux-wireless@vger.kernel.org
1413W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Kalle Valo58cfb682013-07-22 12:26:12 +03001414T: git git://github.com/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001415S: Supported
1416F: drivers/net/wireless/ath/ath6kl/
1417
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001418ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001419M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1420M: Jouni Malinen <jouni@qca.qualcomm.com>
1421M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1422M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001423L: linux-wireless@vger.kernel.org
1424L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001425W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001426S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001427F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001428
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001429WILOCITY WIL6210 WIRELESS DRIVER
1430M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1431L: linux-wireless@vger.kernel.org
1432L: wil6210@qca.qualcomm.com
1433S: Supported
1434W: http://wireless.kernel.org/en/users/Drivers/wil6210
1435F: drivers/net/wireless/ath/wil6210/
1436
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001437CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1438M: Christian Lamparter <chunkeey@googlemail.com>
1439L: linux-wireless@vger.kernel.org
1440W: http://wireless.kernel.org/en/users/Drivers/carl9170
1441S: Maintained
1442F: drivers/net/wireless/ath/carl9170/
1443
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001444ATK0110 HWMON DRIVER
1445M: Luca Tettamanti <kronos.it@gmail.com>
1446L: lm-sensors@lm-sensors.org
1447S: Maintained
1448F: drivers/hwmon/asus_atk0110.c
1449
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001450ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001451M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001453F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001454
Chris Snook7ae115b2008-09-09 03:26:57 -04001455ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001456M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001457M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001458L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001459W: http://sourceforge.net/projects/atl1
1460W: http://atl1.sourceforge.net
1461S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001462F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001465M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001466L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001467L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468W: http://linux-atm.sourceforge.net
1469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001470F: drivers/atm/
1471F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001472F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001474ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001475M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001476S: Maintained
1477F: drivers/mmc/host/atmel-mci.c
1478F: drivers/mmc/host/atmel-mci-regs.h
1479
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001480ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001481M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001482S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001483F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001484
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001485ATMEL DMA DRIVER
1486M: Nicolas Ferre <nicolas.ferre@atmel.com>
1487L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488S: Supported
1489F: drivers/dma/at_hdmac.c
1490F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001491F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001492
Ludovic Desroches888f2802013-03-15 05:32:57 +00001493ATMEL I2C DRIVER
1494M: Ludovic Desroches <ludovic.desroches@atmel.com>
1495L: linux-i2c@vger.kernel.org
1496S: Supported
1497F: drivers/i2c/busses/i2c-at91.c
1498
Josh Wu15515542012-03-23 17:56:29 +08001499ATMEL ISI DRIVER
1500M: Josh Wu <josh.wu@atmel.com>
1501L: linux-media@vger.kernel.org
1502S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001503F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001504F: include/media/atmel-isi.h
1505
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001506ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001507M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001508L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001510F: drivers/video/atmel_lcdfb.c
1511F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001512
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001513ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001514M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001515S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001516F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001517
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001518ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001519M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001520S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001521F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001522
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001523ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1524M: Nicolas Ferre <nicolas.ferre@atmel.com>
1525L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526S: Supported
1527F: drivers/misc/atmel_tclib.c
1528F: drivers/clocksource/tcb_clksrc.c
1529
Josh Wuff2675d2012-03-23 17:56:55 +08001530ATMEL TSADCC DRIVER
1531M: Josh Wu <josh.wu@atmel.com>
1532L: linux-input@vger.kernel.org
1533S: Supported
1534F: drivers/input/touchscreen/atmel_tsadcc.c
1535
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001536ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001537M: Nicolas Ferre <nicolas.ferre@atmel.com>
1538L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001544L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545W: http://www.thekelleys.org.uk/atmel
1546W: http://atmelwlandriver.sourceforge.net/
1547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001548F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Chris Wrighta92b7b82005-07-07 18:12:23 -07001550AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001551M: Al Viro <viro@zeniv.linux.org.uk>
1552M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001553L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001554W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001555T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001558F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001559F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001560
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001561AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001563W: http://miguelojeda.es/auxdisplay.htm
1564W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001566F: drivers/auxdisplay/
1567F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001568
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001569AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001570M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1571M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001572W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001573W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001574W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001576F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001577
1578AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001579M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1580M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001582F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001587W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001589F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001590F: include/net/ax25.h
1591F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001593AZ6007 DVB DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03001594M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001595L: linux-media@vger.kernel.org
1596W: http://linuxtv.org
1597T: git git://linuxtv.org/media_tree.git
1598S: Maintained
1599F: drivers/media/usb/dvb-usb-v2/az6007.c
1600
Hans Verkuil67773762012-11-23 07:09:23 -03001601AZTECH FM RADIO RECEIVER DRIVER
1602M: Hans Verkuil <hverkuil@xs4all.nl>
1603L: linux-media@vger.kernel.org
1604T: git git://linuxtv.org/media_tree.git
1605W: http://linuxtv.org
1606S: Maintained
1607F: drivers/media/radio/radio-aztech*
1608
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001609B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001610M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001611L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001612L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001613W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001615F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001616
1617B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001618M: Larry Finger <Larry.Finger@lwfinger.net>
1619M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001620L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001621L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001622W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001624F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001625
Richard Purdie300abeb2007-02-07 22:21:07 +00001626BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001627M: Richard Purdie <rpurdie@rpsys.net>
Jingoo Han6212de82013-07-03 15:05:15 -07001628M: Jingoo Han <jg1.han@samsung.com>
Richard Purdie300abeb2007-02-07 22:21:07 +00001629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001630F: drivers/video/backlight/
1631F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001632
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001633BATMAN ADVANCED
1634M: Marek Lindner <lindner_marek@yahoo.de>
1635M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001636M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001637L: b.a.t.m.a.n@lists.open-mesh.org
1638W: http://www.open-mesh.org/
1639S: Maintained
1640F: net/batman-adv/
1641
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001642BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001643M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001644L: linux-hams@vger.kernel.org
1645W: http://www.baycom.org/~tom/ham/ham.html
1646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001647F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001648
Kent Overstreetcafe5632013-03-23 16:11:31 -07001649BCACHE (BLOCK LAYER CACHE)
Kent Overstreet47cd2eb2013-07-01 12:19:55 -07001650M: Kent Overstreet <kmo@daterainc.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07001651L: linux-bcache@vger.kernel.org
1652W: http://bcache.evilpiepirate.org
1653S: Maintained:
1654F: drivers/md/bcache/
1655
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001656BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001657S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001658F: Documentation/filesystems/befs.txt
1659F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001660
1661BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: Documentation/filesystems/bfs.txt
1665F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001666F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001667
Bryan Wu1394f032007-05-06 14:50:22 -07001668BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001670L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001671W: http://blackfin.uclinux.org
1672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001674
Bryan Wue190d6b2007-07-17 14:43:44 +08001675BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001676L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001677W: http://blackfin.uclinux.org
1678S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001679F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001680
Mike Frysinger566da5b2007-06-11 15:31:30 +08001681BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001683L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001684W: http://blackfin.uclinux.org
1685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001686F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001687
Mike Frysinger936ed492010-03-10 15:20:38 -08001688BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001689M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001690L: uclinux-dist-devel@blackfin.uclinux.org
1691W: http://blackfin.uclinux.org
1692S: Supported
1693F: drivers/mmc/host/bfin_sdh.c
1694
Bryan Wu1394f032007-05-06 14:50:22 -07001695BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001697L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001698W: http://blackfin.uclinux.org
1699S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001700F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001701
Bryan Wu1e6d3202007-07-15 02:50:02 +08001702BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001703M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001704L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001705W: http://blackfin.uclinux.org
1706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001707F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001708
Bryan Wud24ecfc2007-05-01 23:26:32 +02001709BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001710M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001711L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001712W: http://blackfin.uclinux.org/
1713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001715
Scott Jiang1e204372013-01-18 17:09:47 -03001716BLACKFIN MEDIA DRIVER
1717M: Scott Jiang <scott.jiang.linux@gmail.com>
1718L: uclinux-dist-devel@blackfin.uclinux.org
1719W: http://blackfin.uclinux.org/
1720S: Supported
1721F: drivers/media/platform/blackfin/
1722F: drivers/media/i2c/adv7183*
1723F: drivers/media/i2c/vs6624*
1724
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001725BLINKM RGB LED DRIVER
1726M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1727S: Maintained
1728F: drivers/leds/leds-blinkm.c
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001731M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001732T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001734F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Joern Engel2b54aae2008-02-06 01:38:02 -08001736BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001737M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001738L: linux-mtd@lists.infradead.org
1739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001740F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001741
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001742BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001743M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001744M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001745M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001746L: linux-bluetooth@vger.kernel.org
1747W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001748T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1749T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001751F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001754M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001755M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001756M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001757L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001758W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001759T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1760T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001762F: net/bluetooth/
1763F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001766M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001767M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001768L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001769W: http://sourceforge.net/projects/bonding/
1770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001771F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001772F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Gary Zambrano39105892006-06-22 17:26:20 -07001774BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001775M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001776L: netdev@vger.kernel.org
1777S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001778F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001779
Michael Chan948c51e2006-06-04 02:51:39 -07001780BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001781M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001782L: netdev@vger.kernel.org
1783S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001784F: drivers/net/ethernet/broadcom/bnx2.*
1785F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001786
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001787BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001788M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001789L: netdev@vger.kernel.org
1790S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001791F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001792
Stephen Warrenf680f252012-09-15 00:18:54 -06001793BROADCOM BCM2835 ARM ARCHICTURE
1794M: Stephen Warren <swarren@wwwdotorg.org>
1795L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1796T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1797S: Maintained
1798F: arch/arm/mach-bcm2835/
1799F: arch/arm/boot/dts/bcm2835*
1800F: arch/arm/configs/bcm2835_defconfig
1801F: drivers/*/*bcm2835*
1802
Michael Chan948c51e2006-06-04 02:51:39 -07001803BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001804M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001805M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001806L: netdev@vger.kernel.org
1807S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001808F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001809
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001810BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1811M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001812M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001813M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001814M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001815L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001816L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001817S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001818F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001819
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001820BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1821M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1822L: linux-scsi@vger.kernel.org
1823S: Supported
1824F: drivers/scsi/bnx2fc/
1825
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001826BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1827M: Rafał Miłecki <zajec5@gmail.com>
1828L: linux-wireless@vger.kernel.org
1829S: Maintained
1830F: drivers/bcma/
1831F: include/linux/bcma/
1832
Jing Huang7725ccf2009-09-23 17:46:15 -07001833BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001834M: Anil Gurumurthy <agurumur@brocade.com>
1835M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001836L: linux-scsi@vger.kernel.org
1837S: Supported
1838F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001839
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001840BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1841M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001842L: netdev@vger.kernel.org
1843S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001844F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001845
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001846BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001847M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001848L: linux-scsi@vger.kernel.org
1849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001850F: block/bsg.c
1851F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001852F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001853
Clemens Ladischaf399172011-01-10 16:32:54 +01001854BT87X AUDIO DRIVER
1855M: Clemens Ladisch <clemens@ladisch.de>
1856L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1857T: git git://git.alsa-project.org/alsa-kernel.git
1858S: Maintained
1859F: Documentation/sound/alsa/Bt87x.txt
1860F: sound/pci/bt87x.c
1861
Michael Bueschff1d5c22008-07-25 01:46:10 -07001862BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001863M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001864W: http://bu3sch.de/btgpio.php
1865S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001866F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001867
Joe Percheseb1eb042009-01-21 10:49:16 -05001868BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001869M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001870L: linux-btrfs@vger.kernel.org
1871W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001872Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001873T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001875F: Documentation/filesystems/btrfs.txt
1876F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03001879M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001880L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001881W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001882T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001883S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001884F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001885F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Khalid Aziz1f349232013-06-25 09:57:27 -06001887BUSLOGIC SCSI DRIVER
1888M: Khalid Aziz <khalid@gonehiking.org>
1889L: linux-scsi@vger.kernel.org
1890S: Maintained
1891F: drivers/scsi/BusLogic.*
1892F: drivers/scsi/FlashPoint.*
1893
Clemens Ladischaf399172011-01-10 16:32:54 +01001894C-MEDIA CMI8788 DRIVER
1895M: Clemens Ladisch <clemens@ladisch.de>
1896L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1897T: git git://git.alsa-project.org/alsa-kernel.git
1898S: Maintained
1899F: sound/pci/oxygen/
1900
Mark Salter21413552011-10-04 11:21:42 -04001901C6X ARCHITECTURE
1902M: Mark Salter <msalter@redhat.com>
1903M: Aurelien Jacquiot <a-jacquiot@ti.com>
1904L: linux-c6x-dev@linux-c6x.org
1905W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1906S: Maintained
1907F: arch/c6x/
1908
David Howellsa5432f52009-04-20 15:46:45 +01001909CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001910M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001911L: linux-cachefs@redhat.com
1912S: Supported
1913F: Documentation/filesystems/caching/cachefiles.txt
1914F: fs/cachefiles/
1915
Hans Verkuilc815ca32012-11-23 07:05:54 -03001916CADET FM/AM RADIO RECEIVER DRIVER
1917M: Hans Verkuil <hverkuil@xs4all.nl>
1918L: linux-media@vger.kernel.org
1919T: git git://linuxtv.org/media_tree.git
1920W: http://linuxtv.org
1921S: Maintained
1922F: drivers/media/radio/radio-cadet*
1923
Jonathan Corbet77d51402007-03-22 19:44:17 -03001924CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001926L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001927T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001929F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001930F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001931
Joe Perches201b6ba2010-09-07 20:33:24 +00001932CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001933M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001934L: netdev@vger.kernel.org
1935S: Supported
1936F: Documentation/networking/caif/
1937F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001938F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001939F: include/net/caif/
1940F: net/caif/
1941
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001942CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001943M: Muli Ben-Yehuda <muli@il.ibm.com>
1944M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001945L: discuss@x86-64.org
1946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001947F: arch/x86/kernel/pci-calgary_64.c
1948F: arch/x86/kernel/tce_64.c
1949F: arch/x86/include/asm/calgary.h
1950F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001951
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001952CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001953M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001954L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001955W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001956T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001957S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001958F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001959F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001960F: include/uapi/linux/can.h
1961F: include/uapi/linux/can/bcm.h
1962F: include/uapi/linux/can/raw.h
1963F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001964
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001965CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001966M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001967M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001968L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001969W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001970T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001971S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001972F: drivers/net/can/
1973F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001974F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001975F: include/uapi/linux/can/error.h
1976F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001977
James Morris95d16c72012-03-16 12:05:48 +11001978CAPABILITIES
1979M: Serge Hallyn <serge.hallyn@canonical.com>
1980L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001981S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001982F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001983F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001984F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001985F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001986F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001987
Arnd Bergmannb8154542008-05-16 11:10:59 +02001988CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001990L: linuxppc-dev@lists.ozlabs.org
1991L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001992W: http://www.ibm.com/developerworks/power/cell/
1993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001994F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001995F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001996F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001997F: arch/powerpc/oprofile/*cell*
1998F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001999
Sage Weil9030aaf2009-10-06 11:31:15 -07002000CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07002001M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07002002L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002003W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002004T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002005S: Supported
2006F: Documentation/filesystems/ceph.txt
2007F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002008F: net/ceph
2009F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07002010F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07002011
David Vrabel18332a82008-09-17 16:34:44 +01002012CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002013L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002014S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002015F: Documentation/usb/WUSB-Design-overview.txt
2016F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002017F: drivers/usb/host/hwa-hc.c
2018F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/usb/wusbcore/
2020F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002021
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002022CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002023M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002024W: http://miguelojeda.es/auxdisplay.htm
2025W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002027F: drivers/auxdisplay/cfag12864b.c
2028F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002029
2030CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002031M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002032W: http://miguelojeda.es/auxdisplay.htm
2033W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002035F: drivers/auxdisplay/cfag12864bfb.c
2036F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002037
Johannes Berg704232c2007-04-23 12:20:05 -07002038CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002040L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002041W: http://wireless.kernel.org/
2042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2043T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002044S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002045F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002046F: include/net/cfg80211.h
2047F: net/wireless/*
2048X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002049
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002050CHAR and MISC DRIVERS
2051M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002052M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002053T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002054S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002055F: drivers/char/*
2056F: drivers/misc/*
2057
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002058CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002059M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002060M: Joe Perches <joe@perches.com>
2061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002063
Harry Weif8407f22011-02-25 14:44:15 -08002064CHINESE DOCUMENTATION
2065M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002066L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f22011-02-25 14:44:15 -08002067L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2068S: Maintained
2069F: Documentation/zh_CN/
2070
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002071CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2072M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2073L: linux-usb@vger.kernel.org
2074S: Maintained
2075F: drivers/usb/chipidea/
2076
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002077CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002078M: Christian Benvenuti <benve@cisco.com>
govindarajulu.v001e1c12013-09-04 11:17:18 +05302079M: Sujith Sankar <ssujith@cisco.com>
2080M: Govindarajulu Varadarajan <govindarajulu90@gmail.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002081M: Neel Patel <neepatel@cisco.com>
2082M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002083S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002084F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002085
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002086CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002087M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002088L: netdev@vger.kernel.org
2089S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002090F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002091
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002092CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002093M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002094L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002096F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002097
Timur Tabid9e9d822008-04-24 08:45:26 +10002098CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002099M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002100L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002101S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002102F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002103
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002104CLEANCACHE API
2105M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2106L: linux-kernel@vger.kernel.org
2107S: Maintained
2108F: mm/cleancache.c
2109F: include/linux/cleancache.h
2110
Russell Kingd4275352009-04-16 14:05:27 +01002111CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002112M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002113S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002114F: include/linux/clk.h
2115
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002116CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002117M: Hiral Patel <hiralpat@cisco.com>
2118M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002119M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002120L: linux-scsi@vger.kernel.org
2121S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002122F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002123
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002124CMPC ACPI DRIVER
2125M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2126M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002127L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002128S: Supported
2129F: drivers/platform/x86/classmate-laptop.c
2130
Nicolas Palix74425ee2010-06-06 17:15:01 +02002131COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002132M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002133M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002134M: Nicolas Palix <nicolas.palix@imag.fr>
Nicolas Palixc00b5112013-06-06 23:39:53 +02002135M: Michal Marek <mmarek@suse.cz>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002136L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002137T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002138W: http://coccinelle.lip6.fr/
2139S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002140F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002141F: scripts/coccinelle/
2142F: scripts/coccicheck
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002145M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146M: coda@cs.cmu.edu
2147L: codalist@coda.cs.cmu.edu
2148W: http://www.coda.cs.cmu.edu/
2149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002150F: Documentation/filesystems/coda.txt
2151F: fs/coda/
2152F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002153F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Mike Turquette7704add2012-05-02 18:37:45 -07002155COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002156M: Mike Turquette <mturquette@linaro.org>
2157L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2158T: git git://git.linaro.org/people/mturquette/linux.git
2159S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002160F: drivers/clk/
2161X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002162F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002163F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002164
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002165COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002167L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002168L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002169W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002170Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002171T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002173F: Documentation/filesystems/cifs.txt
2174F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002177M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002178L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002180F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002183M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002184L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002189M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002190L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002194COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002196L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002198F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002199
Simon Arlott949be0f2007-03-06 02:47:46 -08002200CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002201M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002202L: accessrunner-general@lists.sourceforge.net
2203W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002205F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002206
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002207CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002208M: Joel Becker <jlbec@evilplan.org>
2209T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002211F: fs/configfs/
2212F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002213
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002214CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002216L: netdev@vger.kernel.org
2217S: Maintained
2218F: drivers/connector/
2219
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002220CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002221M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002222M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002223L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002224L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002225T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002227F: include/linux/cgroup*
2228F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002229F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002230
Rudolf Marekbebe4672007-05-08 17:22:02 +02002231CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002232M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002233L: lm-sensors@lm-sensors.org
2234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002235F: Documentation/hwmon/coretemp
2236F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002239M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240W: http://www.fi.muni.cz/~kas/cosa/
2241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002242F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Florian Fainelli4371ee32009-06-01 02:43:17 -07002244CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002245M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002246L: netdev@vger.kernel.org
2247S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002248F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002251M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002252M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002253L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002254L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302256T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2257T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002258F: drivers/cpufreq/
2259F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002261CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2262M: Viresh Kumar <viresh.kumar@linaro.org>
2263M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2264L: cpufreq@vger.kernel.org
2265L: linux-pm@vger.kernel.org
2266W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2267S: Maintained
2268F: drivers/cpufreq/arm_big_little.h
2269F: drivers/cpufreq/arm_big_little.c
2270F: drivers/cpufreq/arm_big_little_dt.c
2271
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002272CPUIDLE DRIVERS
2273M: Rafael J. Wysocki <rjw@sisk.pl>
2274M: Daniel Lezcano <daniel.lezcano@linaro.org>
2275L: linux-pm@vger.kernel.org
2276S: Maintained
2277T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2278F: drivers/cpuidle/*
2279F: include/linux/cpuidle.h
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002282M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002284F: arch/x86/kernel/cpuid.c
2285F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002287CPU POWER MONITORING SUBSYSTEM
2288M: Dominik Brodowski <linux@dominikbrodowski.net>
2289M: Thomas Renninger <trenn@suse.de>
2290S: Maintained
2291F: tools/power/cpupower
2292
Paul Jacksoned90fb42005-09-27 21:45:37 -07002293CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002294M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002295W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002296W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002298F: Documentation/cgroups/cpusets.txt
2299F: include/linux/cpuset.h
2300F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002303W: http://sourceforge.net/projects/cramfs/
2304S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002305F: Documentation/filesystems/cramfs.txt
2306F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002309M: Mikael Starvik <starvik@axis.com>
2310M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002311L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312W: http://developer.axis.com
2313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002314F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002315F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Herbert Xu <herbert@gondor.apana.org.au>
2319M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002321T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002323F: Documentation/crypto/
2324F: arch/*/crypto/
2325F: crypto/
2326F: drivers/crypto/
2327F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Neil Horman5b07bd52009-02-05 16:03:04 +11002329CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002331L: linux-crypto@vger.kernel.org
2332S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002333F: crypto/ansi_cprng.c
2334F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002335
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002336CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002339F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002340
Solomon Peachya910e4a2013-05-24 20:04:38 -04002341CW1200 WLAN driver
2342M: Solomon Peachy <pizza@shaftnet.org>
2343S: Maintained
2344F: drivers/net/wireless/cw1200/
2345
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002346CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002347M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002348L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002349L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002350T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002351W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002352W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002354F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002355F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002356F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002357
Hans Verkuil3f101d92012-11-23 07:00:02 -03002358CX2341X MPEG ENCODER HELPER MODULE
2359M: Hans Verkuil <hverkuil@xs4all.nl>
2360L: linux-media@vger.kernel.org
2361T: git git://linuxtv.org/media_tree.git
2362W: http://linuxtv.org
2363S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002364F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002365F: include/media/cx2341x*
2366
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002367CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03002368M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002369L: linux-media@vger.kernel.org
2370W: http://linuxtv.org
2371T: git git://linuxtv.org/media_tree.git
2372S: Odd fixes
2373F: Documentation/video4linux/cx88/
2374F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002375
Antti Palosaari91952bc2012-10-01 12:28:46 -03002376CXD2820R MEDIA DRIVER
2377M: Antti Palosaari <crope@iki.fi>
2378L: linux-media@vger.kernel.org
2379W: http://linuxtv.org/
2380W: http://palosaari.fi/linux/
2381Q: http://patchwork.linuxtv.org/project/linux-media/list/
2382T: git git://linuxtv.org/anttip/media_tree.git
2383S: Maintained
2384F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002385
Steve Wisee5ec3782008-05-20 14:06:33 -07002386CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002387M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002388L: netdev@vger.kernel.org
2389W: http://www.chelsio.com
2390S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002391F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002392
2393CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002394M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002395L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002396W: http://www.openfabrics.org
2397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002398F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002399
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002400CXGB4 ETHERNET DRIVER (CXGB4)
2401M: Dimitris Michailidis <dm@chelsio.com>
2402L: netdev@vger.kernel.org
2403W: http://www.chelsio.com
2404S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002405F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002406
2407CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2408M: Steve Wise <swise@chelsio.com>
2409L: linux-rdma@vger.kernel.org
2410W: http://www.openfabrics.org
2411S: Supported
2412F: drivers/infiniband/hw/cxgb4/
2413
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002414CXGB4VF ETHERNET DRIVER (CXGB4VF)
2415M: Casey Leedom <leedom@chelsio.com>
2416L: netdev@vger.kernel.org
2417W: http://www.chelsio.com
2418S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002419F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002420
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002421STMMAC ETHERNET DRIVER
2422M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2423L: netdev@vger.kernel.org
2424W: http://www.stlinux.com
2425S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002426F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002429M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002430L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431W: http://www.arm.linux.org.uk/
2432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002433F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002437S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002438F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002439F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002440F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002444S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002445F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002447CYPRESS_FIRMWARE MEDIA DRIVER
2448M: Antti Palosaari <crope@iki.fi>
2449L: linux-media@vger.kernel.org
2450W: http://linuxtv.org/
2451W: http://palosaari.fi/linux/
2452Q: http://patchwork.linuxtv.org/project/linux-media/list/
2453T: git git://linuxtv.org/anttip/media_tree.git
2454S: Maintained
2455F: drivers/media/common/cypress_firmware*
2456
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002457CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002458M: Javier Martinez Canillas <javier@dowhile0.org>
2459L: linux-input@vger.kernel.org
2460S: Maintained
2461F: drivers/input/touchscreen/cyttsp*
2462F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002465M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466W: http://yaina.de/jreuter/
2467W: http://www.qsl.net/dl1bke/
2468L: linux-hams@vger.kernel.org
2469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002470F: net/ax25/af_ax25.c
2471F: net/ax25/ax25_dev.c
2472F: net/ax25/ax25_ds_*
2473F: net/ax25/ax25_in.c
2474F: net/ax25/ax25_out.c
2475F: net/ax25/ax25_timer.c
2476F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002478DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002479L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002480S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002481F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002482F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002483
2484DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002486W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002487M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002489F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002492M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002493M: Ali Akcaagac <aliakc@web.de>
2494M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002496L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497L: http://lists.twibble.org/mailman/listinfo/dc395x/
2498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002499F: Documentation/scsi/dc395x.txt
2500F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002502DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002503M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002504L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002505W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002507F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002508F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002509F: include/linux/tfrc.h
2510F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513W: http://linux-decnet.sourceforge.net
2514L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002515S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002516F: Documentation/networking/decnet.txt
2517F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002520M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002522F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002524DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002525M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002526L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002528F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002531S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002532F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002533F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Doug Warzecha90563ec2005-09-06 15:17:15 -07002535DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002536M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002538F: Documentation/dcdbas.txt
2539F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002540
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002541DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002542M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002543S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002544F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002545
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002546DESIGNWARE USB2 DRD IP DRIVER
2547M: Paul Zimmerman <paulz@synopsys.com>
2548L: linux-usb@vger.kernel.org
2549S: Maintained
2550F: drivers/staging/dwc2/
2551
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002552DESIGNWARE USB3 DRD IP DRIVER
2553M: Felipe Balbi <balbi@ti.com>
2554L: linux-usb@vger.kernel.org
2555L: linux-omap@vger.kernel.org
2556T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2557S: Maintained
2558F: drivers/usb/dwc3/
2559
Kyungmin Park89d07762012-01-10 15:09:09 -08002560DEVICE FREQUENCY (DEVFREQ)
2561M: MyungJoo Ham <myungjoo.ham@samsung.com>
2562M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09002563L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08002564S: Maintained
2565F: drivers/devfreq/
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002568M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570S: Maintained
2571
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002572DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002573M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01002574M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002575M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002576L: dm-devel@redhat.com
2577W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002578Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002579T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002581F: Documentation/device-mapper/
2582F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002583F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002584F: include/linux/device-mapper.h
2585F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01002586F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002587
Guenter Roeck335d7c52011-01-26 11:45:49 -08002588DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002589M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002590L: linux-i2c@vger.kernel.org
2591S: Maintained
2592F: drivers/i2c/busses/i2c-diolan-u2c.c
2593
Randy Dunlape7839f22008-10-12 16:11:45 -07002594DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002595M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002597F: Documentation/filesystems/dnotify.txt
2598F: fs/notify/dnotify/
2599F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
2601DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002602M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2604W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2605W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2606S: Maintained
2607
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002608DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002609M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002611F: Documentation/filesystems/quota.txt
2612F: fs/quota/
2613F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002614F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Bernie Thompson702686a2012-03-01 13:52:13 -08002616DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2617M: Bernie Thompson <bernie@plugable.com>
2618L: linux-fbdev@vger.kernel.org
2619S: Maintained
2620W: http://plugable.com/category/projects/udlfb/
2621F: drivers/video/udlfb.c
2622F: include/video/udlfb.h
2623F: Documentation/fb/udlfb.txt
2624
Randy Dunlape7839f22008-10-12 16:11:45 -07002625DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002626M: Christine Caulfield <ccaulfie@redhat.com>
2627M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002628L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002629W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002630T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002632F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002633
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302634DMA BUFFER SHARING FRAMEWORK
2635M: Sumit Semwal <sumit.semwal@linaro.org>
2636S: Maintained
2637L: linux-media@vger.kernel.org
2638L: dri-devel@lists.freedesktop.org
2639L: linaro-mm-sig@lists.linaro.org
2640F: drivers/base/dma-buf*
2641F: include/linux/dma-buf*
2642F: Documentation/dma-buf-sharing.txt
2643T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2644
Dan Williamsb3e5f262007-08-07 10:26:35 -07002645DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002646M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002647M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002649F: drivers/dma/
2650F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302651T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2652T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002653
Juerg Haefligerb8250372007-06-09 10:11:16 -04002654DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002655M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002656L: lm-sensors@lm-sensors.org
2657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002658F: Documentation/hwmon/dme1737
2659F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002660
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002661DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002662M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002663L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002664S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002665F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002666
Joe Perches7d2c86b2009-04-07 20:59:01 -07002667DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002668M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002669L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002670T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002672F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002675M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676L: blinux-list@redhat.com
2677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002678F: drivers/char/dtlk.c
2679F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002681DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002682M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002683L: linux-scsi@vger.kernel.org
2684W: http://www.adaptec.com/
2685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002686F: drivers/scsi/dpt*
2687F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002688
Philipp Reisnerb411b362009-09-25 16:07:19 -07002689DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002690P: Philipp Reisner
2691P: Lars Ellenberg
2692M: drbd-dev@lists.linbit.com
2693L: drbd-user@lists.linbit.com
2694W: http://www.drbd.org
2695T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2696T: git git://git.drbd.org/drbd-8.3.git
2697S: Supported
2698F: drivers/block/drbd/
2699F: lib/lru_cache.c
2700F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002701
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002702DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002703M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002704T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002706F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002707F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002708F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002709F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002710F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002711F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002712F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
2714DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002715M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002716L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002717T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002719F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002720F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002721F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Chris Wilson8daf7472010-09-28 14:07:26 +01002723INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002724M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002725L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002726L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002727T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002728S: Supported
2729F: drivers/gpu/drm/i915
2730F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002731F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002732
Kyungmin Park398a6d42011-11-02 11:33:16 +09002733DRM DRIVERS FOR EXYNOS
2734M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002735M: Joonyoung Shim <jy0922.shim@samsung.com>
2736M: Seung-Woo Kim <sw0312.kim@samsung.com>
2737M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002738L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002739T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002740S: Supported
2741F: drivers/gpu/drm/exynos
2742F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002743F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002744
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002745DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002746M: Thierry Reding <thierry.reding@gmail.com>
2747M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002748L: dri-devel@lists.freedesktop.org
2749L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002750T: git git://anongit.freedesktop.org/tegra/linux.git
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002751S: Maintained
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002752F: drivers/gpu/host1x/
2753F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002754F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2755
Alexey Klimov598df1a2012-11-28 17:16:32 -03002756DSBR100 USB FM RADIO DRIVER
2757M: Alexey Klimov <klimov.linux@gmail.com>
2758L: linux-media@vger.kernel.org
2759T: git git://linuxtv.org/media_tree.git
2760S: Maintained
2761F: drivers/media/radio/dsbr100.c
2762
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002764M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002765L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002767F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Antti Palosaari91952bc2012-10-01 12:28:46 -03002769DVB_USB_AF9015 MEDIA DRIVER
2770M: Antti Palosaari <crope@iki.fi>
2771L: linux-media@vger.kernel.org
2772W: http://linuxtv.org/
2773W: http://palosaari.fi/linux/
2774Q: http://patchwork.linuxtv.org/project/linux-media/list/
2775T: git git://linuxtv.org/anttip/media_tree.git
2776S: Maintained
2777F: drivers/media/usb/dvb-usb-v2/af9015*
2778
2779DVB_USB_AF9035 MEDIA DRIVER
2780M: Antti Palosaari <crope@iki.fi>
2781L: linux-media@vger.kernel.org
2782W: http://linuxtv.org/
2783W: http://palosaari.fi/linux/
2784Q: http://patchwork.linuxtv.org/project/linux-media/list/
2785T: git git://linuxtv.org/anttip/media_tree.git
2786S: Maintained
2787F: drivers/media/usb/dvb-usb-v2/af9035*
2788
2789DVB_USB_ANYSEE MEDIA DRIVER
2790M: Antti Palosaari <crope@iki.fi>
2791L: linux-media@vger.kernel.org
2792W: http://linuxtv.org/
2793W: http://palosaari.fi/linux/
2794Q: http://patchwork.linuxtv.org/project/linux-media/list/
2795T: git git://linuxtv.org/anttip/media_tree.git
2796S: Maintained
2797F: drivers/media/usb/dvb-usb-v2/anysee*
2798
2799DVB_USB_AU6610 MEDIA DRIVER
2800M: Antti Palosaari <crope@iki.fi>
2801L: linux-media@vger.kernel.org
2802W: http://linuxtv.org/
2803W: http://palosaari.fi/linux/
2804Q: http://patchwork.linuxtv.org/project/linux-media/list/
2805T: git git://linuxtv.org/anttip/media_tree.git
2806S: Maintained
2807F: drivers/media/usb/dvb-usb-v2/au6610*
2808
2809DVB_USB_CE6230 MEDIA DRIVER
2810M: Antti Palosaari <crope@iki.fi>
2811L: linux-media@vger.kernel.org
2812W: http://linuxtv.org/
2813W: http://palosaari.fi/linux/
2814Q: http://patchwork.linuxtv.org/project/linux-media/list/
2815T: git git://linuxtv.org/anttip/media_tree.git
2816S: Maintained
2817F: drivers/media/usb/dvb-usb-v2/ce6230*
2818
Michael Krufkyd099dea2012-10-02 00:56:20 -03002819DVB_USB_CXUSB MEDIA DRIVER
2820M: Michael Krufky <mkrufky@linuxtv.org>
2821L: linux-media@vger.kernel.org
2822W: http://linuxtv.org/
2823W: http://github.com/mkrufky
2824Q: http://patchwork.linuxtv.org/project/linux-media/list/
2825T: git git://linuxtv.org/media_tree.git
2826S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002827F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002828
Antti Palosaari91952bc2012-10-01 12:28:46 -03002829DVB_USB_EC168 MEDIA DRIVER
2830M: Antti Palosaari <crope@iki.fi>
2831L: linux-media@vger.kernel.org
2832W: http://linuxtv.org/
2833W: http://palosaari.fi/linux/
2834Q: http://patchwork.linuxtv.org/project/linux-media/list/
2835T: git git://linuxtv.org/anttip/media_tree.git
2836S: Maintained
2837F: drivers/media/usb/dvb-usb-v2/ec168*
2838
Antti Palosaari55609832013-04-09 20:30:42 -03002839DVB_USB_GL861 MEDIA DRIVER
2840M: Antti Palosaari <crope@iki.fi>
2841L: linux-media@vger.kernel.org
2842W: http://linuxtv.org/
2843Q: http://patchwork.linuxtv.org/project/linux-media/list/
2844T: git git://linuxtv.org/anttip/media_tree.git
2845S: Maintained
2846F: drivers/media/usb/dvb-usb-v2/gl861*
2847
Michael Krufky8856f5f2012-10-02 00:55:50 -03002848DVB_USB_MXL111SF MEDIA DRIVER
2849M: Michael Krufky <mkrufky@linuxtv.org>
2850L: linux-media@vger.kernel.org
2851W: http://linuxtv.org/
2852W: http://github.com/mkrufky
2853Q: http://patchwork.linuxtv.org/project/linux-media/list/
2854T: git git://linuxtv.org/mkrufky/mxl111sf.git
2855S: Maintained
2856F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2857
Antti Palosaari91952bc2012-10-01 12:28:46 -03002858DVB_USB_RTL28XXU MEDIA DRIVER
2859M: Antti Palosaari <crope@iki.fi>
2860L: linux-media@vger.kernel.org
2861W: http://linuxtv.org/
2862W: http://palosaari.fi/linux/
2863Q: http://patchwork.linuxtv.org/project/linux-media/list/
2864T: git git://linuxtv.org/anttip/media_tree.git
2865S: Maintained
2866F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2867
2868DVB_USB_V2 MEDIA DRIVER
2869M: Antti Palosaari <crope@iki.fi>
2870L: linux-media@vger.kernel.org
2871W: http://linuxtv.org/
2872W: http://palosaari.fi/linux/
2873Q: http://patchwork.linuxtv.org/project/linux-media/list/
2874T: git git://linuxtv.org/anttip/media_tree.git
2875S: Maintained
2876F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2877F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2878
Jason Baronac0ac382011-08-11 14:36:43 -04002879DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07002880M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04002881S: Maintained
2882F: lib/dynamic_debug.c
2883F: include/linux/dynamic_debug.h
2884
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002885DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002886M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002887S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002888F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002889
Antti Palosaari91952bc2012-10-01 12:28:46 -03002890E4000 MEDIA DRIVER
2891M: Antti Palosaari <crope@iki.fi>
2892L: linux-media@vger.kernel.org
2893W: http://linuxtv.org/
2894W: http://palosaari.fi/linux/
2895Q: http://patchwork.linuxtv.org/project/linux-media/list/
2896T: git git://linuxtv.org/anttip/media_tree.git
2897S: Maintained
2898F: drivers/media/tuners/e4000*
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002901M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002902L: linux-eata@i-connect.net
2903L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002905F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002908M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909L: linux-scsi@vger.kernel.org
2910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002914M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002915L: linux-eata@i-connect.net
2916L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002918F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002921M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002922L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923W: http://ebtables.sourceforge.net/
2924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002925F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002926F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002927F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Antti Palosaari91952bc2012-10-01 12:28:46 -03002929EC100 MEDIA DRIVER
2930M: Antti Palosaari <crope@iki.fi>
2931L: linux-media@vger.kernel.org
2932W: http://linuxtv.org/
2933W: http://palosaari.fi/linux/
2934Q: http://patchwork.linuxtv.org/project/linux-media/list/
2935T: git git://linuxtv.org/anttip/media_tree.git
2936S: Maintained
2937F: drivers/media/dvb-frontends/ec100*
2938
Michael Halcrow237fead2006-10-04 02:16:22 -07002939ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002940M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002941L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05002942W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002943W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002945F: Documentation/filesystems/ecryptfs.txt
2946F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002947
Alan Coxda9bb1d2006-01-18 17:44:13 -08002948EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002949M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002950L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002951W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002953F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002954F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002955F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002956
Borislav Petkovc476c232009-05-20 20:31:58 +02002957EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002958M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002959M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002960L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002961W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002962S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002963F: drivers/edac/amd64_edac*
2964
Ralf Baechlef65aad42012-10-17 00:39:09 +02002965EDAC-CAVIUM
2966M: Ralf Baechle <ralf@linux-mips.org>
2967M: David Daney <david.daney@cavium.com>
2968L: linux-edac@vger.kernel.org
2969L: linux-mips@linux-mips.org
2970W: bluesmoke.sourceforge.net
2971S: Supported
2972F: drivers/edac/octeon_edac*
2973
Dave Peterson0e438e32006-03-26 01:38:55 -08002974EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002975M: Mark Gross <mark.gross@intel.com>
2976M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002977L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002978W: bluesmoke.sourceforge.net
2979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002980F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002981
2982EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002983M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002984L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002985W: bluesmoke.sourceforge.net
2986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002987F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002988
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002989EDAC-GHES
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03002990M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002991L: linux-edac@vger.kernel.org
2992W: bluesmoke.sourceforge.net
2993S: Maintained
2994F: drivers/edac/ghes-edac.c
2995
Douglas Thompson6bc78402007-07-19 01:50:12 -07002996EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002997M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002998L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002999W: bluesmoke.sourceforge.net
3000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003001F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003002
3003EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07003004M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003005L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003006W: bluesmoke.sourceforge.net
3007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003008F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003009
3010EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003011M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003012L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003013W: bluesmoke.sourceforge.net
3014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003015F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003016
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003017EDAC-I5400
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003018M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003019L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003020W: bluesmoke.sourceforge.net
3021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003022F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003023
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003024EDAC-I7300
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003025M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003026L: linux-edac@vger.kernel.org
3027W: bluesmoke.sourceforge.net
3028S: Maintained
3029F: drivers/edac/i7300_edac.c
3030
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003031EDAC-I7CORE
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003032M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003033L: linux-edac@vger.kernel.org
3034W: bluesmoke.sourceforge.net
3035S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03003036F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003037
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003038EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07003039M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05303040M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003041L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003042W: bluesmoke.sourceforge.net
3043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003044F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003045
3046EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003047M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003048L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003049W: bluesmoke.sourceforge.net
3050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003051F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003052
Dave Peterson0e438e32006-03-26 01:38:55 -08003053EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003054M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003055L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003056W: bluesmoke.sourceforge.net
3057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003058F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003059
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003060EDAC-SBRIDGE
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003061M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003062L: linux-edac@vger.kernel.org
3063W: bluesmoke.sourceforge.net
3064S: Maintained
3065F: drivers/edac/sb_edac.c
3066
Clemens Ladischaf399172011-01-10 16:32:54 +01003067EDIROL UA-101/UA-1000 DRIVER
3068M: Clemens Ladisch <clemens@ladisch.de>
3069L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3070T: git git://git.alsa-project.org/alsa-kernel.git
3071S: Maintained
3072F: sound/usb/misc/ua101.c
3073
Matt Fleming1f7df952012-10-03 10:04:02 +01003074EXTENSIBLE FIRMWARE INTERFACE (EFI)
3075M: Matt Fleming <matt.fleming@intel.com>
3076L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003077T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003078S: Maintained
3079F: Documentation/x86/efi-stub.txt
3080F: arch/ia64/kernel/efi.c
3081F: arch/x86/boot/compressed/eboot.[ch]
3082F: arch/x86/include/asm/efi.h
3083F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003084F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003085F: include/linux/efi*.h
3086
Matt Flemingd68772b2013-02-08 16:27:24 +00003087EFI VARIABLE FILESYSTEM
3088M: Matthew Garrett <matthew.garrett@nebula.com>
3089M: Jeremy Kerr <jk@ozlabs.org>
3090M: Matt Fleming <matt.fleming@intel.com>
3091T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3092L: linux-efi@vger.kernel.org
3093S: Maintained
3094F: fs/efivarfs/
3095
Peter Jones85a00d92010-09-22 13:05:04 -07003096EFIFB FRAMEBUFFER DRIVER
3097L: linux-fbdev@vger.kernel.org
3098M: Peter Jones <pjones@redhat.com>
3099S: Maintained
3100F: drivers/video/efifb.c
3101
Josh Triplett0bee8d22006-07-30 03:03:58 -07003102EFS FILESYSTEM
3103W: http://aeschi.ch.eu.org/efs/
3104S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003105F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003106
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003107EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3109M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003110L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003112F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003113
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003114EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003115M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003116L: netdev@vger.kernel.org
3117S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003118F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003119
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003120EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003121M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003122L: linux-media@vger.kernel.org
3123W: http://linuxtv.org
3124T: git git://linuxtv.org/media_tree.git
3125S: Maintained
3126F: drivers/media/usb/em28xx/
3127
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003128EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003129M: Paul Gortmaker <paul.gortmaker@windriver.com>
3130M: Matt Mackall <mpm@selenic.com>
3131M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003132L: linux-embedded@vger.kernel.org
3133S: Maintained
3134
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003135EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003136M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003137L: linux-scsi@vger.kernel.org
3138W: http://sourceforge.net/projects/lpfcxxxx
3139S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003140F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003141
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003142ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003143M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003144S: Maintained
3145F: drivers/misc/cb710/
3146F: drivers/mmc/host/cb710-mmc.*
3147F: include/linux/cb710.h
3148
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003149ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3150M: Maxim Levitsky <maximlevitsky@gmail.com>
3151S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003152F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003153
Gavin Shanec207dc2013-06-28 21:12:14 +08003154ENHANCED ERROR HANDLING (EEH)
3155M: Gavin Shan <shangw@linux.vnet.ibm.com>
3156L: linuxppc-dev@lists.ozlabs.org
3157S: Supported
3158F: Documentation/powerpc/eeh-pci-error-recovery.txt
3159F: arch/powerpc/kernel/eeh*.c
3160
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003161EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003163S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003164T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003165F: drivers/video/s1d13xxxfb.c
3166F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003169M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003170L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003171L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003172W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003174F: include/linux/netfilter_bridge/
3175F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003178M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003179L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003181F: Documentation/filesystems/ext2.txt
3182F: fs/ext2/
3183F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
3185EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003186M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003187M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003188M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003189L: linux-ext4@vger.kernel.org
3190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: Documentation/filesystems/ext3.txt
3192F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003193
3194EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003195M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003196M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003197L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003198W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003199Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003201F: Documentation/filesystems/ext4.txt
3202F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Mimi Zoharc5532b02011-08-17 18:52:24 -04003204Extended Verification Module (EVM)
3205M: Mimi Zohar <zohar@us.ibm.com>
3206S: Supported
3207F: security/integrity/evm/
3208
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003209EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3210M: MyungJoo Ham <myungjoo.ham@samsung.com>
3211M: Chanwoo Choi <cw00.choi@samsung.com>
3212L: linux-kernel@vger.kernel.org
3213S: Maintained
3214F: drivers/extcon/
3215F: Documentation/extcon/
3216
Jingoo Han0a799512012-02-06 11:30:39 +09003217EXYNOS DP DRIVER
3218M: Jingoo Han <jg1.han@samsung.com>
3219L: linux-fbdev@vger.kernel.org
3220S: Maintained
3221F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003222F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003223
Donghwa Lee33ad3912012-03-06 11:44:58 +09003224EXYNOS MIPI DISPLAY DRIVERS
3225M: Inki Dae <inki.dae@samsung.com>
3226M: Donghwa Lee <dh09.lee@samsung.com>
3227M: Kyungmin Park <kyungmin.park@samsung.com>
3228L: linux-fbdev@vger.kernel.org
3229S: Maintained
3230F: drivers/video/exynos/exynos_mipi*
3231F: include/video/exynos_mipi*
3232
Jean Delvaree53004e2006-01-09 23:26:14 +01003233F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003235L: lm-sensors@lm-sensors.org
3236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003237F: Documentation/hwmon/f71805f
3238F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003239
Michael Büscheea977e2012-04-02 12:14:32 -03003240FC0011 TUNER DRIVER
3241M: Michael Buesch <m@bues.ch>
3242L: linux-media@vger.kernel.org
3243S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003244F: drivers/media/tuners/fc0011.h
3245F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003246
Antti Palosaari91952bc2012-10-01 12:28:46 -03003247FC2580 MEDIA DRIVER
3248M: Antti Palosaari <crope@iki.fi>
3249L: linux-media@vger.kernel.org
3250W: http://linuxtv.org/
3251W: http://palosaari.fi/linux/
3252Q: http://patchwork.linuxtv.org/project/linux-media/list/
3253T: git git://linuxtv.org/anttip/media_tree.git
3254S: Maintained
3255F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Eric Paris88b2dbd2010-08-18 12:25:50 -04003257FANOTIFY
3258M: Eric Paris <eparis@redhat.com>
3259S: Maintained
3260F: fs/notify/fanotify/
3261F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003262F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003265M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266W: http://www.farsite.co.uk/
3267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003268F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Akinobu Mitac5408b82007-04-23 14:41:20 -07003270FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003271M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003273F: Documentation/fault-injection/
3274F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003275
Robert Lovecae727d2010-02-16 12:16:00 -08003276FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3277M: Robert Love <robert.w.love@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00003278L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08003279W: www.Open-FCoE.org
3280S: Supported
3281F: drivers/scsi/libfc/
3282F: drivers/scsi/fcoe/
3283F: include/scsi/fc/
3284F: include/scsi/libfc.h
3285F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003286F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003287
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003288FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003289M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003290L: linux-fsdevel@vger.kernel.org
3291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003292F: include/linux/fcntl.h
3293F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003294F: include/uapi/linux/fcntl.h
3295F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003296F: fs/fcntl.c
3297F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003298
3299FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003300M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003301L: linux-fsdevel@vger.kernel.org
3302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003303F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003304
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003305FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003306M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003307L: lm-sensors@lm-sensors.org
3308S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003309F: drivers/hwmon/f75375s.c
3310F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003311
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003312FIREWIRE AUDIO DRIVERS
3313M: Clemens Ladisch <clemens@ladisch.de>
3314L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3315T: git git://git.alsa-project.org/alsa-kernel.git
3316S: Maintained
3317F: sound/firewire/
3318
Stefan Richtereb86ec52012-11-03 09:25:20 +01003319FIREWIRE MEDIA DRIVERS (firedtv)
3320M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3321L: linux-media@vger.kernel.org
3322L: linux1394-devel@lists.sourceforge.net
3323T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3324S: Maintained
3325F: drivers/media/firewire/
3326
Chris Boota511ce32012-04-14 17:50:35 -07003327FIREWIRE SBP-2 TARGET
3328M: Chris Boot <bootc@bootc.net>
3329L: linux-scsi@vger.kernel.org
3330L: target-devel@vger.kernel.org
3331L: linux1394-devel@lists.sourceforge.net
3332T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3333S: Maintained
3334F: drivers/target/sbp/
3335
Joe Perches7d2c86b2009-04-07 20:59:01 -07003336FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003337M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003338L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003339W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003340T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003342F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003343F: include/linux/firewire.h
3344F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003345F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003346
3347FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003348M: Ming Lei <ming.lei@canonical.com>
3349L: linux-kernel@vger.kernel.org
3350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003351F: Documentation/firmware_class/
3352F: drivers/base/firmware*.c
3353F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003354
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05003355FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003356M: Joshua Morris <josh.h.morris@us.ibm.com>
3357M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3358S: Maintained
3359F: drivers/block/rsxx/
3360
Jiri Kosina8206f662012-05-18 13:52:29 +02003361FLOPPY DRIVER
3362M: Jiri Kosina <jkosina@suse.cz>
3363T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3364S: Odd fixes
3365F: drivers/block/floppy.c
3366
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02003367FMC SUBSYSTEM
3368M: Alessandro Rubini <rubini@gnudd.com>
3369W: http://www.ohwr.org/projects/fmc-bus
3370S: Supported
3371F: drivers/fmc/
3372F: include/linux/fmc*.h
3373F: include/linux/ipmi-fru.h
3374K: fmc_d.*register
3375
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003376FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003377M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003378W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003380F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003381
3382FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003383L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003384S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003385F: drivers/net/wan/dlci.c
3386F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003387
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02003389M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3390M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003391L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003393Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02003394T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09003395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003396F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003397F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003398F: drivers/video/
3399F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003400F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003401F: include/uapi/video/
3402F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
Timur Tabia57c1882012-10-16 17:33:42 -05003404FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003405M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003406L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003407S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003408F: drivers/video/fsl-diu-fb.*
3409
Zhang Wei173acc72008-03-01 07:42:48 -07003410FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003411M: Li Yang <leoli@freescale.com>
3412M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003413L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003415F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003416
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003417FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003418M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003419L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003420L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003422F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003423
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003424FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003425M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003426L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003427L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003428S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003429F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003430F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003431
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003432FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003433M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3434M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003435L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003436L: netdev@vger.kernel.org
3437S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003438F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003439F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003440
Timur Tabid9e9d822008-04-24 08:45:26 +10003441FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003442L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003443S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003444F: arch/powerpc/sysdev/qe_lib/
3445F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003446
Joe Perchesb55ef922009-10-26 16:49:46 -07003447FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003448M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003449L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003450L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003451S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003452F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003453
Li Yangbeaf53b2007-05-25 13:54:02 +08003454FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003455M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003456L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003457L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003458S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003459F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003460
Timur Tabid9e9d822008-04-24 08:45:26 +10003461FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003462M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003463L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003464S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003465F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003466
3467FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003468M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003469L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003470L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003471S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003472F: sound/soc/fsl/fsl*
3473F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003479F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Pavel Machek71038f52009-01-15 13:51:02 -08003481FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003482M: Pavel Machek <pavel@ucw.cz>
3483M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003484L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003486F: Documentation/power/freezing-of-tasks.txt
3487F: include/linux/freezer.h
3488F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003489
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003490FRONTSWAP API
3491M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3492L: linux-kernel@vger.kernel.org
3493S: Maintained
3494F: mm/frontswap.c
3495F: include/linux/frontswap.h
3496
David Howellsa5432f52009-04-20 15:46:45 +01003497FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003498M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003499L: linux-cachefs@redhat.com
3500S: Supported
3501F: Documentation/filesystems/caching/
3502F: fs/fscache/
3503F: include/linux/fscache*.h
3504
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003505F2FS FILE SYSTEM
3506M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3507L: linux-f2fs-devel@lists.sourceforge.net
3508W: http://en.wikipedia.org/wiki/F2FS
3509T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3510S: Maintained
3511F: Documentation/filesystems/f2fs.txt
3512F: fs/f2fs/
3513F: include/linux/f2fs_fs.h
3514
David Howells5ab7ffe2007-04-10 15:10:45 +01003515FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003516M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003518F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
Jonathan Woithe20b93732008-06-11 10:14:56 +09303520FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303521M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003522L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003524F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303525
Heungjun Kim4da621b2011-11-11 08:05:33 -03003526FUJITSU M-5MO LS CAMERA ISP DRIVER
3527M: Kyungmin Park <kyungmin.park@samsung.com>
3528M: Heungjun Kim <riverful.kim@samsung.com>
3529L: linux-media@vger.kernel.org
3530S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003531F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003532F: include/media/m5mols.h
3533
Robert Gerlach2d24c492012-01-18 14:26:22 +01003534FUJITSU TABLET EXTRAS
3535M: Robert Gerlach <khnz@gmx.de>
3536L: platform-driver-x86@vger.kernel.org
3537S: Maintained
3538F: drivers/platform/x86/fujitsu-tablet.c
3539
Miklos Szeredi04578f12005-09-09 13:10:22 -07003540FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003541M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003542L: fuse-devel@lists.sourceforge.net
3543W: http://fuse.sourceforge.net/
3544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003545F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003546F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003551S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003552F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003555M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556L: linux-scsi@vger.kernel.org
3557W: http://www.icp-vortex.com/
3558S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003559F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003561GEMTEK FM RADIO RECEIVER DRIVER
3562M: Hans Verkuil <hverkuil@xs4all.nl>
3563L: linux-media@vger.kernel.org
3564T: git git://linuxtv.org/media_tree.git
3565W: http://linuxtv.org
3566S: Maintained
3567F: drivers/media/radio/radio-gemtek*
3568
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003569GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003570M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003572F: drivers/i2c/busses/i2c-gpio.c
3573F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003574
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003575GENERIC GPIO I2C MULTIPLEXER DRIVER
3576M: Peter Korsgaard <peter.korsgaard@barco.com>
3577L: linux-i2c@vger.kernel.org
3578S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003579F: drivers/i2c/muxes/i2c-mux-gpio.c
3580F: include/linux/i2c-mux-gpio.h
3581F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003582
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003583GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003584M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003587F: drivers/net/wan/c101.c
3588F: drivers/net/wan/hd6457*
3589F: drivers/net/wan/hdlc*
3590F: drivers/net/wan/n2.c
3591F: drivers/net/wan/pc300too.c
3592F: drivers/net/wan/pci200syn.c
3593F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003595GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003596M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003597L: linux-arch@vger.kernel.org
3598T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3599S: Maintained
3600F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003601F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003602
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003603GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003604M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003605L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003606S: Supported
3607F: drivers/uio/uio_pci_generic.c
3608
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003609GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003610M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003611L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003612W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003613T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3614T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003615S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003616F: Documentation/filesystems/gfs2*.txt
3617F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003618F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003619
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003620GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: Hansjoerg Lipp <hjlipp@web.de>
3622M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003623L: gigaset307x-common@lists.sourceforge.net
3624W: http://gigaset307x.sourceforge.net/
3625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003626F: Documentation/isdn/README.gigaset
3627F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003628F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003629
Grant Likelya0dc00b2011-02-12 01:48:14 -07003630GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02003631M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003632S: Maintained
Alexandre Courbotd15b7172013-05-26 11:50:54 +09003633L: linux-gpio@vger.kernel.org
Kukjin Kim98909cf2011-04-27 15:26:47 -07003634F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003635F: drivers/gpio/
3636F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003637F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003638
Harry Wei71a6d0a2011-05-11 15:13:33 -07003639GRE DEMULTIPLEXER DRIVER
3640M: Dmitry Kozlov <xeb@mail.ru>
3641L: netdev@vger.kernel.org
3642S: Maintained
3643F: net/ipv4/gre.c
3644F: include/net/gre.h
3645
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003646GRETH 10/100/1G Ethernet MAC device driver
3647M: Kristoffer Glembo <kristoffer@gaisler.com>
3648L: netdev@vger.kernel.org
3649S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003650F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003651
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003652GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003654L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003655T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003656S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003657F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003658
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003659GSPCA GL860 SUBDRIVER
3660M: Olivier Lorin <o.lorin@laposte.net>
3661L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003662T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003663S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003664F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003665
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003666GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003667M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003668L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003669T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003670S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003671F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003672
3673GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003674M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003675L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003676T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003677S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003678F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003679
Brian Johnson261982f2009-07-19 15:58:56 -03003680GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003681M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003682L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003683T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003684S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003685F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003686
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003687GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003688M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003689L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003690T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003691S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003692F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003693
3694GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003695M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003696L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003697T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003698S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003699F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003700
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003701STK1160 USB VIDEO CAPTURE DRIVER
3702M: Ezequiel Garcia <elezegarcia@gmail.com>
3703L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003704T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003705S: Maintained
3706F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003707
Harry Wei71a6d0a2011-05-11 15:13:33 -07003708HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3709M: Frank Seidel <frank@f-seidel.de>
3710L: platform-driver-x86@vger.kernel.org
3711W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3712S: Maintained
3713F: drivers/platform/x86/hdaps.c
3714
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003715HDPVR USB VIDEO ENCODER DRIVER
3716M: Hans Verkuil <hverkuil@xs4all.nl>
3717L: linux-media@vger.kernel.org
3718T: git git://linuxtv.org/media_tree.git
3719W: http://linuxtv.org
3720S: Odd Fixes
3721F: drivers/media/usb/hdpvr
3722
Harry Wei71a6d0a2011-05-11 15:13:33 -07003723HWPOISON MEMORY FAILURE HANDLING
3724M: Andi Kleen <andi@firstfloor.org>
3725L: linux-mm@kvack.org
3726T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3727S: Maintained
3728F: mm/memory-failure.c
3729F: mm/hwpoison-inject.c
3730
3731HYPERVISOR VIRTUAL CONSOLE DRIVER
3732L: linuxppc-dev@lists.ozlabs.org
3733S: Odd Fixes
3734F: drivers/tty/hvc/
3735
Michael Buesch844dd052006-06-26 00:24:59 -07003736HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003737M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003738M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003739L: lm-sensors@lm-sensors.org
3740W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003741T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003742T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003743S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003744F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003745F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003746F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003747
3748HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003749M: Matt Mackall <mpm@selenic.com>
3750M: Herbert Xu <herbert@gondor.apana.org.au>
3751S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003752F: Documentation/hw_random.txt
3753F: drivers/char/hw_random/
3754F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003755
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003756HARDWARE SPINLOCK CORE
3757M: Ohad Ben-Cohen <ohad@wizery.com>
3758S: Maintained
3759F: Documentation/hwspinlock.txt
3760F: drivers/hwspinlock/hwspinlock_*
3761F: include/linux/hwspinlock.h
3762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003764L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003766F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Antti Palosaari91952bc2012-10-01 12:28:46 -03003768HD29L2 MEDIA DRIVER
3769M: Antti Palosaari <crope@iki.fi>
3770L: linux-media@vger.kernel.org
3771W: http://linuxtv.org/
3772W: http://palosaari.fi/linux/
3773Q: http://patchwork.linuxtv.org/project/linux-media/list/
3774T: git git://linuxtv.org/anttip/media_tree.git
3775S: Maintained
3776F: drivers/media/dvb-frontends/hd29l2*
3777
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003778HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003779M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003780L: iss_storagedev@hp.com
3781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003782F: Documentation/blockdev/cpqarray.txt
3783F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003784
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003785HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003786M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003787L: iss_storagedev@hp.com
3788S: Supported
3789F: Documentation/scsi/hpsa.txt
3790F: drivers/scsi/hpsa*.[ch]
3791F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003792F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003793
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003794HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003796L: iss_storagedev@hp.com
3797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003798F: Documentation/blockdev/cciss.txt
3799F: drivers/block/cciss*
3800F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003801F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003802
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003804L: linux-fsdevel@vger.kernel.org
3805S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003806F: Documentation/filesystems/hfs.txt
3807F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
3809HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811L: linux-nvidia@lists.surfsouth.com
3812W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003814F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003816HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003817M: Pavel Machek <pavel@ucw.cz>
3818M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003819L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003821F: arch/x86/power/
3822F: drivers/base/power/
3823F: kernel/power/
3824F: include/linux/suspend.h
3825F: include/linux/freezer.h
3826F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003827F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003828
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003829HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003831L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003832T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003834F: drivers/hid/
3835F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003836F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003837
Ingo Molnar38bed542007-02-22 09:09:34 +01003838HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003839M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003840T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: Documentation/timers/
3843F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003844F: kernel/time/clockevents.c
3845F: kernel/time/tick*.*
3846F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003847F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003848F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003852S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003853F: drivers/net/hamradio/dmascc.c
3854F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003856HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003857M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003858W: http://www.highpoint-tech.com
3859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003860F: Documentation/scsi/hptiop.txt
3861F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003862
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003864M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865L: linux-hippi@sunsite.dk
3866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003867F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003868F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003869F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003870F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Jouni Malinenff1d2762005-05-12 22:54:16 -04003872HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003873M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003874L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003875L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003876W: http://hostap.epitest.fi/
3877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003878F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003879
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003880HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003881L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003882S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003883F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003884
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003885HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003886M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003887S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003888F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003889
Joe Perches7d2c86b2009-04-07 20:59:01 -07003890HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003891M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003893F: Documentation/timers/hpet.txt
3894F: drivers/char/hpet.c
3895F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003896F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003897
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003898HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003899M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003901F: arch/x86/kernel/hpet.c
3902F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003903
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003905M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003908F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Joe Perches7d2c86b2009-04-07 20:59:01 -07003910HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003911M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003912W: http://www.pharscape.org
3913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003914F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003915
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003916HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003917M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003918L: linux-input@vger.kernel.org
3919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003920F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003921
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003923M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003925F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003927Hyper-V CORE AND DRIVERS
3928M: K. Y. Srinivasan <kys@microsoft.com>
3929M: Haiyang Zhang <haiyangz@microsoft.com>
3930L: devel@linuxdriverproject.org
3931S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07003932F: arch/x86/include/asm/mshyperv.h
3933F: arch/x86/include/uapi/asm/hyperv.h
3934F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003935F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07003936F: drivers/hv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003937F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07003938F: drivers/scsi/storvsc_drv.c
3939F: drivers/video/hyperv_fb.c
3940F: include/linux/hyperv.h
3941F: tools/hv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003942
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003943I2C OVER PARALLEL PORT
3944M: Jean Delvare <khali@linux-fr.org>
3945L: linux-i2c@vger.kernel.org
3946S: Maintained
3947F: Documentation/i2c/busses/i2c-parport
3948F: Documentation/i2c/busses/i2c-parport-light
3949F: drivers/i2c/busses/i2c-parport.c
3950F: drivers/i2c/busses/i2c-parport-light.c
3951
3952I2C/SMBUS CONTROLLER DRIVERS FOR PC
3953M: Jean Delvare <khali@linux-fr.org>
3954L: linux-i2c@vger.kernel.org
3955S: Maintained
3956F: Documentation/i2c/busses/i2c-ali1535
3957F: Documentation/i2c/busses/i2c-ali1563
3958F: Documentation/i2c/busses/i2c-ali15x3
3959F: Documentation/i2c/busses/i2c-amd756
3960F: Documentation/i2c/busses/i2c-amd8111
3961F: Documentation/i2c/busses/i2c-i801
3962F: Documentation/i2c/busses/i2c-nforce2
3963F: Documentation/i2c/busses/i2c-piix4
3964F: Documentation/i2c/busses/i2c-sis5595
3965F: Documentation/i2c/busses/i2c-sis630
3966F: Documentation/i2c/busses/i2c-sis96x
3967F: Documentation/i2c/busses/i2c-via
3968F: Documentation/i2c/busses/i2c-viapro
3969F: drivers/i2c/busses/i2c-ali1535.c
3970F: drivers/i2c/busses/i2c-ali1563.c
3971F: drivers/i2c/busses/i2c-ali15x3.c
3972F: drivers/i2c/busses/i2c-amd756.c
3973F: drivers/i2c/busses/i2c-amd756-s4882.c
3974F: drivers/i2c/busses/i2c-amd8111.c
3975F: drivers/i2c/busses/i2c-i801.c
3976F: drivers/i2c/busses/i2c-isch.c
3977F: drivers/i2c/busses/i2c-nforce2.c
3978F: drivers/i2c/busses/i2c-nforce2-s4985.c
3979F: drivers/i2c/busses/i2c-piix4.c
3980F: drivers/i2c/busses/i2c-sis5595.c
3981F: drivers/i2c/busses/i2c-sis630.c
3982F: drivers/i2c/busses/i2c-sis96x.c
3983F: drivers/i2c/busses/i2c-via.c
3984F: drivers/i2c/busses/i2c-viapro.c
3985
Neil Hormancb7f07a2013-02-10 11:59:03 -05003986I2C/SMBUS ISMT DRIVER
3987M: Seth Heasley <seth.heasley@intel.com>
3988M: Neil Horman <nhorman@tuxdriver.com>
3989L: linux-i2c@vger.kernel.org
3990F: drivers/i2c/busses/i2c-ismt.c
3991F: Documentation/i2c/busses/i2c-ismt
3992
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003993I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003994M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003995L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003996S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003997F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003998
Jean Delvare5b543962005-08-15 19:51:02 +02003999I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01004000M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01004001L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01004002W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01004003T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004005F: Documentation/i2c/
4006F: drivers/i2c/
4007F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01004008F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004009F: include/uapi/linux/i2c.h
4010F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011
Jean Delvared85c8a6a2012-11-13 22:27:19 +01004012I2C-TAOS-EVM DRIVER
4013M: Jean Delvare <khali@linux-fr.org>
4014L: linux-i2c@vger.kernel.org
4015S: Maintained
4016F: Documentation/i2c/busses/i2c-taos-evm
4017F: drivers/i2c/busses/i2c-taos-evm.c
4018
Till Harbaume8c76ee2007-05-01 23:26:35 +02004019I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004020M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01004021L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07004022W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02004023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004024F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02004025
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07004027M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004029F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
4031i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07004032M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07004033T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034S: Maintained
4035
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07004037M: Tony Luck <tony.luck@intel.com>
4038M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07004040T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004042F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Kent Yoder956c2032012-09-07 04:17:01 +08004044IBM Power in-Nest Crypto Acceleration
Kent Yoder5b88e272013-05-22 10:56:58 -05004045M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4046M: Fionnuala Gunter <fin@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08004047L: linux-crypto@vger.kernel.org
4048S: Supported
4049F: drivers/crypto/nx/
4050
Seth Jennings0e16aaf2012-07-19 09:42:40 -05004051IBM Power 842 compression accelerator
4052M: Robert Jennings <rcj@linux.vnet.ibm.com>
4053S: Supported
4054F: drivers/crypto/nx/nx-842.c
4055F: include/linux/nx842.h
4056
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07004058M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004060F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Santiago Leon9d348af2010-09-03 18:29:53 +00004062IBM Power Virtual Ethernet Device Driver
4063M: Santiago Leon <santil@linux.vnet.ibm.com>
4064L: netdev@vger.kernel.org
4065S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004066F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00004067
Robert Jennings4b7652c2012-07-31 12:34:36 -05004068IBM Power Virtual SCSI/FC Device Drivers
4069M: Robert Jennings <rcj@linux.vnet.ibm.com>
4070L: linux-scsi@vger.kernel.org
4071S: Supported
4072F: drivers/scsi/ibmvscsi/
4073X: drivers/scsi/ibmvscsi/ibmvstgt.c
4074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075IBM ServeRAID RAID DRIVER
4076P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07004077M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004080F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004082ICH LPC AND GPIO DRIVER
4083M: Peter Tyser <ptyser@xes-inc.com>
4084S: Maintained
4085F: drivers/mfd/lpc_ich.c
4086F: drivers/gpio/gpio-ich.c
4087
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004088IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004089M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004091Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004092T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004094F: Documentation/ide/
4095F: drivers/ide/
4096F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
Ike Panhc6cb8c132011-08-25 22:28:45 +08004098IDEAPAD LAPTOP EXTRAS DRIVER
4099M: Ike Panhc <ike.pan@canonical.com>
4100L: platform-driver-x86@vger.kernel.org
4101W: http://launchpad.net/ideapad-laptop
4102S: Maintained
4103F: drivers/platform/x86/ideapad-laptop.c
4104
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004105IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004106M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004107L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004109F: Documentation/cdrom/ide-cd
4110F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Andy Henroid27471fd2008-10-09 11:45:22 -07004112IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004114L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004116F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004117
Sergey Lapin02cf2282009-06-08 12:18:50 +00004118IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004119M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004120M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004121L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004122W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004123T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004124S: Maintained
4125F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004126F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004127F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004128
Sean Young40ad4a32012-11-19 10:32:53 -03004129IGUANAWORKS USB IR TRANSCEIVER
4130M: Sean Young <sean@mess.org>
4131L: linux-media@vger.kernel.org
4132S: Maintained
4133F: drivers/media/rc/iguanair.c
4134
Ameya Palande9545f862012-01-10 09:00:58 -08004135IIO SUBSYSTEM AND DRIVERS
4136M: Jonathan Cameron <jic23@cam.ac.uk>
4137L: linux-iio@vger.kernel.org
4138S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004139F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004140F: drivers/staging/iio/
4141
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004142IKANOS/ADI EAGLE ADSL USB DRIVER
4143M: Matthieu Castet <castet.matthieu@free.fr>
4144M: Stanislaw Gruszka <stf_xl@wp.pl>
4145S: Maintained
4146F: drivers/usb/atm/ueagle-atm.c
4147
Guenter Roecke89ab512013-03-08 08:13:09 -08004148INA209 HARDWARE MONITOR DRIVER
4149M: Guenter Roeck <linux@roeck-us.net>
4150L: lm-sensors@lm-sensors.org
4151S: Maintained
4152F: Documentation/hwmon/ina209
4153F: Documentation/devicetree/bindings/i2c/ina209.txt
4154F: drivers/hwmon/ina209.c
4155
4156INA2XX HARDWARE MONITOR DRIVER
4157M: Guenter Roeck <linux@roeck-us.net>
4158L: lm-sensors@lm-sensors.org
4159S: Maintained
4160F: Documentation/hwmon/ina2xx
4161F: drivers/hwmon/ina2xx.c
4162F: include/linux/platform_data/ina2xx.h
4163
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004164INDUSTRY PACK SUBSYSTEM (IPACK)
4165M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4166M: Jens Taprogge <jens.taprogge@taprogge.org>
4167M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4168L: industrypack-devel@lists.sourceforge.net
4169W: http://industrypack.sourceforge.net
4170S: Maintained
4171F: drivers/ipack/
4172
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004173INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004174M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zohar89121762013-06-20 07:43:40 -04004175M: Dmitry Kasatkin <d.kasatkin@samsung.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004177F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004178
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004180L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004181S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004182F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
4184INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004185M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Sean Hefty <sean.hefty@intel.com>
4187M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004188L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004189W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004190Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004191T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004193F: Documentation/infiniband/
4194F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004195F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196
Robert Lovec9f04f52005-07-15 12:21:07 -04004197INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004198M: John McCutchan <john@johnmccutchan.com>
4199M: Robert Love <rlove@rlove.org>
4200M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004202F: Documentation/filesystems/inotify.txt
4203F: fs/notify/inotify/
4204F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004205F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004206
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004207INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004208M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4209M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004210L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004211Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004212T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004214F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004215F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004216F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004217F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004218
Henrik Rydberg3267a872010-06-24 19:10:40 -07004219INPUT MULTITOUCH (MT) PROTOCOL
4220M: Henrik Rydberg <rydberg@euromail.se>
4221L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004222T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004223S: Maintained
4224F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004225F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004226K: \b(ABS|SYN)_MT_
4227
Dave Jiang4ac13e12011-07-29 17:16:55 -07004228INTEL C600 SERIES SAS CONTROLLER DRIVER
4229M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004230M: Lukasz Dorau <lukasz.dorau@intel.com>
4231M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004232M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004233L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004234T: git git://git.code.sf.net/p/intel-sas/isci
4235S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004236F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004237
Len Brown26717172010-03-08 14:07:30 -05004238INTEL IDLE DRIVER
4239M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004240L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004241T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004242S: Supported
4243F: drivers/idle/intel_idle.c
4244
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004245INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004246M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004247L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: Documentation/fb/intelfb.txt
4250F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004253M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004254L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004256F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304258INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004259M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004260L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304261W: http://www.lesswatts.org/projects/acpi/
4262S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004263F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004266M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004268F: arch/x86/kernel/microcode_core.c
4269F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004271INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004272M: Dan Williams <djbw@fb.com>
4273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004274F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004275
David Woodhouse6c8909b2008-10-18 16:12:17 +01004276INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004278L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004279T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004280S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004281F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004282F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004283
Dan Williamsb3e5f262007-08-07 10:26:35 -07004284INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004285M: Dan Williams <djbw@fb.com>
4286S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004287F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004288
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004289INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004290M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004292F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4293F: arch/arm/mach-ixp4xx/include/mach/npe.h
4294F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4295F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004296F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004297F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004298
Michael Buesch844dd052006-06-26 00:24:59 -07004299INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004300M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004302F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004303
Jeff Kirsher0d164402010-10-05 01:15:17 +00004304INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004305M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4306M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4307M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004308M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4309M: Don Skidmore <donald.c.skidmore@intel.com>
4310M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004311M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004312M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004313M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004314M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004315L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004316W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004317W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004318T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4319T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004321F: Documentation/networking/e100.txt
4322F: Documentation/networking/e1000.txt
4323F: Documentation/networking/e1000e.txt
4324F: Documentation/networking/igb.txt
4325F: Documentation/networking/igbvf.txt
4326F: Documentation/networking/ixgb.txt
4327F: Documentation/networking/ixgbe.txt
4328F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004329F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004331INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4332M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004333L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004336F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004337F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004338
Shane Wang4bd96a72010-03-10 14:36:10 +08004339INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004340M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4341M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004342M: Shane Wang <shane.wang@intel.com>
4343L: tboot-devel@lists.sourceforge.net
4344W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004345T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004346S: Supported
4347F: Documentation/intel_txt.txt
4348F: include/linux/tboot.h
4349F: arch/x86/kernel/tboot.c
4350
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004351INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004352M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004353M: linux-wimax@intel.com
4354L: wimax@linuxwimax.org
4355S: Supported
4356W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004357F: Documentation/wimax/README.i2400m
4358F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004359F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004360
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004361INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4362M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004363L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004364S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004365F: drivers/net/wireless/iwlegacy/
4366
Zhu Yib481de92007-09-25 17:54:57 -07004367INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004368M: Johannes Berg <johannes.berg@intel.com>
Johannes Berg6161b022013-07-23 14:03:39 +02004369M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004370M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004371L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004372W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004373T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004375F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004376
Tomas Winklerde8fe022012-05-09 16:39:02 +03004377INTEL MANAGEMENT ENGINE (mei)
4378M: Tomas Winkler <tomas.winkler@intel.com>
4379L: linux-kernel@vger.kernel.org
4380S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004381F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004382F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004383F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004384
Ralf Baechlecb109a02007-08-30 23:56:30 -07004385IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004386M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387L: linux-mips@linux-mips.org
4388S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004389F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
Ralf Baechlecb109a02007-08-30 23:56:30 -07004391IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004393L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004394S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004395F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004396
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004397IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004398M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Francois Romieu1202d6f2007-09-17 17:13:55 -07004402IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004403M: Francois Romieu <romieu@fr.zoreil.com>
4404M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004405L: netdev@vger.kernel.org
4406S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004407F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004408
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004409IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004410M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004411L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004413F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004414
Corey Minyard4409ebe2006-04-20 02:43:12 -07004415IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004416M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004417L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004418W: http://openipmi.sourceforge.net/
4419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004420F: Documentation/IPMI.txt
4421F: drivers/char/ipmi/
4422F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004423F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004424
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004425IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004426M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004427L: linux-scsi@vger.kernel.org
4428W: http://www.adaptec.com/
4429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004430F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004431
4432IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004433M: Wensong Zhang <wensong@linux-vs.org>
4434M: Simon Horman <horms@verge.net.au>
4435M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004436L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004437L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004440F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004441F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004442F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443
Randy Dunlape7839f22008-10-12 16:11:45 -07004444IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004445M: Jiri Kosina <jkosina@suse.cz>
4446M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004447S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004448F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004449
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004450IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004451M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004452L: netdev@vger.kernel.org
4453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004454F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004455F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004456F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004457
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004459M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004460L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004461L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004463S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004464T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004465F: Documentation/networking/irda.txt
4466F: drivers/net/irda/
4467F: include/net/irda/
4468F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004470IRQ SUBSYSTEM
4471M: Thomas Gleixner <tglx@linutronix.de>
4472S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004473T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004474F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004475F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004476
Grant Likely7ab3a832012-02-14 14:06:47 -07004477IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4478M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004479S: Maintained
4480F: Documentation/IRQ-domain.txt
4481F: include/linux/irqdomain.h
4482F: kernel/irq/irqdomain.c
4483
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004484ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004485M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004487F: Documentation/isapnp.txt
4488F: drivers/pnp/isapnp/
4489F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004490
Hans Verkuild39b8422012-11-23 07:07:02 -03004491ISA RADIO MODULE
4492M: Hans Verkuil <hverkuil@xs4all.nl>
4493L: linux-media@vger.kernel.org
4494T: git git://linuxtv.org/media_tree.git
4495W: http://linuxtv.org
4496S: Maintained
4497F: drivers/media/radio/radio-isa*
4498
Harry Wei71a6d0a2011-05-11 15:13:33 -07004499iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4500M: Peter Jones <pjones@redhat.com>
4501M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4502S: Maintained
4503F: drivers/firmware/iscsi_ibft*
4504
Mike Christie14816b12007-11-28 16:22:06 -08004505ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004506M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08004507L: open-iscsi@googlegroups.com
4508W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004509T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08004510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004511F: drivers/scsi/*iscsi*
4512F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08004513
Or Gerlitz1e65eb42013-05-08 12:21:19 +00004514ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
4515M: Or Gerlitz <ogerlitz@mellanox.com>
4516M: Roi Dayan <roid@mellanox.com>
4517L: linux-rdma@vger.kernel.org
4518S: Supported
4519W: http://www.openfabrics.org
4520W: www.open-iscsi.org
4521Q: http://patchwork.kernel.org/project/linux-rdma/list/
4522F: drivers/infiniband/ulp/iser
4523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004526L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004527L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004529T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004531F: Documentation/isdn/
4532F: drivers/isdn/
4533F: include/linux/isdn.h
4534F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004535F: include/uapi/linux/isdn.h
4536F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
4538ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004539M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004540L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541W: http://www.melware.de
4542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004543F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Jean Delvared6248702010-03-05 22:17:20 +01004545IT87 HARDWARE MONITORING DRIVER
4546M: Jean Delvare <khali@linux-fr.org>
4547L: lm-sensors@lm-sensors.org
4548S: Maintained
4549F: Documentation/hwmon/it87
4550F: drivers/hwmon/it87.c
4551
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004552IT913X MEDIA DRIVER
4553M: Malcolm Priestley <tvboxspy@gmail.com>
4554L: linux-media@vger.kernel.org
4555W: http://linuxtv.org/
4556Q: http://patchwork.linuxtv.org/project/linux-media/list/
4557S: Maintained
4558F: drivers/media/usb/dvb-usb-v2/it913x*
4559
4560IT913X FE MEDIA DRIVER
4561M: Malcolm Priestley <tvboxspy@gmail.com>
4562L: linux-media@vger.kernel.org
4563W: http://linuxtv.org/
4564Q: http://patchwork.linuxtv.org/project/linux-media/list/
4565S: Maintained
4566F: drivers/media/dvb-frontends/it913x-fe*
4567
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004568IT913X MEDIA DRIVER
4569M: Antti Palosaari <crope@iki.fi>
4570L: linux-media@vger.kernel.org
4571W: http://linuxtv.org/
4572W: http://palosaari.fi/linux/
4573Q: http://patchwork.linuxtv.org/project/linux-media/list/
4574T: git git://linuxtv.org/anttip/media_tree.git
4575S: Maintained
4576F: drivers/media/tuners/it913x*
4577
Hans Verkuil91821ff2007-12-02 09:35:33 -03004578IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004579M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004580L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004581L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004582T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004583W: http://www.ivtvdriver.org
4584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004585F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004586F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004587F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004588
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004589IX2505V MEDIA DRIVER
4590M: Malcolm Priestley <tvboxspy@gmail.com>
4591L: linux-media@vger.kernel.org
4592W: http://linuxtv.org/
4593Q: http://patchwork.linuxtv.org/project/linux-media/list/
4594S: Maintained
4595F: drivers/media/dvb-frontends/ix2505v*
4596
Guenter Roeck4453d732010-08-09 17:21:08 -07004597JC42.4 TEMPERATURE SENSOR DRIVER
4598M: Guenter Roeck <linux@roeck-us.net>
4599L: lm-sensors@lm-sensors.org
4600S: Maintained
4601F: drivers/hwmon/jc42.c
4602F: Documentation/hwmon/jc42
4603
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004604JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004605M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004606L: jfs-discussion@lists.sourceforge.net
4607W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004608T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004610F: Documentation/filesystems/jfs.txt
4611F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004612
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004613JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004614M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004615L: netdev@vger.kernel.org
4616S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004617F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004618
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004620M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004621L: linux-mtd@lists.infradead.org
4622W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004624F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004625F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Josh Triplettde456d32006-07-30 03:04:00 -07004627JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004629M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004630L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004631S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004632F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004633F: include/linux/jbd.h
4634
4635JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4636M: "Theodore Ts'o" <tytso@mit.edu>
4637L: linux-ext4@vger.kernel.org
4638S: Maintained
4639F: fs/jbd2/
4640F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004641
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004642JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03004643M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004644L: linux-serial@vger.kernel.org
4645S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004646F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004647
Clemens Ladischaf399172011-01-10 16:32:54 +01004648K10TEMP HARDWARE MONITORING DRIVER
4649M: Clemens Ladisch <clemens@ladisch.de>
4650L: lm-sensors@lm-sensors.org
4651S: Maintained
4652F: Documentation/hwmon/k10temp
4653F: drivers/hwmon/k10temp.c
4654
Rudolf Marek4660cb32006-10-08 22:01:26 +02004655K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004656M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004657L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004659F: Documentation/hwmon/k8temp
4660F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
4662KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004663M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004664L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004665S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004666F: Documentation/kbuild/kconfig-language.txt
4667F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
Vivek Goyalea6c2082006-05-20 14:59:55 -07004669KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Vivek Goyal <vgoyal@redhat.com>
4671M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004672L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004673W: http://lse.sourceforge.net/kdump/
4674S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004675F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004676
Hans Verkuilf41bf022012-11-23 07:04:36 -03004677KEENE FM RADIO TRANSMITTER DRIVER
4678M: Hans Verkuil <hverkuil@xs4all.nl>
4679L: linux-media@vger.kernel.org
4680T: git git://linuxtv.org/media_tree.git
4681W: http://linuxtv.org
4682S: Maintained
4683F: drivers/media/radio/radio-keene*
4684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004687L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004689F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Michal Marek70fb7ba2010-01-29 14:22:43 +01004691KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004692M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004693T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4694T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004695L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004697F: Documentation/kbuild/
4698F: Makefile
4699F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004700F: scripts/basic/
4701F: scripts/mk*
4702F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
4704KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004705L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004706W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004707S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004709KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004710M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004711L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004714F: fs/nfsd/
4715F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004716F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004717F: fs/lockd/
4718F: fs/nfs_common/
4719F: net/sunrpc/
4720F: include/linux/lockd/
4721F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004722F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723
Avi Kivity426d62e2006-12-13 00:34:03 -08004724KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004725M: Gleb Natapov <gleb@redhat.com>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004726M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004727L: kvm@vger.kernel.org
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004728W: http://linux-kvm.org
Avi Kivity426d62e2006-12-13 00:34:03 -08004729S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004730F: Documentation/*/kvm*.txt
4731F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07004732F: arch/*/kvm/
4733F: arch/*/include/asm/kvm*
4734F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004735F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004736F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004737
Joerg Roedelad8003d2008-09-10 20:01:07 +02004738KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004739M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004740L: kvm@vger.kernel.org
4741W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004743F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004744F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004745
Hollis Blanchard513014b2008-04-16 23:28:08 -05004746KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004747M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004748L: kvm-ppc@vger.kernel.org
4749W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004750T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004751S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004752F: arch/powerpc/include/asm/kvm*
4753F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004754
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004755KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004756M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004757L: kvm-ia64@vger.kernel.org
4758W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004759S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004760F: Documentation/ia64/kvm.txt
4761F: arch/ia64/include/asm/kvm*
4762F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004763
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004764KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004765M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004766M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004767M: linux390@de.ibm.com
4768L: linux-s390@vger.kernel.org
4769W: http://www.ibm.com/developerworks/linux/linux390/
4770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004771F: Documentation/s390/kvm.txt
4772F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004773F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004774F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004775
Christoffer Dalla7494742013-01-20 18:42:26 -05004776KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07004777M: Christoffer Dall <christoffer.dall@linaro.org>
Christoffer Dalla7494742013-01-20 18:42:26 -05004778L: kvmarm@lists.cs.columbia.edu
4779W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07004780S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05004781F: arch/arm/include/uapi/asm/kvm*
4782F: arch/arm/include/asm/kvm*
4783F: arch/arm/kvm/
4784
Marc Zyngier6394a3e2013-04-02 17:49:40 +01004785KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
4786M: Marc Zyngier <marc.zyngier@arm.com>
4787L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4788L: kvmarm@lists.cs.columbia.edu
4789S: Maintained
4790F: arch/arm64/include/uapi/asm/kvm*
4791F: arch/arm64/include/asm/kvm*
4792F: arch/arm64/kvm/
4793
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004794KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004795M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004796W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004797L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004799F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004800F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004801F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004802
David Howellse9714612010-03-29 23:42:09 +01004803KEYS/KEYRINGS:
4804M: David Howells <dhowells@redhat.com>
4805L: keyrings@linux-nfs.org
4806S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004807F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004808F: include/linux/key.h
4809F: include/linux/key-type.h
4810F: include/keys/
4811F: security/keys/
4812
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004813KEYS-TRUSTED
4814M: David Safford <safford@watson.ibm.com>
4815M: Mimi Zohar <zohar@us.ibm.com>
4816L: linux-security-module@vger.kernel.org
4817L: keyrings@linux-nfs.org
4818S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004819F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004820F: include/keys/trusted-type.h
4821F: security/keys/trusted.c
4822F: security/keys/trusted.h
4823
4824KEYS-ENCRYPTED
4825M: Mimi Zohar <zohar@us.ibm.com>
4826M: David Safford <safford@watson.ibm.com>
4827L: linux-security-module@vger.kernel.org
4828L: keyrings@linux-nfs.org
4829S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004830F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004831F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004832F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004833
Jason Wessel5b778da2010-05-20 21:04:28 -05004834KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004835M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004836W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004837L: kgdb-bugreport@lists.sourceforge.net
4838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004839F: Documentation/DocBook/kgdb.tmpl
4840F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004841F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004842F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004843F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004844F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004845
Pekka Enberg456db8c2008-04-28 22:47:29 +03004846KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004848M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004849S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004850F: Documentation/kmemcheck.txt
4851F: arch/x86/include/asm/kmemcheck.h
4852F: arch/x86/mm/kmemcheck/
4853F: include/linux/kmemcheck.h
4854F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004855
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004856KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004857M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004858S: Maintained
4859F: Documentation/kmemleak.txt
4860F: include/linux/kmemleak.h
4861F: mm/kmemleak.c
4862F: mm/kmemleak-test.c
4863
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004864KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004865M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4866M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4867M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004868M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004870F: Documentation/kprobes.txt
4871F: include/linux/kprobes.h
4872F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004873
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004874KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004875M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004876W: http://miguelojeda.es/auxdisplay.htm
4877W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004879F: Documentation/auxdisplay/ks0108
4880F: drivers/auxdisplay/ks0108.c
4881F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004882
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004885S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004886F: Documentation/networking/lapb-module.txt
4887F: include/*/lapb.h
4888F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
4890LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004891M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892L: linux-scsi@vger.kernel.org
4893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004894F: Documentation/scsi/53c700.txt
4895F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
Richard Purdie263de9b2006-05-15 09:44:16 -07004897LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004898M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004899M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004900L: linux-leds@vger.kernel.org
4901T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004903F: drivers/leds/
4904F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004905
Jean Delvareb0461a42011-06-15 15:08:46 -07004906LEGACY EEPROM DRIVER
4907M: Jean Delvare <khali@linux-fr.org>
4908S: Maintained
4909F: Documentation/misc-devices/eeprom
4910F: drivers/misc/eeprom/eeprom.c
4911
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004913M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914L: legousb-devel@lists.sourceforge.net
4915W: http://legousb.sourceforge.net/
4916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004917F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918
Michael Krufky055616a2012-10-02 00:56:06 -03004919LG2160 MEDIA DRIVER
4920M: Michael Krufky <mkrufky@linuxtv.org>
4921L: linux-media@vger.kernel.org
4922W: http://linuxtv.org/
4923W: http://github.com/mkrufky
4924Q: http://patchwork.linuxtv.org/project/linux-media/list/
4925T: git git://linuxtv.org/mkrufky/tuners.git
4926S: Maintained
4927F: drivers/media/dvb-frontends/lg2160.*
4928
Michael Krufky6f0e7722012-10-02 00:56:00 -03004929LGDT3305 MEDIA DRIVER
4930M: Michael Krufky <mkrufky@linuxtv.org>
4931L: linux-media@vger.kernel.org
4932W: http://linuxtv.org/
4933W: http://github.com/mkrufky
4934Q: http://patchwork.linuxtv.org/project/linux-media/list/
4935T: git git://linuxtv.org/mkrufky/tuners.git
4936S: Maintained
4937F: drivers/media/dvb-frontends/lgdt3305.*
4938
Rusty Russell568a17f2007-10-25 14:12:24 +10004939LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004940M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004941L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004942W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004943S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004944F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004945F: arch/x86/lguest/
4946F: drivers/lguest/
4947F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004948F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004949
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004951M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952W: http://www.ibm.com/linux/ltc/projects/ppc
4953S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004954F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004956LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004957M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4958M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004960L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004961Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004962T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004964F: Documentation/powerpc/
4965F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966
4967LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004968M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004970L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004972F: arch/powerpc/platforms/powermac/
4973F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974
Grant Likely77a76362008-07-12 12:11:43 -06004975LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004976M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004977L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004978T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004980F: arch/powerpc/platforms/512x/
4981F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982
4983LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004984M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004985M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004987L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004988T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004990F: arch/powerpc/platforms/40x/
4991F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Grant Likely260c02a2007-10-02 12:15:34 +10004993LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004994L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01004995S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00004996F: arch/powerpc/*/*virtex*
4997F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998
Tom Rinie93adf12005-07-26 12:49:53 -07004999LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07005000M: Vitaly Bordug <vitb@kernel.crashing.org>
5001M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07005002W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005003L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07005004S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07005005F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07005006
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07005008M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01005009W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005010L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01005011S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00005012F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03005013F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014
Olof Johanssonab06ff32006-09-06 14:44:54 -05005015LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07005016M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005017L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00005018S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00005019F: arch/powerpc/platforms/pasemi/
5020F: drivers/*/*pasemi*
5021F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05005022
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005024M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08005025L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026S: Supported
5027
Harry Weia23ce6d2011-02-11 16:52:20 +01005028LIS3LV02D ACCELEROMETER DRIVER
5029M: Eric Piel <eric.piel@tremplin-utc.net>
5030S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01005031F: Documentation/misc-devices/lis3lv02d
5032F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07005033F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01005034
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005035LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07005036M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005038F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005039F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07005040F: include/net/llc*
5041F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005042
Adrien Demarez4e233cb2009-12-09 20:35:50 +01005043LM73 HARDWARE MONITOR DRIVER
5044M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
5045L: lm-sensors@lm-sensors.org
5046S: Maintained
5047F: drivers/hwmon/lm73.c
5048
Jean Delvare156e2d12011-07-25 21:46:11 +02005049LM78 HARDWARE MONITOR DRIVER
5050M: Jean Delvare <khali@linux-fr.org>
5051L: lm-sensors@lm-sensors.org
5052S: Maintained
5053F: Documentation/hwmon/lm78
5054F: drivers/hwmon/lm78.c
5055
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005057M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02005058L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005060F: Documentation/hwmon/lm83
5061F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062
5063LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005064M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02005065L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005067F: Documentation/hwmon/lm90
5068F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069
Guenter Roeck917cc4e2013-05-19 20:44:27 -07005070LM95234 HARDWARE MONITOR DRIVER
5071M: Guenter Roeck <linux@roeck-us.net>
5072L: lm-sensors@lm-sensors.org
5073S: Maintained
5074F: Documentation/hwmon/lm95234
5075F: drivers/hwmon/lm95234.c
5076
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005077LME2510 MEDIA DRIVER
5078M: Malcolm Priestley <tvboxspy@gmail.com>
5079L: linux-media@vger.kernel.org
5080W: http://linuxtv.org/
5081Q: http://patchwork.linuxtv.org/project/linux-media/list/
5082S: Maintained
5083F: drivers/media/usb/dvb-usb-v2/lmedm04*
5084
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005085LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07005086M: Peter Zijlstra <peterz@infradead.org>
5087M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005088T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005090F: Documentation/lockdep*.txt
5091F: Documentation/lockstat.txt
5092F: include/linux/lockdep.h
5093F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005094
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005095LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07005096M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005097L: linux-ntfs-dev@lists.sourceforge.net
5098W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005100F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08005101F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102
Joern Engelef6ada32009-11-20 22:17:12 +01005103LogFS
5104M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305105M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005106L: logfs@logfs.org
5107W: logfs.org
5108S: Maintained
5109F: fs/logfs/
5110
Roland Stiggeb62d7942013-04-02 19:37:11 +02005111LPC32XX MACHINE SUPPORT
5112M: Roland Stigge <stigge@antcom.de>
5113L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5114S: Maintained
5115F: arch/arm/mach-lpc32xx/
5116
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005117LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305118M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5119M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005120M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005121L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005122L: linux-scsi@vger.kernel.org
5123W: http://www.lsilogic.com/support
5124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005125F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305126F: drivers/scsi/mpt2sas/
5127F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005128
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005130M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131L: linux-scsi@vger.kernel.org
5132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005133F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134
Guenter Roecke5f5c992010-06-25 11:59:54 -07005135LTC4261 HARDWARE MONITOR DRIVER
5136M: Guenter Roeck <linux@roeck-us.net>
5137L: lm-sensors@lm-sensors.org
5138S: Maintained
5139F: Documentation/hwmon/ltc4261
5140F: drivers/hwmon/ltc4261.c
5141
Mike Frysinger81365c32008-10-29 14:01:12 -07005142LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005143M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005144M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005145M: Cyril Hrubis <chrubis@suse.cz>
5146M: Caspar Zhang <caspar@casparzhang.com>
5147M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005148L: ltp-list@lists.sourceforge.net (subscribers-only)
5149W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005150T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005151T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005152S: Maintained
5153
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005154M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005155M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005156L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005157L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5158W: http://www.linux-m32r.org/
5159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005160F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005161
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164L: linux-m68k@lists.linux-m68k.org
5165W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005166T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005168F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005169F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
5171M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005172M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005174L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005176F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
5178M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005179M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180W: http://www.tazenda.demon.co.uk/phil/linux-hp
5181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005182F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005184M88RS2000 MEDIA DRIVER
5185M: Malcolm Priestley <tvboxspy@gmail.com>
5186L: linux-media@vger.kernel.org
5187W: http://linuxtv.org/
5188Q: http://patchwork.linuxtv.org/project/linux-media/list/
5189S: Maintained
5190F: drivers/media/dvb-frontends/m88rs2000*
5191
Alexey Klimov07a092f2012-11-12 02:57:32 -03005192MA901 MASTERKIT USB FM RADIO DRIVER
5193M: Alexey Klimov <klimov.linux@gmail.com>
5194L: linux-media@vger.kernel.org
5195T: git git://linuxtv.org/media_tree.git
5196S: Maintained
5197F: drivers/media/radio/radio-ma901.c
5198
Jiri Benc64a327a2007-05-05 11:47:08 -07005199MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005200M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005201L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005202W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005203T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5204T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005206F: Documentation/networking/mac80211-injection.txt
5207F: include/net/mac80211.h
5208F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005209
Stefano Brivio1036d862007-12-23 04:46:27 +01005210MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005211M: Stefano Brivio <stefano.brivio@polimi.it>
5212M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005213L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005214W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005215T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5216T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005218F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005219
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005220MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005221M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005222L: netdev@vger.kernel.org
5223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005224F: drivers/net/macvlan.c
5225F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005226
Michael Kerriskfaf16682005-07-31 22:34:47 -07005227MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005228M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005229W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005230L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005231S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005232
stephen hemminger44c14c12012-04-02 12:59:47 +00005233MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5234M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005235M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005236L: netdev@vger.kernel.org
5237S: Maintained
5238F: drivers/net/ethernet/marvell/sk*
5239
Stefano Brivio74cda162007-11-19 20:27:46 +01005240MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005241L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005242S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005243F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005244
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005245MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005246M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005247L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005248S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005249F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005250F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005252MARVELL MVNETA ETHERNET DRIVER
5253M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5254L: netdev@vger.kernel.org
5255S: Maintained
5256F: drivers/net/ethernet/marvell/mvneta.*
5257
Bing Zhaofcad5842011-07-13 13:11:58 -07005258MARVELL MWIFIEX WIRELESS DRIVER
5259M: Bing Zhao <bzhao@marvell.com>
5260L: linux-wireless@vger.kernel.org
5261S: Maintained
5262F: drivers/net/wireless/mwifiex/
5263
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005264MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005265M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005266L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005267S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005268F: drivers/net/wireless/mwl8k.c
5269
Pierre Ossman2a695672009-03-16 19:52:26 +01005270MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005271M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005272S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005273F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005274
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005276L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005277S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005278F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005279F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
Guenter Roeckca462082012-06-01 23:28:23 -07005281MAX16065 HARDWARE MONITOR DRIVER
5282M: Guenter Roeck <linux@roeck-us.net>
5283L: lm-sensors@lm-sensors.org
5284S: Maintained
5285F: Documentation/hwmon/max16065
5286F: drivers/hwmon/max16065.c
5287
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005288MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005289M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005290L: lm-sensors@lm-sensors.org
5291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005292F: Documentation/hwmon/max6650
5293F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005294
Guenter Roecke89ab512013-03-08 08:13:09 -08005295MAX6697 HARDWARE MONITOR DRIVER
5296M: Guenter Roeck <linux@roeck-us.net>
5297L: lm-sensors@lm-sensors.org
5298S: Maintained
5299F: Documentation/hwmon/max6697
5300F: Documentation/devicetree/bindings/i2c/max6697.txt
5301F: drivers/hwmon/max6697.c
5302F: include/linux/platform_data/max6697.h
5303
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005304MAXIRADIO FM RADIO RECEIVER DRIVER
5305M: Hans Verkuil <hverkuil@xs4all.nl>
5306L: linux-media@vger.kernel.org
5307T: git git://linuxtv.org/media_tree.git
5308W: http://linuxtv.org
5309S: Maintained
5310F: drivers/media/radio/radio-maxiradio*
5311
Joe Perches127c49a2009-04-08 08:34:04 -07005312MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03005313M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005314P: LinuxTV.org Project
5315L: linux-media@vger.kernel.org
5316W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005317Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005318T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005319S: Maintained
5320F: Documentation/dvb/
5321F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005322F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005323F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005324F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005325F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005326F: include/uapi/linux/dvb/
5327F: include/uapi/linux/videodev2.h
5328F: include/uapi/linux/media.h
5329F: include/uapi/linux/v4l2-*
5330F: include/uapi/linux/meye.h
5331F: include/uapi/linux/ivtv*
5332F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005333
Hans Verkuil6149a932012-11-23 07:21:19 -03005334MEDIAVISION PRO MOVIE STUDIO DRIVER
5335M: Hans Verkuil <hverkuil@xs4all.nl>
5336L: linux-media@vger.kernel.org
5337T: git git://linuxtv.org/media_tree.git
5338W: http://linuxtv.org
5339S: Odd Fixes
5340F: drivers/media/parport/pms*
5341
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005342MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005343M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005344L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005345W: http://megaraid.lsilogic.com
5346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005347F: Documentation/scsi/megaraid.txt
5348F: drivers/scsi/megaraid.*
5349F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005350
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005351MELLANOX ETHERNET DRIVER (mlx4_en)
5352M: Amir Vadai <amirv@mellanox.com>
5353L: netdev@vger.kernel.org
5354S: Supported
5355W: http://www.mellanox.com
5356Q: http://patchwork.ozlabs.org/project/netdev/list/
5357F: drivers/net/ethernet/mellanox/mlx4/en_*
5358
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005359MEMORY MANAGEMENT
5360L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005361W: http://www.linux-mm.org
5362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005363F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005364F: include/linux/gfp.h
5365F: include/linux/mmzone.h
5366F: include/linux/memory_hotplug.h
5367F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005368F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005369
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005370MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005371M: Johannes Weiner <hannes@cmpxchg.org>
5372M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005373M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005374M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005375L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005376L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005378F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005379F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005380
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005381MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005382M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005384W: http://www.linux-mtd.infradead.org/
5385Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005386T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005388F: drivers/mtd/
5389F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005390F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02005392MEN A21 WATCHDOG DRIVER
5393M: Johannes Thumshirn <johannes.thumshirn@men.de>
5394L: linux-watchdog@vger.kernel.org
5395S: Supported
5396F: drivers/watchdog/mena21_wdt.c
5397
James Hogan12285942012-10-10 12:59:49 +01005398METAG ARCHITECTURE
5399M: James Hogan <james.hogan@imgtec.com>
5400S: Supported
5401F: arch/metag/
5402F: Documentation/metag/
5403F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005404F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005405F: drivers/irqchip/irq-metag.c
5406F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005407F: drivers/tty/metag_da.c
5408F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005409
Michal Simekc6375b02009-03-27 14:25:52 +01005410MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005411M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005412L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005413W: http://www.monstr.eu/fdt/
5414T: git git://git.monstr.eu/linux-2.6-microblaze.git
5415S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005416F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
5418MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005419M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005421F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
5423MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005424M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005426W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005427T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005428Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005430F: Documentation/mips/
5431F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Hans Verkuil08b76202012-11-23 07:15:42 -03005433MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5434M: Hans Verkuil <hverkuil@xs4all.nl>
5435L: linux-media@vger.kernel.org
5436T: git git://linuxtv.org/media_tree.git
5437W: http://linuxtv.org
5438S: Odd Fixes
5439F: drivers/media/radio/radio-miropcm20*
5440
Eli Cohene126ba92013-07-07 17:25:49 +03005441Mellanox MLX5 core VPI driver
5442M: Eli Cohen <eli@mellanox.com>
5443L: netdev@vger.kernel.org
5444L: linux-rdma@vger.kernel.org
5445W: http://www.mellanox.com
5446Q: http://patchwork.ozlabs.org/project/netdev/list/
5447Q: http://patchwork.kernel.org/project/linux-rdma/list/
5448T: git://openfabrics.org/~eli/connect-ib.git
5449S: Supported
5450F: drivers/net/ethernet/mellanox/mlx5/core/
5451F: include/linux/mlx5/
5452
5453Mellanox MLX5 IB driver
5454M: Eli Cohen <eli@mellanox.com>
5455L: linux-rdma@vger.kernel.org
5456W: http://www.mellanox.com
5457Q: http://patchwork.kernel.org/project/linux-rdma/list/
5458T: git://openfabrics.org/~eli/connect-ib.git
5459S: Supported
5460F: include/linux/mlx5/
5461F: drivers/infiniband/hw/mlx5/
5462
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005464M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005466F: include/linux/module.h
5467F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
5469MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005472F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005473F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005474F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Jiri Slabyb9705b62008-04-30 00:53:48 -07005476MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005477M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005480F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005481
Alexey Klimov889b2f82012-11-16 17:43:59 -03005482MR800 AVERMEDIA USB FM RADIO DRIVER
5483M: Alexey Klimov <klimov.linux@gmail.com>
5484L: linux-media@vger.kernel.org
5485T: git git://linuxtv.org/media_tree.git
5486S: Maintained
5487F: drivers/media/radio/radio-mr800.c
5488
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005489MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005490M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005491L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005493F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005494
Anisse Astier0f1006b2009-12-17 11:28:49 +01005495MSI WMI SUPPORT
5496M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005497L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005498S: Supported
5499F: drivers/platform/x86/msi-wmi.c
5500
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005501MT9M032 SENSOR DRIVER
5502M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5503L: linux-media@vger.kernel.org
5504T: git git://linuxtv.org/media_tree.git
5505S: Maintained
5506F: drivers/media/i2c/mt9m032.c
5507F: include/media/mt9m032.h
5508
5509MT9P031 SENSOR DRIVER
5510M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5511L: linux-media@vger.kernel.org
5512T: git git://linuxtv.org/media_tree.git
5513S: Maintained
5514F: drivers/media/i2c/mt9p031.c
5515F: include/media/mt9p031.h
5516
5517MT9T001 SENSOR DRIVER
5518M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5519L: linux-media@vger.kernel.org
5520T: git git://linuxtv.org/media_tree.git
5521S: Maintained
5522F: drivers/media/i2c/mt9t001.c
5523F: include/media/mt9t001.h
5524
5525MT9V032 SENSOR DRIVER
5526M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5527L: linux-media@vger.kernel.org
5528T: git git://linuxtv.org/media_tree.git
5529S: Maintained
5530F: drivers/media/i2c/mt9v032.c
5531F: include/media/mt9v032.h
5532
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005533MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005534M: Samuel Ortiz <sameo@linux.intel.com>
Samuel Ortizf7d32102013-05-17 00:53:42 +02005535M: Lee Jones <lee.jones@linaro.org>
5536T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git
5537T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005539F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01005540F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005541
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005542MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005543M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005544L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005545T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005547F: drivers/mmc/
5548F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005549F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005550
David Brownell15a05802007-08-08 09:12:54 -07005551MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005552S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005553F: drivers/mmc/host/mmc_spi.c
5554F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005555
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005557M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005559F: Documentation/sound/oss/MultiSound
5560F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561
Jiri Slabyd7354102006-12-08 02:38:35 -08005562MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005563S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005564F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005565F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005566
Felipe Balbi550a7372008-07-24 12:27:36 +03005567MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005568M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005569L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005570T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005572F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005573
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005574MXL5007T MEDIA DRIVER
5575M: Michael Krufky <mkrufky@linuxtv.org>
5576L: linux-media@vger.kernel.org
5577W: http://linuxtv.org/
5578W: http://github.com/mkrufky
5579Q: http://patchwork.linuxtv.org/project/linux-media/list/
5580T: git git://linuxtv.org/mkrufky/tuners.git
5581S: Maintained
5582F: drivers/media/tuners/mxl5007t.*
5583
Brice Goglin2d3cf582008-05-17 12:45:36 +02005584MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07005585M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005586L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07005587W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02005588S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005589F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005590
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005592S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005593F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
Daniel Mack23dc05a2011-05-18 11:28:38 +02005595NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5596M: Daniel Mack <zonque@gmail.com>
5597S: Maintained
5598L: alsa-devel@alsa-project.org
5599W: http://www.native-instruments.com
5600F: sound/usb/caiaq/
5601
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005603M: Petr Vandrovec <petr@vandrovec.name>
5604S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005605F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
5607NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005608M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609L: linux-scsi@vger.kernel.org
5610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005611F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005613NCT6775 HARDWARE MONITOR DRIVER
5614M: Guenter Roeck <linux@roeck-us.net>
5615L: lm-sensors@lm-sensors.org
5616S: Maintained
5617F: Documentation/hwmon/nct6775
5618F: drivers/hwmon/nct6775.c
5619
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005620NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005621M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005622L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005623W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005624S: Supported
5625F: drivers/infiniband/hw/nes/
5626
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005627NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005628M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005629L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005631F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005632
Jon Masonb2f5a052010-07-15 08:47:27 +00005633NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005634M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005635L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005636S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005637F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005638F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005639F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005640
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005641NETFILTER/IPTABLES
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005642M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005644M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005645L: netfilter-devel@vger.kernel.org
5646L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005647L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648W: http://www.netfilter.org/
5649W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005650Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
5651T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
5652T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005654F: include/linux/netfilter*
5655F: include/linux/netfilter/
5656F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005657F: include/uapi/linux/netfilter*
5658F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005659F: net/*/netfilter.c
5660F: net/*/netfilter/
5661F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662
Paul Moore4cc67732006-09-25 15:57:13 -07005663NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005664M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005665W: http://netlabel.sf.net
5666L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005667S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005668F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005669F: include/net/netlabel.h
5670F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005671
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005673M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005675W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005677F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005678F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005679F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005681NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005682M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005684L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005685F: Documentation/blockdev/nbd.txt
5686F: drivers/block/nbd.c
5687F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005688F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689
Neil Horman6e436502009-10-05 03:56:55 +00005690NETWORK DROP MONITOR
5691M: Neil Horman <nhorman@tuxdriver.com>
5692L: netdev@vger.kernel.org
5693S: Maintained
5694W: https://fedorahosted.org/dropwatch/
5695F: net/core/drop_monitor.c
5696
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005698M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005699L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005700W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005701Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005702T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5703T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005705F: net/
5706F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005707F: include/linux/in.h
5708F: include/linux/net.h
5709F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005710F: include/uapi/linux/in.h
5711F: include/uapi/linux/net.h
5712F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713
5714NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005715M: "David S. Miller" <davem@davemloft.net>
5716M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005717M: James Morris <jmorris@namei.org>
5718M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5719M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005720L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005721T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005723F: net/ipv4/
5724F: net/ipv6/
5725F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005726F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727
David S. Miller73b76562012-10-16 14:08:40 -04005728NETWORKING [IPSEC]
5729M: Steffen Klassert <steffen.klassert@secunet.com>
5730M: Herbert Xu <herbert@gondor.apana.org.au>
5731M: "David S. Miller" <davem@davemloft.net>
5732L: netdev@vger.kernel.org
5733T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5734S: Maintained
5735F: net/xfrm/
5736F: net/key/
5737F: net/ipv4/xfrm*
5738F: net/ipv6/xfrm*
5739F: include/uapi/linux/xfrm.h
5740F: include/net/xfrm.h
5741
James Morris10e2ff12007-08-25 14:41:28 -07005742NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005743M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005744L: netdev@vger.kernel.org
5745S: Maintained
5746
John W. Linville29f8f632006-01-18 14:52:48 -08005747NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005748M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005749L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005750Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005751T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005752S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005753F: net/mac80211/
5754F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005755F: net/wireless/
5756F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005757F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005758F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005759F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005760F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005761
Joe Perches788873a2009-04-16 09:38:45 +00005762NETWORKING DRIVERS
5763L: netdev@vger.kernel.org
5764W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005765Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005766T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5767T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005768S: Odd Fixes
5769F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005770F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005771F: include/linux/netdevice.h
5772F: include/linux/arcdevice.h
5773F: include/linux/etherdevice.h
5774F: include/linux/fcdevice.h
5775F: include/linux/fddidevice.h
5776F: include/linux/hippidevice.h
5777F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005778F: include/uapi/linux/if_*
5779F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005780
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005781NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005782M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005783M: Sony Chacko <sony.chacko@qlogic.com>
5784M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005785L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005786W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005787S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005788F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005789
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005790NFC SUBSYSTEM
5791M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5792M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5793M: Samuel Ortiz <sameo@linux.intel.com>
5794L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005795L: linux-nfc@lists.01.org (moderated for non-subscribers)
Samuel Ortiz0293ba22013-06-24 14:39:35 +02005796S: Supported
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005797F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005798F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005799F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005800F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005801F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005803NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005804M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005805L: linux-nfs@vger.kernel.org
5806W: http://client.linux-nfs.org
5807T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005809F: fs/lockd/
5810F: fs/nfs/
5811F: fs/nfs_common/
5812F: net/sunrpc/
5813F: include/linux/lockd/
5814F: include/linux/nfs*
5815F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005816F: include/uapi/linux/nfs*
5817F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005819NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005820M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005821L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005822W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005823T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005824S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005825F: Documentation/filesystems/nilfs2.txt
5826F: fs/nilfs2/
5827F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005828
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005830M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005833F: Documentation/scsi/NinjaSCSI.txt
5834F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835
5836NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005837M: GOTO Masanori <gotom@debian.or.jp>
5838M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005841F: Documentation/scsi/NinjaSCSI.txt
5842F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
Jon Masonfce8a7b2012-11-16 19:27:12 -07005844NTB DRIVER
5845M: Jon Mason <jon.mason@intel.com>
5846S: Supported
5847F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005848F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005849F: include/linux/ntb.h
5850
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005852M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005854W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005855T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005857F: Documentation/filesystems/ntfs.txt
5858F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005860NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005861M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005862L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005864F: drivers/video/riva/
5865F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
Matthew Wilcox79461682012-11-10 08:54:53 -05005867NVM EXPRESS DRIVER
5868M: Matthew Wilcox <willy@linux.intel.com>
5869L: linux-nvme@lists.infradead.org
5870T: git git://git.infradead.org/users/willy/linux-nvme.git
5871S: Supported
Dan Carpenter5be37bf2013-05-13 18:00:42 +03005872F: drivers/block/nvme*
Matthew Wilcox79461682012-11-10 08:54:53 -05005873F: include/linux/nvme.h
5874
Tony Lindgrenf5525782009-05-28 13:23:53 -07005875OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005876M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005877L: linux-omap@vger.kernel.org
5878W: http://www.muru.com/linux/omap/
5879W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005880Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005881T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005882S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005883F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005884F: drivers/i2c/busses/i2c-omap.c
5885F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005886
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005887OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02005888M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005889M: Tony Lindgren <tony@atomide.com>
5890L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07005891L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005892S: Maintained
5893F: arch/arm/boot/dts/*omap*
5894F: arch/arm/boot/dts/*am3*
5895
Tony Lindgrenf5525782009-05-28 13:23:53 -07005896OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005898L: linux-omap@vger.kernel.org
5899S: Maintained
5900F: arch/arm/*omap*/*clock*
5901
5902OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005903M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005904L: linux-omap@vger.kernel.org
5905S: Maintained
5906F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005907F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005908
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005909OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5910M: Rajendra Nayak <rnayak@ti.com>
5911M: Paul Walmsley <paul@pwsan.com>
5912L: linux-omap@vger.kernel.org
5913S: Maintained
5914F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5915F: arch/arm/mach-omap2/powerdomain44xx.c
5916F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5917F: arch/arm/mach-omap2/clockdomain44xx.c
5918
Tony Lindgrenf5525782009-05-28 13:23:53 -07005919OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005920M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005921M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005922L: alsa-devel@alsa-project.org (subscribers-only)
5923L: linux-omap@vger.kernel.org
5924S: Maintained
5925F: sound/soc/omap/
5926
5927OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005928M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005929L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005930L: linux-omap@vger.kernel.org
5931S: Maintained
5932F: drivers/video/omap/
5933
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005934OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005935M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005936L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005937L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005938S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005939F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005940F: Documentation/arm/OMAP/DSS
5941
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005942OMAP HARDWARE SPINLOCK SUPPORT
5943M: Ohad Ben-Cohen <ohad@wizery.com>
5944L: linux-omap@vger.kernel.org
5945S: Maintained
5946F: drivers/hwspinlock/omap_hwspinlock.c
5947F: arch/arm/mach-omap2/hwspinlock.c
5948
Tony Lindgrenf5525782009-05-28 13:23:53 -07005949OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005950M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005951L: linux-omap@vger.kernel.org
5952S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005953F: drivers/mmc/host/omap.c
5954
5955OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305956M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305957L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005958L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305959S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005960F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005961
5962OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005964S: Maintained
5965F: drivers/char/hw_random/omap-rng.c
5966
Paul Walmsleyf400c822010-12-06 19:08:54 -07005967OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02005968M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07005969M: Paul Walmsley <paul@pwsan.com>
5970L: linux-omap@vger.kernel.org
5971S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005972F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005973
5974OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02005975M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07005976L: linux-omap@vger.kernel.org
5977S: Maintained
5978F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5979
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005980OMAP IMAGE SIGNAL PROCESSOR (ISP)
5981M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5982L: linux-media@vger.kernel.org
5983S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005984F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005985
Tony Lindgrenf5525782009-05-28 13:23:53 -07005986OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005987M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005988L: linux-usb@vger.kernel.org
5989L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005990T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005991S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005992F: drivers/usb/*/*omap*
5993F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005994
Kevin Hilman6d994712012-07-16 10:05:07 -07005995OMAP GPIO DRIVER
5996M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005997M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005998L: linux-omap@vger.kernel.org
5999S: Maintained
6000F: drivers/gpio/gpio-omap.c
6001
Bob Copeland0ad122d2008-07-25 19:45:18 -07006002OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006003M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07006004L: linux-karma-devel@lists.sourceforge.net
6005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006006F: Documentation/filesystems/omfs.txt
6007F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07006008
Harald Weltec1986ee2005-11-13 16:06:29 -08006009OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006010M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08006011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/char/pcmcia/cm4000_cs.c
6013F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006014F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08006015
Harald Welte77c44ab2005-11-13 16:06:26 -08006016OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006017M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08006018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006019F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08006020
Jonathan Corbet77d51402007-03-22 19:44:17 -03006021OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006022M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006023L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006024T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03006025S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006026F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03006027
Thomas Gleixner431bca72007-05-02 09:31:35 +02006028ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006029M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02006030L: linux-mtd@lists.infradead.org
6031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006032F: drivers/mtd/onenand/
6033F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02006034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006036M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037L: osst-users@lists.sourceforge.net
6038L: linux-scsi@vger.kernel.org
6039S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07006040F: Documentation/scsi/osst.txt
6041F: drivers/scsi/osst.*
6042F: drivers/scsi/osst_*.h
6043F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006045OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006046M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01006047L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006049F: Documentation/i2c/busses/i2c-ocores
6050F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006051
Grant Likely860c44c2009-10-26 16:49:49 -07006052OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01006053M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05006054M: Rob Herring <rob.herring@calxeda.com>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07006055L: devicetree@vger.kernel.org
Grant Likely860c44c2009-10-26 16:49:49 -07006056W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06006057T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07006058S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07006059F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07006060F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07006061F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07006062K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09006063K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07006064
Grant Likelyf8828202013-07-19 18:57:39 -07006065OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
6066M: Rob Herring <rob.herring@calxeda.com>
6067M: Pawel Moll <pawel.moll@arm.com>
6068M: Mark Rutland <mark.rutland@arm.com>
6069M: Stephen Warren <swarren@wwwdotorg.org>
6070M: Ian Campbell <ian.campbell@citrix.com>
6071L: devicetree@vger.kernel.org
6072S: Maintained
6073F: Documentation/devicetree/
6074F: arch/*/boot/dts/
6075F: include/dt-bindings/
6076
Jonas Bonn19f9d392011-06-04 22:00:38 +03006077OPENRISC ARCHITECTURE
6078M: Jonas Bonn <jonas@southpole.se>
6079W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02006080L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03006081S: Maintained
6082T: git git://openrisc.net/~jonas/linux
6083F: arch/openrisc
6084
Jesse Grossccb13522011-10-25 19:26:31 -07006085OPENVSWITCH
6086M: Jesse Gross <jesse@nicira.com>
6087L: dev@openvswitch.org
6088W: http://openvswitch.org
6089T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
6090S: Maintained
6091F: net/openvswitch/
6092
Clemens Ladischaf399172011-01-10 16:32:54 +01006093OPL4 DRIVER
6094M: Clemens Ladisch <clemens@ladisch.de>
6095L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6096T: git git://git.alsa-project.org/alsa-kernel.git
6097S: Maintained
6098F: sound/drivers/opl4/
6099
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01006101M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102L: oprofile-list@lists.sf.net
6103S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02006104F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07006105F: arch/*/oprofile/
6106F: drivers/oprofile/
6107F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006109ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006110M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08006111M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006112L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
6113W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07006114T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006116F: Documentation/filesystems/ocfs2.txt
6117F: Documentation/filesystems/dlmfs.txt
6118F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006119
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07006121L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006122W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07006123W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01006124S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006125F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006127OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006128M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07006129M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02006130L: osd-dev@open-osd.org
6131W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07006132T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02006133S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006134F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07006135F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006136F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02006137
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006138P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006139M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006140L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006141W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006143F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006144
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006145PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006146M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006147L: netdev@vger.kernel.org
6148S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006149F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006150
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006151PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006152M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006153L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006155F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006156
Steffen Klassert48fc2672010-08-13 10:10:46 -04006157PADATA PARALLEL EXECUTION MECHANISM
6158M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006159L: linux-crypto@vger.kernel.org
6160S: Maintained
6161F: kernel/padata.c
6162F: include/linux/padata.h
6163F: Documentation/padata.txt
6164
Harald Welte709ee532008-09-23 17:46:57 +02006165PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006166M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006167L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006169F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006170
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006171PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006172M: David Howells <dhowells@redhat.com>
6173M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006174L: linux-am33-list@redhat.com (moderated for non-subscribers)
6175W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006177F: Documentation/mn10300/
6178F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006179
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006181L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006182S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006183F: drivers/parport/
6184F: include/linux/parport*.h
6185F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006186F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006188PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006189M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006190M: Chris Wright <chrisw@sous-sol.org>
6191M: Alok Kataria <akataria@vmware.com>
6192M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006193L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006195F: Documentation/ia64/paravirt_ops.txt
6196F: arch/*/kernel/paravirt*
6197F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006198
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006200M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006201L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202W: http://www.torque.net/linux-pp.html
6203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006204F: Documentation/blockdev/paride.txt
6205F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206
6207PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006208M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006209M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006210L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006212Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006213T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00006214T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006216F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00006217F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07006218F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00006219F: drivers/char/agp/parisc-agp.c
6220F: drivers/input/serio/gscps2.c
6221F: drivers/parport/parport_gsc.*
6222F: drivers/tty/serial/8250/8250_gsc.c
6223F: drivers/video/sti*
6224F: drivers/video/console/sti*
6225F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226
Jim Cromie1662d322006-10-06 00:43:59 -07006227PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006228M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006229L: lm-sensors@lm-sensors.org
6230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006231F: Documentation/hwmon/pc87360
6232F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006233
6234PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006235M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006237F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006238
Jean Delvare1ad107f2010-08-14 21:09:00 +02006239PC87427 HARDWARE MONITORING DRIVER
6240M: Jean Delvare <khali@linux-fr.org>
6241L: lm-sensors@lm-sensors.org
6242S: Maintained
6243F: Documentation/hwmon/pc87427
6244F: drivers/hwmon/pc87427.c
6245
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006246PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006247M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006248S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006249F: drivers/leds/leds-pca9532.c
6250F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006251
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006252PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006253M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006254L: linux-i2c@vger.kernel.org
6255S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006256F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006257
Khalid Aziz3971dae2012-04-12 12:49:13 -07006258PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006259M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006260S: Maintained
6261F: drivers/firmware/pcdp.*
6262
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006263PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006264M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006265L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006267F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006268
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006270M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006271L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006272Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006273T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006275F: Documentation/PCI/
6276F: drivers/pci/
6277F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006280P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006281L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006282W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006283T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006285F: Documentation/pcmcia/
6286F: drivers/pcmcia/
6287F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
6289PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006290M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006291L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006293F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
Steffen Klassert48fc2672010-08-13 10:10:46 -04006295PCRYPT PARALLEL CRYPTO ENGINE
6296M: Steffen Klassert <steffen.klassert@secunet.com>
6297L: linux-crypto@vger.kernel.org
6298S: Maintained
6299F: crypto/pcrypt.c
6300F: include/crypto/pcrypt.h
6301
Tejun Heoe72df0b2010-12-10 17:02:49 +01006302PER-CPU MEMORY ALLOCATOR
6303M: Tejun Heo <tj@kernel.org>
6304M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006305T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6306S: Maintained
6307F: include/linux/percpu*.h
6308F: mm/percpu*.c
6309F: arch/*/include/asm/percpu.h
6310
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006311PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006312M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006314F: include/linux/delayacct.h
6315F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006316
Ingo Molnar57c0c152009-09-21 12:20:38 +02006317PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006318M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6319M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006320M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006321M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006322T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006323S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006324F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006325F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006326F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006327F: arch/*/kernel/perf_event*.c
6328F: arch/*/kernel/*/perf_event*.c
6329F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006330F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006331F: arch/*/kernel/perf_callchain.c
6332F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006333
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006334PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006335M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006336L: linux-abi-devel@lists.sourceforge.net
6337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006338F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006339F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006340
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006341PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006342M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006343S: Supported
6344F: Documentation/networking/phonet.txt
6345F: include/linux/phonet.h
6346F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006347F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006348F: net/phonet/
6349
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006351M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352L: linux-mtd@lists.infradead.org
6353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006354F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355
Bruno Prémontefdbb102012-07-30 21:39:03 +02006356PICOLCD HID DRIVER
6357M: Bruno Prémont <bonbons@linux-vserver.org>
6358L: linux-input@vger.kernel.org
6359S: Maintained
6360F: drivers/hid/hid-picolcd*
6361
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006362PICOXCELL SUPPORT
6363M: Jamie Iles <jamie@jamieiles.com>
6364L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6365T: git git://github.com/jamieiles/linux-2.6-ji.git
6366S: Supported
6367F: arch/arm/mach-picoxcell
6368F: drivers/*/picoxcell*
6369F: drivers/*/*/picoxcell*
6370
Linus Walleij2744e8a2011-05-02 20:50:54 +02006371PIN CONTROL SUBSYSTEM
6372M: Linus Walleij <linus.walleij@linaro.org>
6373S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006374F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006375F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006376
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006377PIN CONTROLLER - ATMEL AT91
6378M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6379L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6380S: Maintained
6381F: drivers/pinctrl/pinctrl-at91.c
6382
Doug Andersonb75e60d2013-06-16 15:17:46 -07006383PIN CONTROLLER - SAMSUNG
6384M: Tomasz Figa <t.figa@samsung.com>
6385M: Thomas Abraham <thomas.abraham@linaro.org>
6386L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6387L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6388S: Maintained
6389F: drivers/pinctrl/pinctrl-exynos.*
6390F: drivers/pinctrl/pinctrl-s3c*
6391F: drivers/pinctrl/pinctrl-samsung.*
6392
Viresh Kumardeda8282012-03-28 22:27:07 +05306393PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006394M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306395L: spear-devel@list.st.com
6396L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6397W: http://www.st.com/spear
6398S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006399F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306400
Peter Osterlund249a6772005-09-27 21:45:30 -07006401PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006402M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006404F: drivers/block/pktcdvd.c
6405F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006406F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006407
GuanXuetaob31d8272011-01-16 00:35:49 +08006408PKUNITY SOC DRIVERS
6409M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6410W: http://mprc.pku.edu.cn/~guanxuetao/linux
6411S: Maintained
6412T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6413F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006414F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006415F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006416F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006417
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006418PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006419M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006420L: lm-sensors@lm-sensors.org
6421W: http://www.lm-sensors.org/
6422W: http://www.roeck-us.net/linux/drivers/
6423T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6424S: Maintained
6425F: Documentation/hwmon/pmbus
6426F: drivers/hwmon/pmbus/
6427F: include/linux/i2c/pmbus.h
6428
Anil Ravindranath89a36812009-08-25 17:35:18 -07006429PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006430M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006431L: linux-scsi@vger.kernel.org
6432W: http://www.pmc-sierra.com/
6433S: Supported
6434F: drivers/scsi/pmcraid.*
6435
jack wangdbf9bfe2009-10-14 16:19:21 +08006436PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006437M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006438M: lindar_liu@usish.com
6439L: linux-scsi@vger.kernel.org
6440S: Supported
6441F: drivers/scsi/pm8001/
6442
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006444M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006445T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006447F: fs/timerfd.c
6448F: include/linux/timer*
6449F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450
Anton Vorontsov3be86142007-07-15 04:43:36 +04006451POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07006452M: Anton Vorontsov <anton@enomsg.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006453M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006454T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006456F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006457F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006458
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006460M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006461M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006463F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464
Vitaly Wool999445d2007-01-04 13:07:03 +01006465PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006466M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006467L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006469F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006470
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006472M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473L: linux-ppp@vger.kernel.org
6474S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006475F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
6477PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006478M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006480F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006481F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482
6483PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006484M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006486F: drivers/net/ppp/pppoe.c
6487F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488
James Chapmana6d23702007-06-27 15:53:17 -07006489PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006490M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006491S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006492F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006493F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006494F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006495
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006496PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006497M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006498W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6499L: linuxpps@ml.enneenne.com (subscribers-only)
6500S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006501F: Documentation/pps/
6502F: drivers/pps/
6503F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006504
Harry Wei71a6d0a2011-05-11 15:13:33 -07006505PPTP DRIVER
6506M: Dmitry Kozlov <xeb@mail.ru>
6507L: netdev@vger.kernel.org
6508S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006509F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006510W: http://sourceforge.net/projects/accel-pptp
6511
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006513M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514L: kpreempt-tech@lists.sourceforge.net
6515W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006517F: Documentation/preempt-locking.txt
6518F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519
6520PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006521M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006522L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006523W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006524S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006525F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006527PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006528M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006529L: linux-ide@vger.kernel.org
6530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006531F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006532
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006533PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006534M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006535L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006536L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006537S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006538F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006539
Geoff Levandf58a9d12006-11-23 00:46:51 +01006540PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006541M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006542L: linuxppc-dev@lists.ozlabs.org
6543L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006545F: arch/powerpc/boot/ps3*
6546F: arch/powerpc/include/asm/lv1call.h
6547F: arch/powerpc/include/asm/ps3*.h
6548F: arch/powerpc/platforms/ps3/
6549F: drivers/*/ps3*
6550F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006551F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006552F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006553F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006554
Jim Pariscffb4add2009-01-06 11:32:10 +00006555PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006556M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006557L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006558S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006559F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006560
Anton Vorontsov8defe592012-08-03 18:07:20 -07006561PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07006562M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07006563M: Colin Cross <ccross@android.com>
6564M: Kees Cook <keescook@chromium.org>
6565M: Tony Luck <tony.luck@intel.com>
6566S: Maintained
6567T: git git://git.infradead.org/users/cbou/linux-pstore.git
6568F: fs/pstore/
6569F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006570F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006571F: drivers/acpi/apei/erst.c
6572
Richard Cochran7fbc4152012-03-10 01:55:53 +00006573PTP HARDWARE CLOCK SUPPORT
6574M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006575L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006576S: Maintained
6577W: http://linuxptp.sourceforge.net/
6578F: Documentation/ABI/testing/sysfs-ptp
6579F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006580F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006581F: drivers/net/phy/dp83640*
6582F: drivers/ptp/*
6583F: include/linux/ptp_cl*
6584
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006585PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006586M: Roland McGrath <roland@redhat.com>
6587M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006588S: Maintained
6589F: include/asm-generic/syscall.h
6590F: include/linux/ptrace.h
6591F: include/linux/regset.h
6592F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006593F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006594F: kernel/ptrace.c
6595
Michael Krufky83202042006-07-03 00:24:18 -07006596PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006597M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006598L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006599L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006600W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006601T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006603F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006604F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006605
Hans de Goede39532e62012-11-04 17:05:59 -03006606PWC WEBCAM DRIVER
6607M: Hans de Goede <hdegoede@redhat.com>
6608L: linux-media@vger.kernel.org
6609T: git git://linuxtv.org/media_tree.git
6610S: Maintained
6611F: drivers/media/usb/pwc/*
6612
Thierry Reding200efed2012-03-27 13:16:18 +02006613PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02006614M: Thierry Reding <thierry.reding@gmail.com>
6615L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006616S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006617W: http://gitorious.org/linux-pwm
6618T: git git://gitorious.org/linux-pwm/linux-pwm.git
6619F: Documentation/pwm.txt
6620F: Documentation/devicetree/bindings/pwm/
6621F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006622F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006623F: drivers/video/backlight/pwm_bl.c
6624F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006625
Eric Miao30ec2612008-06-12 15:21:41 -07006626PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006627M: Eric Miao <eric.y.miao@gmail.com>
6628M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006629M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006630L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006631T: git git://github.com/hzhuang1/linux.git
6632T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006634F: arch/arm/mach-pxa/
6635F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006636F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006637F: drivers/usb/gadget/pxa2*
6638F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006639F: sound/arm/pxa*
6640F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006642MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006643M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006644M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006645L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006646T: git git://github.com/hzhuang1/linux.git
6647T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006648S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006649F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006650
Pierre Ossman272f1332007-05-14 21:25:26 +02006651PXA MMCI DRIVER
6652S: Orphan
6653
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006654PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006655M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006656L: rtc-linux@googlegroups.com
6657S: Maintained
6658
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006659QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006660M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006661L: linux-rdma@vger.kernel.org
6662S: Supported
6663F: drivers/infiniband/hw/qib/
6664
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006665QLOGIC QLA1280 SCSI DRIVER
6666M: Michael Reed <mdr@sgi.com>
6667L: linux-scsi@vger.kernel.org
6668S: Maintained
6669F: drivers/scsi/qla1280.[ch]
6670
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006672M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006673M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674L: linux-scsi@vger.kernel.org
6675S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006676F: Documentation/scsi/LICENSE.qla2xxx
6677F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678
Ravi Anand883c98f2010-04-28 11:45:49 +05306679QLOGIC QLA4XXX iSCSI DRIVER
6680M: Ravi Anand <ravi.anand@qlogic.com>
6681M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6682M: iscsi-driver@qlogic.com
6683L: linux-scsi@vger.kernel.org
6684S: Supported
6685F: drivers/scsi/qla4xxx/
6686
Ron Mercer5a4faa82006-07-25 00:40:21 -07006687QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006688M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006689M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07006690M: linux-driver@qlogic.com
6691L: netdev@vger.kernel.org
6692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006693F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006694F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07006695
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006696QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Jitendra Kalsaria7ad031e2013-07-10 14:00:22 -04006697M: Himanshu Madhani <himanshu.madhani@qlogic.com>
Sony Chacko195ca382013-03-06 13:03:25 +00006698M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6699M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006700M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006701M: Sony Chacko <sony.chacko@qlogic.com>
Jitendra Kalsaria7ad031e2013-07-10 14:00:22 -04006702M: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006703M: linux-driver@qlogic.com
6704L: netdev@vger.kernel.org
6705S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006706F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006707
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006708QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006709M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006710M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006711M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006712M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006713L: netdev@vger.kernel.org
6714S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006715F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006716
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006718M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719W: http://www.alarsen.net/linux/qnx4fs/
6720S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006721F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006722F: include/uapi/linux/qnx4_fs.h
6723F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724
Antti Palosaari91952bc2012-10-01 12:28:46 -03006725QT1010 MEDIA DRIVER
6726M: Antti Palosaari <crope@iki.fi>
6727L: linux-media@vger.kernel.org
6728W: http://linuxtv.org/
6729W: http://palosaari.fi/linux/
6730Q: http://patchwork.linuxtv.org/project/linux-media/list/
6731T: git git://linuxtv.org/anttip/media_tree.git
6732S: Maintained
6733F: drivers/media/tuners/qt1010*
6734
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03006735QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
6736M: Kalle Valo <kvalo@qca.qualcomm.com>
6737L: ath10k@lists.infradead.org
6738W: http://wireless.kernel.org/en/users/Drivers/ath10k
6739T: git git://github.com/kvalo/ath.git
6740S: Supported
6741F: drivers/net/wireless/ath/ath10k/
6742
Richard Kuo4f4567c2011-10-31 18:56:38 -05006743QUALCOMM HEXAGON ARCHITECTURE
6744M: Richard Kuo <rkuo@codeaurora.org>
6745L: linux-hexagon@vger.kernel.org
6746S: Supported
6747F: arch/hexagon/
6748
Hans Verkuil35e35402012-11-23 07:02:29 -03006749QUICKCAM PARALLEL PORT WEBCAMS
6750M: Hans Verkuil <hverkuil@xs4all.nl>
6751L: linux-media@vger.kernel.org
6752T: git git://linuxtv.org/media_tree.git
6753W: http://linuxtv.org
6754S: Odd Fixes
6755F: drivers/media/parport/*-qcam*
6756
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006757RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006758M: Yehuda Sadeh <yehuda@inktank.com>
6759M: Sage Weil <sage@inktank.com>
6760M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006761M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006762W: http://ceph.com/
6763T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006764S: Supported
6765F: drivers/block/rbd.c
6766F: drivers/block/rbd_types.h
6767
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006769M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006770L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006772F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006773F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
Hans de Goedec6c9b342012-11-04 17:03:58 -03006775RADIOSHARK RADIO DRIVER
6776M: Hans de Goede <hdegoede@redhat.com>
6777L: linux-media@vger.kernel.org
6778T: git git://linuxtv.org/media_tree.git
6779S: Maintained
6780F: drivers/media/radio/radio-shark.c
6781
6782RADIOSHARK2 RADIO DRIVER
6783M: Hans de Goede <hdegoede@redhat.com>
6784L: linux-media@vger.kernel.org
6785T: git git://linuxtv.org/media_tree.git
6786S: Maintained
6787F: drivers/media/radio/radio-shark2.c
6788F: drivers/media/radio/radio-tea5777.c
6789
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006791M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006792L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006794F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795
Randy Dunlape7839f22008-10-12 16:11:45 -07006796RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006797P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006798M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006799M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006800M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006801L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006802L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006803W: http://rt2x00.serialmonkey.com/
6804S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006805T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006806F: drivers/net/wireless/rt2x00/
6807
Nick Piggin9db55792008-02-08 04:19:49 -08006808RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006809M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006811F: Documentation/blockdev/ramdisk.txt
6812F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006813
Matt Mackall9e95ce22005-04-16 15:25:56 -07006814RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006815M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006817F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006818
Matt Porter394b7012005-11-07 01:00:15 -08006819RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006820M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006821M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006823F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006824
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006825RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006826L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006827S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006828F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006829
6830RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006831M: Josh Triplett <josh@freedesktop.org>
6832M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006833S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006834T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006835F: Documentation/RCU/torture.txt
6836F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006837
Florian Fainellic1f766b2008-02-06 22:39:44 +01006838RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006839M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006840S: Maintained
6841
Florian Fainellidb17f392007-12-19 11:30:30 +01006842RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006843M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006844L: netdev@vger.kernel.org
6845S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006846F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006847
Andy Grovera09ed662009-02-24 15:30:41 +00006848RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006849M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006850L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006851S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006852F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006853
Josh Triplett595182b2006-10-04 02:17:21 -07006854READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006855M: Dipankar Sarma <dipankar@in.ibm.com>
6856M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006857W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006858S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006859T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006860F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006861X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006862F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006863F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006864X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006865
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006866REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006867M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006868L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006869Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006871F: Documentation/rtc.txt
6872F: drivers/rtc/
6873F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006874F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006875
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006877L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006879F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880
Mark Brownb83a3132011-05-11 19:59:58 +02006881REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006882M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006883T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6884S: Supported
6885F: drivers/base/regmap/
6886F: include/linux/regmap.h
6887
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006888REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6889M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006890T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006891S: Maintained
6892F: drivers/remoteproc/
6893F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006894F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006895
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03006896REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
6897M: Ohad Ben-Cohen <ohad@wizery.com>
6898T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
6899S: Maintained
6900F: drivers/rpmsg/
6901F: Documentation/rpmsg.txt
6902F: include/linux/rpmsg.h
6903
Ivo van Doorne08976452008-04-12 19:23:55 +02006904RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006905M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006906L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006907W: http://wireless.kernel.org/
6908T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6909T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006910S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006911F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006912F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006913
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006914RICOH SMARTMEDIA/XD DRIVER
6915M: Maxim Levitsky <maximlevitsky@gmail.com>
6916S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006917F: drivers/mtd/nand/r852.c
6918F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006919
Maxim Levitsky92634122011-03-25 01:56:59 -07006920RICOH R5C592 MEMORYSTICK DRIVER
6921M: Maxim Levitsky <maximlevitsky@gmail.com>
6922S: Maintained
6923F: drivers/memstick/host/r592.*
6924
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925ROCKETPORT DRIVER
6926P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927W: http://www.comtrol.com
6928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006929F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006930F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931
6932ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006933M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006935W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006937F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006938F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006939F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940
Antti Palosaari91952bc2012-10-01 12:28:46 -03006941RTL2830 MEDIA DRIVER
6942M: Antti Palosaari <crope@iki.fi>
6943L: linux-media@vger.kernel.org
6944W: http://linuxtv.org/
6945W: http://palosaari.fi/linux/
6946Q: http://patchwork.linuxtv.org/project/linux-media/list/
6947T: git git://linuxtv.org/anttip/media_tree.git
6948S: Maintained
6949F: drivers/media/dvb-frontends/rtl2830*
6950
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006951RTL2832 MEDIA DRIVER
6952M: Antti Palosaari <crope@iki.fi>
6953L: linux-media@vger.kernel.org
6954W: http://linuxtv.org/
6955W: http://palosaari.fi/linux/
6956Q: http://patchwork.linuxtv.org/project/linux-media/list/
6957T: git git://linuxtv.org/anttip/media_tree.git
6958S: Maintained
6959F: drivers/media/dvb-frontends/rtl2832*
6960
Larry Finger59840482008-11-12 17:13:09 -06006961RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006962M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006963L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006964W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006965T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006966S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006967F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006968
Larry Finger59840482008-11-12 17:13:09 -06006969RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006970M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006971M: Hin-Tak Leung <htl10@users.sourceforge.net>
6972M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006973L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006974W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006975T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006976S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006977F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006978
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006979RTL8192CE WIRELESS DRIVER
6980M: Larry Finger <Larry.Finger@lwfinger.net>
6981M: Chaoming Li <chaoming_li@realsil.com.cn>
6982L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006983W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006984T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6985S: Maintained
6986F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006987F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006988
6989S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006990M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006991L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006993F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006994
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995S390
Joe Perches8b58be82009-07-29 15:04:30 -07006996M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6997M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006999L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08007000W: http://www.ibm.com/developerworks/linux/linux390/
7001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007002F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01007003F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08007004F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02007005F: Documentation/s390/
7006F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08007007
7008S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007009M: Ursula Braun <ursula.braun@de.ibm.com>
7010M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08007011M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01007012L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08007013W: http://www.ibm.com/developerworks/linux/linux390/
7014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007015F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08007016
Felix Beckfeed9b62009-03-26 15:24:23 +01007017S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01007018M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01007019M: linux390@de.ibm.com
7020L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01007021W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01007022S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007023F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01007024
Heiko Carstens5238da42006-02-11 17:56:01 -08007025S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01007026M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08007027M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01007028L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08007029W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007031F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032
Ursula Braundd96df22007-09-19 13:09:02 +02007033S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007034M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02007035M: linux390@de.ibm.com
7036L: linux-s390@vger.kernel.org
7037W: http://www.ibm.com/developerworks/linux/linux390/
7038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007039F: drivers/s390/net/*iucv*
7040F: include/net/iucv/
7041F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02007042
Ben Dooks4dde7f72008-06-30 22:40:38 +01007043S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07007044M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07007045L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01007046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007047F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01007048
Hans Verkuil1f15a222012-11-23 07:45:29 -03007049SAA6588 RDS RECEIVER DRIVER
7050M: Hans Verkuil <hverkuil@xs4all.nl>
7051L: linux-media@vger.kernel.org
7052T: git git://linuxtv.org/media_tree.git
7053W: http://linuxtv.org
7054S: Odd Fixes
7055F: drivers/media/i2c/saa6588*
7056
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007057SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03007058M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007059L: linux-media@vger.kernel.org
7060W: http://linuxtv.org
7061T: git git://linuxtv.org/media_tree.git
7062S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03007063F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007064F: drivers/media/pci/saa7134/
7065
Linus Torvalds1da177e2005-04-16 15:20:36 -07007066SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03007067M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007068L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007069T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007071F: drivers/media/common/saa7146/
7072F: drivers/media/pci/saa7146/
7073F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074
Corentin Chary92304a42011-12-05 12:38:35 -05007075SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08007076M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05007077L: platform-driver-x86@vger.kernel.org
7078S: Maintained
7079F: drivers/platform/x86/samsung-laptop.c
7080
Mark Brown4a109cc2010-09-24 10:50:46 +01007081SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09007082M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01007083L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7084S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00007085F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01007086
Jingoo Han0d89a282011-12-19 11:09:35 +09007087SAMSUNG FRAMEBUFFER DRIVER
7088M: Jingoo Han <jg1.han@samsung.com>
7089L: linux-fbdev@vger.kernel.org
7090S: Maintained
7091F: drivers/video/s3c-fb.c
7092
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09007093SAMSUNG MULTIFUNCTION DEVICE DRIVERS
7094M: Sangbeom Kim <sbkim73@samsung.com>
7095L: linux-kernel@vger.kernel.org
7096S: Supported
7097F: drivers/mfd/sec*.c
7098F: drivers/regulator/s2m*.c
7099F: drivers/regulator/s5m*.c
7100F: drivers/rtc/rtc-sec.c
7101F: include/linux/mfd/samsung/
7102
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03007103SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
7104M: Kyungmin Park <kyungmin.park@samsung.com>
7105M: Sylwester Nawrocki <s.nawrocki@samsung.com>
7106L: linux-media@vger.kernel.org
7107Q: https://patchwork.linuxtv.org/project/linux-media/list/
7108S: Supported
7109F: drivers/media/platform/exynos4-is/
7110F: include/media/s5p_fimc.h
7111
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03007112SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
7113M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
7114L: linux-media@vger.kernel.org
7115L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7116S: Maintained
7117F: drivers/media/platform/s3c-camif/
7118F: include/media/s3c_camif.h
7119
Andrzej Hajdab84ef242013-01-31 07:03:05 -03007120SAMSUNG S5C73M3 CAMERA DRIVER
7121M: Kyungmin Park <kyungmin.park@samsung.com>
7122M: Andrzej Hajda <a.hajda@samsung.com>
7123L: linux-media@vger.kernel.org
7124S: Supported
7125F: drivers/media/i2c/s5c73m3/*
7126
Alan Coxca749e22011-03-18 13:56:14 +00007127SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08007128M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00007129L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08007130S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00007131F: drivers/tty/serial
7132
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307133SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007134M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307135S: Maintained
7136F: include/linux/dw_dmac.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03007137F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307138
Seungwon Jeonf9e37132013-01-17 21:33:23 +09007139SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
7140M: Seungwon Jeon <tgih.jun@samsung.com>
7141M: Jaehoon Chung <jh80.chung@samsung.com>
7142L: linux-mmc@vger.kernel.org
7143S: Maintained
7144F: include/linux/mmc/dw_mmc.h
7145F: drivers/mmc/host/dw_mmc*
7146
Thomas Gleixner88606e82010-12-14 21:37:13 +01007147TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05007148M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01007149M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007150T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01007151S: Supported
7152F: include/linux/clocksource.h
7153F: include/linux/time.h
7154F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007155F: include/uapi/linux/time.h
7156F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01007157F: kernel/time/clocksource.c
7158F: kernel/time/time*.c
7159F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02007160F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01007161
Huang Shijie5b3f03f2010-02-02 04:07:47 -03007162TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03007163M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03007164M: Hans Verkuil <hverkuil@xs4all.nl>
7165S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007166F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03007167
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007169M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007171F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172
7173SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01007174M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007175M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007176T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09007178F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07007179F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007180F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181
Chen Liqin6bcf6732009-06-13 15:24:33 +08007182SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07007183M: Chen Liqin <liqin.chen@sunplusct.com>
7184M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08007185W: http://www.sunplusct.com
7186S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07007187F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08007188
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007190M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007191L: linux-scsi@vger.kernel.org
7192W: http://www.kernel.dk
7193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007194F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007195
Roland Dreierfb50a832010-10-07 09:54:53 -07007196SCSI RDMA PROTOCOL (SRP) INITIATOR
7197M: David Dillow <dillowda@ornl.gov>
7198L: linux-rdma@vger.kernel.org
7199S: Supported
7200W: http://www.openfabrics.org
7201Q: http://patchwork.kernel.org/project/linux-rdma/list/
7202T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7203F: drivers/infiniband/ulp/srp/
7204F: include/scsi/srp.h
7205
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007207M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208L: linux-scsi@vger.kernel.org
7209W: http://www.torque.net/sg
7210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007211F: drivers/scsi/sg.c
7212F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213
7214SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007215M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007217T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7218T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7219T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007221F: drivers/scsi/
7222F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007223
7224SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007225M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007226L: linux-scsi@vger.kernel.org
7227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007228F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07007229F: drivers/scsi/st.*
7230F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007231
7232SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007233M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007234M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007235L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007236W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007238F: Documentation/networking/sctp.txt
7239F: include/linux/sctp.h
Daniel Borkmann4d58c022013-07-23 14:51:48 +02007240F: include/uapi/linux/sctp.h
Joe Perches679655d2009-04-07 20:44:32 -07007241F: include/net/sctp/
7242F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
7244SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007245M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007246S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007247F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007248F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007249F: drivers/watchdog/scx200_wdt.c
7250F: drivers/i2c/busses/scx200*
7251F: drivers/mtd/maps/scx200_docflash.c
7252F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007253
7254SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007255M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007257F: drivers/char/scx200_gpio.c
7258F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007259
7260SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007261M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007263F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264
Sascha Sommer6a369132008-07-15 14:21:29 +02007265SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007266M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007267L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007269F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007270
Randy Dunlape7839f22008-10-12 16:11:45 -07007271SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007272M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007273L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007274T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7275S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007276F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007277F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007278
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007279SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07007280M: Anton Vorontsov <anton@enomsg.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007281L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007282L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007284F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285
Ben Dooks0d1bb412009-06-14 13:52:37 +01007286SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007287M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007288L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007289S: Maintained
7290F: drivers/mmc/host/sdhci-s3c.c
7291
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007292SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007293M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007294L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007295L: linux-mmc@vger.kernel.org
7296S: Maintained
7297F: drivers/mmc/host/sdhci-spear.c
7298
James Morris8711cca2008-12-04 03:19:45 +11007299SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007300M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007301L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007302T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007303W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007304S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007305F: security/
James Morris8711cca2008-12-04 03:19:45 +11007306
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007308M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309S: Supported
7310
7311SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007312M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007313M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007314M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007315L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007316W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007317T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007319F: include/linux/selinux*
7320F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007321F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322
John Johansenc1c124e2010-07-29 14:48:09 -07007323APPARMOR SECURITY MODULE
7324M: John Johansen <john.johansen@canonical.com>
7325L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7326W: apparmor.wiki.kernel.org
7327T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7328S: Supported
7329F: security/apparmor/
7330
Jiri Slabycef2cf02007-05-08 00:31:45 -07007331SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007332M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007334F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007335F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007336
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007337SERIAL ATA (SATA) SUBSYSTEM
Tejun Heo3d9b9352013-05-07 10:09:27 -07007338M: Tejun Heo <tj@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339L: linux-ide@vger.kernel.org
Tejun Heo3d9b9352013-05-07 10:09:27 -07007340T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007342F: drivers/ata/
7343F: include/linux/ata.h
7344F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307346SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007347M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007348L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007349W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007350S: Supported
7351F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307352
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007353SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007354M: Sathya Perla <sathya.perla@emulex.com>
7355M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7356M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007357L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007358W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007359S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007360F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007361
Ben Hutchings8ceee662008-04-27 12:55:59 +01007362SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007363M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007364M: Ben Hutchings <bhutchings@solarflare.com>
7365L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007366S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007367F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007368
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007369SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007370M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007372F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007373
7374SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007375M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007376L: linux-ia64@vger.kernel.org
7377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007378F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007379F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007380F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007381
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007383M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384L: linux-visws-devel@lists.sf.net
7385W: http://linux-visws.sf.net
7386S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007387F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388
Jack Steiner75312612008-08-15 00:40:42 -07007389SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05007390M: Cliff Whickman <cpw@sgi.com>
7391M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07007392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007393F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007394
Hans Verkuil49cc6292012-11-30 07:13:29 -03007395SI470X FM RADIO RECEIVER I2C DRIVER
7396M: Hans Verkuil <hverkuil@xs4all.nl>
7397L: linux-media@vger.kernel.org
7398T: git git://linuxtv.org/media_tree.git
7399W: http://linuxtv.org
7400S: Odd Fixes
7401F: drivers/media/radio/si470x/radio-si470x-i2c.c
7402
7403SI470X FM RADIO RECEIVER USB DRIVER
7404M: Hans Verkuil <hverkuil@xs4all.nl>
7405L: linux-media@vger.kernel.org
7406T: git git://linuxtv.org/media_tree.git
7407W: http://linuxtv.org
7408S: Maintained
7409F: drivers/media/radio/si470x/radio-si470x-common.c
7410F: drivers/media/radio/si470x/radio-si470x.h
7411F: drivers/media/radio/si470x/radio-si470x-usb.c
7412
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007413SI4713 FM RADIO TRANSMITTER I2C DRIVER
7414M: Eduardo Valentin <edubezval@gmail.com>
7415L: linux-media@vger.kernel.org
7416T: git git://linuxtv.org/media_tree.git
7417W: http://linuxtv.org
7418S: Odd Fixes
7419F: drivers/media/radio/si4713-i2c.?
7420
7421SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7422M: Eduardo Valentin <edubezval@gmail.com>
7423L: linux-media@vger.kernel.org
7424T: git git://linuxtv.org/media_tree.git
7425W: http://linuxtv.org
7426S: Odd Fixes
7427F: drivers/media/radio/radio-si4713.h
7428
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007429SIANO DVB DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03007430M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007431L: linux-media@vger.kernel.org
7432W: http://linuxtv.org
7433T: git git://linuxtv.org/media_tree.git
7434S: Odd fixes
7435F: drivers/media/common/siano/
7436F: drivers/media/dvb/siano/
7437F: drivers/media/usb/siano/
7438F: drivers/media/mmc/siano
7439
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007440SH_VEU V4L2 MEM2MEM DRIVER
7441M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7442L: linux-media@vger.kernel.org
7443S: Maintained
7444F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007445
7446SH_VOU V4L2 OUTPUT DRIVER
7447M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7448L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007449S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007450F: drivers/media/platform/sh_vou.c
7451F: include/media/sh_vou.h
7452
Len Brown6349d992009-08-14 15:07:14 -04007453SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007454M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007455L: sfi-devel@simplefirmware.org
7456W: http://simplefirmware.org/
7457T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007458S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007459F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007460F: drivers/sfi/
7461F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007462
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463SIMTEC EB110ATX (Chalice CATS)
7464P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007465P: Vincent Sanders <vince@simtec.co.uk>
7466M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467W: http://www.simtec.co.uk/products/EB110ATX/
7468S: Supported
7469
7470SIMTEC EB2410ITX (BAST)
7471P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007472P: Vincent Sanders <vince@simtec.co.uk>
7473M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474W: http://www.simtec.co.uk/products/EB2410ITX/
7475S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007476F: arch/arm/mach-s3c2410/mach-bast.c
7477F: arch/arm/mach-s3c2410/bast-ide.c
7478F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007480TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007481M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007482M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307483L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307484T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007485Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007486S: Supported
7487F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007488F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007489
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007490TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007491M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007492L: linux-media@vger.kernel.org
7493L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7494W: http://linuxtv.org/
7495Q: http://patchwork.linuxtv.org/project/linux-media/list/
7496T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007497S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007498F: drivers/media/platform/davinci/
7499F: include/media/davinci/
7500
Francois Romieu92aab3c2005-07-30 13:11:18 +02007501SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007502M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007503L: netdev@vger.kernel.org
7504S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007505F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007506
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007508M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007510L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007512F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513
7514SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007515M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007518F: Documentation/fb/sisfb.txt
7519F: drivers/video/sis/
7520F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521
7522SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007523M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524W: http://www.winischhofer.at/linuxsisusbvga.shtml
7525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007526F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527
Christoph Lameter415ad262007-07-26 10:40:56 -07007528SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007529M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007530M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007531M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007532L: linux-mm@kvack.org
7533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007534F: include/linux/sl?b*.h
7535F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007536
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007537SLEEPABLE READ-COPY UPDATE (SRCU)
7538M: Lai Jiangshan <laijs@cn.fujitsu.com>
7539M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7540W: http://www.rdrop.com/users/paulmck/RCU/
7541S: Supported
7542T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7543F: include/linux/srcu*
7544F: kernel/srcu*
7545
Casey Schaufler66372842012-05-23 18:34:52 -07007546SMACK SECURITY MODULE
7547M: Casey Schaufler <casey@schaufler-ca.com>
7548L: linux-security-module@vger.kernel.org
7549W: http://schaufler-ca.com
7550T: git git://git.gitorious.org/smack-next/kernel.git
7551S: Maintained
7552F: Documentation/security/Smack.txt
7553F: security/smack/
7554
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007556M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007557S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007558F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
Sakari Ailuse8e31622012-11-12 18:14:39 -03007560SMIA AND SMIA++ IMAGE SENSOR DRIVER
7561M: Sakari Ailus <sakari.ailus@iki.fi>
7562L: linux-media@vger.kernel.org
7563S: Maintained
7564F: drivers/media/i2c/smiapp
7565F: include/media/smiapp.h
7566F: drivers/media/i2c/smiapp-pll.c
7567F: drivers/media/i2c/smiapp-pll.h
7568
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007569SMM665 HARDWARE MONITOR DRIVER
7570M: Guenter Roeck <linux@roeck-us.net>
7571L: lm-sensors@lm-sensors.org
7572S: Maintained
7573F: Documentation/hwmon/smm665
7574F: drivers/hwmon/smm665.c
7575
Steve Glendinning9df73052010-08-14 21:08:54 +02007576SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007577M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007578L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007579S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007580F: Documentation/hwmon/emc2103
7581F: drivers/hwmon/emc2103.c
7582
Hans de Goedea98d5062011-03-21 17:59:36 +01007583SMSC SCH5627 HARDWARE MONITOR DRIVER
7584M: Hans de Goede <hdegoede@redhat.com>
7585L: lm-sensors@lm-sensors.org
7586S: Supported
7587F: Documentation/hwmon/sch5627
7588F: drivers/hwmon/sch5627.c
7589
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007590SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007591M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007592L: lm-sensors@lm-sensors.org
7593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007594F: Documentation/hwmon/smsc47b397
7595F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007596
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007597SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007598M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007599L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007601F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007602F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007603
Steve Glendinning2cb37722008-12-11 20:54:30 -08007604SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007605M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007606L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007607S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007608F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007609
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007610SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007611M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007612L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007613S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007614F: drivers/video/smscufx.c
7615
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007616SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007617M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007618L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007619T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007620S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007621F: include/media/soc*
7622F: drivers/media/i2c/soc_camera/
7623F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007624
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007625SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007626M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007628F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007629
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007631M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007634F: drivers/md/
7635F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007636F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007639M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007640L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007641S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007642F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643
Michael Buesch61e115a2007-09-18 15:12:50 -04007644SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007645M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007646L: netdev@vger.kernel.org
7647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007648F: drivers/ssb/
7649F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007650
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007652M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007653L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007654W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007656F: Documentation/laptops/sony-laptop.txt
7657F: drivers/char/sonypi.c
7658F: drivers/platform/x86/sony-laptop.c
7659F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660
Alex Dubovbaf85322008-02-09 10:20:54 -08007661SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007662M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007663W: http://tifmxx.berlios.de/
7664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007665F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007666
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007668M: Jaroslav Kysela <perex@perex.cz>
7669M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007670L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007671W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007672T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007673T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007675F: Documentation/sound/
7676F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007677F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007678F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679
Mark Brownbd903bd2008-11-19 19:16:05 +00007680SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007681M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007682M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007683T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007684L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007685W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007687F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007688F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007689
Sam Ravnborg473321f2009-01-04 15:47:49 -08007690SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007691M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007693Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007694T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7695T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007697F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007698F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699
David S. Miller6404fcc2010-03-16 01:00:17 -07007700SPARC SERIAL DRIVERS
7701M: "David S. Miller" <davem@davemloft.net>
7702L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007703T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7704T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007705S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007706F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007707F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007708F: drivers/tty/serial/sunhv.c
7709F: drivers/tty/serial/sunsab.c
7710F: drivers/tty/serial/sunsab.h
7711F: drivers/tty/serial/sunsu.c
7712F: drivers/tty/serial/sunzilog.c
7713F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007714
Christopher Li389325b2012-04-05 14:25:14 -07007715SPARSE CHECKER
7716M: "Christopher Li" <sparse@chrisli.org>
7717L: linux-sparse@vger.kernel.org
7718W: https://sparse.wiki.kernel.org/
7719T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7720T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7721S: Maintained
7722F: include/linux/compiler.h
7723
viresh kumarfc0c1952010-04-01 12:31:21 +01007724SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007725M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307726M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007727L: spear-devel@list.st.com
7728L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007729W: http://www.st.com/spear
7730S: Maintained
7731F: arch/arm/plat-spear/
7732
Viresh Kumar71e09a92012-04-20 22:39:48 +05307733SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007734M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307735M: Shiraz Hashim <shiraz.hashim@st.com>
7736L: spear-devel@list.st.com
7737L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7738W: http://www.st.com/spear
7739S: Maintained
7740F: arch/arm/mach-spear13xx/
7741
viresh kumarfc0c1952010-04-01 12:31:21 +01007742SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007743M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307744M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007745L: spear-devel@list.st.com
7746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007747W: http://www.st.com/spear
7748S: Maintained
7749F: arch/arm/mach-spear3xx/
7750
7751SPEAR6XX MACHINE SUPPORT
7752M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307753M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007754M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007755L: spear-devel@list.st.com
7756L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007757W: http://www.st.com/spear
7758S: Maintained
7759F: arch/arm/mach-spear6xx/
7760
7761SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007762M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007763L: spear-devel@list.st.com
7764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007765W: http://www.st.com/spear
7766S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307767F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007768
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007769SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007770M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +01007771L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +01007772T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007773Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007775F: Documentation/spi/
7776F: drivers/spi/
7777F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007778F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007779
Jim Lewis2752e402006-09-29 02:01:19 -07007780SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007781M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7782M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007783L: netdev@vger.kernel.org
7784S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007785F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007786F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007787
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007788SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007789M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007790L: linuxppc-dev@lists.ozlabs.org
7791L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007792W: http://www.ibm.com/developerworks/power/cell/
7793S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007794F: Documentation/filesystems/spufs.txt
7795F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007796
Phillip Lougherfc555842009-01-05 08:46:29 +00007797SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007798M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007799L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7800W: http://squashfs.org.uk
7801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007802F: Documentation/filesystems/squashfs.txt
7803F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007804
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007806M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809
Linus Torvalds26e9a392008-10-17 09:50:12 -07007810STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007811M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007812L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007813S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -07007814F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007815
Linus Torvalds26e9a392008-10-17 09:50:12 -07007816STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007817M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007818T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007819L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007821F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007822
Joe Perchesc8c8b102011-07-05 09:42:12 -07007823STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7824M: Henk de Groot <pe1dnn@amsat.org>
7825S: Odd Fixes
7826F: drivers/staging/wlags49_h2/
7827F: drivers/staging/wlags49_h25/
7828
Joe Perchesc9555152011-07-05 09:42:01 -07007829STAGING - ASUS OLED
7830M: Jakub Schmidtke <sjakub@gmail.com>
7831S: Odd Fixes
7832F: drivers/staging/asus_oled/
7833
Joe Perchesebd3d012011-07-05 09:42:02 -07007834STAGING - COMEDI
7835M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -04007836M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -07007837S: Odd Fixes
7838F: drivers/staging/comedi/
7839
Joe Perches8ca572c2011-07-05 09:42:03 -07007840STAGING - CRYSTAL HD VIDEO DECODER
7841M: Naren Sankar <nsankar@broadcom.com>
7842M: Jarod Wilson <jarod@wilsonet.com>
7843M: Scott Davilla <davilla@4pi.com>
7844M: Manu Abraham <abraham.manu@gmail.com>
7845S: Odd Fixes
7846F: drivers/staging/crystalhd/
7847
Joe Perches0f16ffc2011-07-05 09:42:04 -07007848STAGING - ECHO CANCELLER
7849M: Steve Underwood <steveu@coppice.org>
7850M: David Rowe <david@rowetel.com>
7851S: Odd Fixes
7852F: drivers/staging/echo/
7853
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007854STAGING - ET131X NETWORK DRIVER
7855M: Mark Einon <mark.einon@gmail.com>
7856S: Odd Fixes
7857F: drivers/staging/et131x/
7858
Joe Perchesa0138162011-07-05 15:21:34 -07007859STAGING - FLARION FT1000 DRIVERS
7860M: Marek Belisko <marek.belisko@gmail.com>
7861S: Odd Fixes
7862F: drivers/staging/ft1000/
7863
Joe Perchesec3fab92011-07-05 09:42:05 -07007864STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7865M: David Täht <d@teklibre.com>
7866S: Odd Fixes
7867F: drivers/staging/frontier/
7868
Hans Verkuil98ded592013-03-09 12:59:44 -03007869STAGING - GO7007 MPEG CODEC
7870M: Hans Verkuil <hans.verkuil@cisco.com>
7871S: Maintained
7872F: drivers/staging/media/go7007/
7873
Joe Perches6c1bb422011-07-05 09:42:07 -07007874STAGING - INDUSTRIAL IO
7875M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007876L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007877S: Odd Fixes
7878F: drivers/staging/iio/
7879
Joe Perchesa0138162011-07-05 15:21:34 -07007880STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7881M: Jarod Wilson <jarod@wilsonet.com>
7882W: http://www.lirc.org/
7883S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007884F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007885
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007886STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007887M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007888M: Marc Dietrich <marvin24@gmx.de>
7889L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007890L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007891S: Maintained
7892F: drivers/staging/nvec/
7893
Joe Perchesa0138162011-07-05 15:21:34 -07007894STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7895M: Andres Salomon <dilinger@queued.net>
7896M: Chris Ball <cjb@laptop.org>
7897M: Jon Nettleton <jon.nettleton@gmail.com>
7898W: http://wiki.laptop.org/go/DCON
7899S: Odd Fixes
7900F: drivers/staging/olpc_dcon/
7901
Chris Kelly94cfdd12012-03-14 10:55:42 +00007902STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007903M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007904S: Maintained
7905F: drivers/staging/ozwpan/
7906
Joe Perchesa0138162011-07-05 15:21:34 -07007907STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007908M: Willy Tarreau <willy@meta-x.org>
7909S: Odd Fixes
7910F: drivers/staging/panel/
7911
Joe Perchesa0138162011-07-05 15:21:34 -07007912STAGING - REALTEK RTL8712U DRIVERS
7913M: Larry Finger <Larry.Finger@lwfinger.net>
7914M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7915S: Odd Fixes
7916F: drivers/staging/rtl8712/
7917
Joe Perches9629fa82011-07-05 09:42:09 -07007918STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7919M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7920S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007921F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007922
Joe Perchesa0138162011-07-05 15:21:34 -07007923STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007924M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7925S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007926F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007927
7928STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7929M: William Hubbs <w.d.hubbs@gmail.com>
7930M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -05007931M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -07007932M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7933L: speakup@braille.uwo.ca
7934W: http://www.linux-speakup.org/
7935S: Odd Fixes
7936F: drivers/staging/speakup/
7937
7938STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007939M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007940S: Odd Fixes
7941F: drivers/staging/tidspbridge/
7942
Joe Perchesa0138162011-07-05 15:21:34 -07007943STAGING - USB ENE SM/MS CARD READER DRIVER
7944M: Al Cho <acho@novell.com>
7945S: Odd Fixes
7946F: drivers/staging/keucr/
7947
Joe Perchesb3e871c2011-07-05 09:42:10 -07007948STAGING - VIA VT665X DRIVERS
7949M: Forest Bond <forest@alittletooquiet.net>
7950S: Odd Fixes
7951F: drivers/staging/vt665?/
7952
Joe Perches81a9a522011-07-05 09:42:11 -07007953STAGING - WINBOND IS89C35 WLAN USB DRIVER
7954M: Pavel Machek <pavel@ucw.cz>
7955S: Odd Fixes
7956F: drivers/staging/winbond/
7957
Joe Perches709bcb02011-07-05 09:42:13 -07007958STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007959M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007960S: Odd Fixes
7961F: drivers/staging/xgifb/
7962
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007964M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007965S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007966F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007968SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007969M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007970W: http://sammy.net/sun3/
7971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007972F: arch/m68k/kernel/*sun3*
7973F: arch/m68k/sun3*/
7974F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007975F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007976
Denis Kirjanov2bc9ff02013-08-17 09:08:49 +04007977SUNDANCE NETWORK DRIVER
7978M: Denis Kirjanov <kda@linux-powerpc.org>
7979L: netdev@vger.kernel.org
7980S: Maintained
7981F: drivers/net/ethernet/dlink/sundance.c
7982
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007983SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007984M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007985L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007987Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007988T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007989S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007990F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007991F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007992F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007994SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007995M: Len Brown <len.brown@intel.com>
7996M: Pavel Machek <pavel@ucw.cz>
7997M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007998L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007999S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008000F: Documentation/power/
8001F: arch/x86/kernel/acpi/
8002F: drivers/base/power/
8003F: kernel/power/
8004F: include/linux/suspend.h
8005F: include/linux/freezer.h
8006F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007
8008SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008009M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010L: linux-video@atrey.karlin.mff.cuni.cz
8011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008012F: Documentation/svga.txt
8013F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07008015SWIOTLB SUBSYSTEM
8016M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8017L: linux-kernel@vger.kernel.org
8018S: Supported
8019F: lib/swiotlb.c
8020F: arch/*/kernel/pci-swiotlb.c
8021F: include/linux/swiotlb.h
8022
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308023SYNOPSYS ARC ARCHITECTURE
8024M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308025S: Supported
8026F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05308027F: Documentation/devicetree/bindings/arc/
8028F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308029
Linus Torvalds1da177e2005-04-16 15:20:36 -07008030SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008031M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008033F: Documentation/filesystems/sysv-fs.txt
8034F: fs/sysv/
8035F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008036
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008037TARGET SUBSYSTEM
8038M: Nicholas A. Bellinger <nab@linux-iscsi.org>
8039L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00008040L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008041L: http://groups.google.com/group/linux-iscsi-target-dev
8042W: http://www.linux-iscsi.org
Nicholas Bellinger452cf322013-05-11 16:27:56 -07008043T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008044S: Supported
8045F: drivers/target/
8046F: include/target/
8047F: Documentation/target/
8048
Alan Cox4e688522008-04-30 00:52:11 -07008049TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07008050M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07008051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008052F: Documentation/accounting/taskstats*
8053F: include/linux/taskstats*
8054F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07008055
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008056TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00008057M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008058L: netdev@vger.kernel.org
8059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008060F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008061F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07008062F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008063
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008064TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008065M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
8066M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008067W: http://tcp-lp-mod.sourceforge.net/
8068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008069F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008070
Antti Palosaari91952bc2012-10-01 12:28:46 -03008071TDA10071 MEDIA DRIVER
8072M: Antti Palosaari <crope@iki.fi>
8073L: linux-media@vger.kernel.org
8074W: http://linuxtv.org/
8075W: http://palosaari.fi/linux/
8076Q: http://patchwork.linuxtv.org/project/linux-media/list/
8077T: git git://linuxtv.org/anttip/media_tree.git
8078S: Maintained
8079F: drivers/media/dvb-frontends/tda10071*
8080
8081TDA18212 MEDIA DRIVER
8082M: Antti Palosaari <crope@iki.fi>
8083L: linux-media@vger.kernel.org
8084W: http://linuxtv.org/
8085W: http://palosaari.fi/linux/
8086Q: http://patchwork.linuxtv.org/project/linux-media/list/
8087T: git git://linuxtv.org/anttip/media_tree.git
8088S: Maintained
8089F: drivers/media/tuners/tda18212*
8090
8091TDA18218 MEDIA DRIVER
8092M: Antti Palosaari <crope@iki.fi>
8093L: linux-media@vger.kernel.org
8094W: http://linuxtv.org/
8095W: http://palosaari.fi/linux/
8096Q: http://patchwork.linuxtv.org/project/linux-media/list/
8097T: git git://linuxtv.org/anttip/media_tree.git
8098S: Maintained
8099F: drivers/media/tuners/tda18218*
8100
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03008101TDA18271 MEDIA DRIVER
8102M: Michael Krufky <mkrufky@linuxtv.org>
8103L: linux-media@vger.kernel.org
8104W: http://linuxtv.org/
8105W: http://github.com/mkrufky
8106Q: http://patchwork.linuxtv.org/project/linux-media/list/
8107T: git git://linuxtv.org/mkrufky/tuners.git
8108S: Maintained
8109F: drivers/media/tuners/tda18271*
8110
Michael Krufkye48307a2012-10-02 00:56:33 -03008111TDA827x MEDIA DRIVER
8112M: Michael Krufky <mkrufky@linuxtv.org>
8113L: linux-media@vger.kernel.org
8114W: http://linuxtv.org/
8115W: http://github.com/mkrufky
8116Q: http://patchwork.linuxtv.org/project/linux-media/list/
8117T: git git://linuxtv.org/mkrufky/tuners.git
8118S: Maintained
8119F: drivers/media/tuners/tda8290.*
8120
Michael Krufky66cf9212012-10-02 00:56:28 -03008121TDA8290 MEDIA DRIVER
8122M: Michael Krufky <mkrufky@linuxtv.org>
8123L: linux-media@vger.kernel.org
8124W: http://linuxtv.org/
8125W: http://github.com/mkrufky
8126Q: http://patchwork.linuxtv.org/project/linux-media/list/
8127T: git git://linuxtv.org/mkrufky/tuners.git
8128S: Maintained
8129F: drivers/media/tuners/tda8290.*
8130
Hans Verkuil4b9fba32012-11-23 10:02:05 -03008131TDA9840 MEDIA DRIVER
8132M: Hans Verkuil <hverkuil@xs4all.nl>
8133L: linux-media@vger.kernel.org
8134T: git git://linuxtv.org/media_tree.git
8135W: http://linuxtv.org
8136S: Maintained
8137F: drivers/media/i2c/tda9840*
8138
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008139TEA5761 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008140M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008141L: linux-media@vger.kernel.org
8142W: http://linuxtv.org
8143T: git git://linuxtv.org/media_tree.git
8144S: Odd fixes
8145F: drivers/media/tuners/tea5761.*
8146
8147TEA5767 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008148M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008149L: linux-media@vger.kernel.org
8150W: http://linuxtv.org
8151T: git git://linuxtv.org/media_tree.git
8152S: Maintained
8153F: drivers/media/tuners/tea5767.*
8154
Hans Verkuil4b9fba32012-11-23 10:02:05 -03008155TEA6415C MEDIA DRIVER
8156M: Hans Verkuil <hverkuil@xs4all.nl>
8157L: linux-media@vger.kernel.org
8158T: git git://linuxtv.org/media_tree.git
8159W: http://linuxtv.org
8160S: Maintained
8161F: drivers/media/i2c/tea6415c*
8162
8163TEA6420 MEDIA DRIVER
8164M: Hans Verkuil <hverkuil@xs4all.nl>
8165L: linux-media@vger.kernel.org
8166T: git git://linuxtv.org/media_tree.git
8167W: http://linuxtv.org
8168S: Maintained
8169F: drivers/media/i2c/tea6420*
8170
Jiri Pirko3d249d42011-11-11 22:16:48 +00008171TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00008172M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00008173L: netdev@vger.kernel.org
8174S: Supported
8175F: drivers/net/team/
8176F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008177F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00008178
Vivien Didelot7d029122013-01-04 16:18:14 -05008179TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8180M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8181S: Maintained
8182F: arch/x86/platform/ts5500/
8183
Sean Young40ad4a32012-11-19 10:32:53 -03008184TECHNOTREND USB IR RECEIVER
8185M: Sean Young <sean@mess.org>
8186L: linux-media@vger.kernel.org
8187S: Maintained
8188F: drivers/media/rc/ttusbir.c
8189
Erik Gilling84b94142010-06-09 15:35:53 -07008190TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07008191M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07008192L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07008193Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8194T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07008195S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07008196N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07008197
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008198TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008199M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008200L: netdev@vger.kernel.org
8201S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008202F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008203
Alan Cox4e688522008-04-30 00:52:11 -07008204Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008205M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008207F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008208
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008209TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008210M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008211M: Max Filippov <jcmvbkbc@gmail.com>
8212L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008214F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008215
Zhang Ruid3fb6952012-11-15 08:58:27 +08008216THERMAL
8217M: Zhang Rui <rui.zhang@intel.com>
Eduardo Valentinfa3031d2013-04-10 14:44:08 +00008218M: Eduardo Valentin <eduardo.valentin@ti.com>
Zhang Ruid3fb6952012-11-15 08:58:27 +08008219L: linux-pm@vger.kernel.org
8220T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
Eduardo Valentin65d467e2013-06-21 17:02:36 -04008221T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
Eduardo Valentin2f99a472013-04-10 14:44:09 +00008222Q: https://patchwork.kernel.org/project/linux-pm/list/
Zhang Ruid3fb6952012-11-15 08:58:27 +08008223S: Supported
8224F: drivers/thermal/
8225F: include/linux/thermal.h
Eduardo Valentincfaf7172013-04-17 17:12:21 +00008226F: include/linux/cpu_cooling.h
Zhang Ruid3fb6952012-11-15 08:58:27 +08008227
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008228THINGM BLINK(1) USB RGB LED DRIVER
8229M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8230S: Maintained
8231F: drivers/hid/hid-thingm.c
8232
Alan Cox4e688522008-04-30 00:52:11 -07008233THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008234M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008235L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008236L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008237W: http://ibm-acpi.sourceforge.net
8238W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008239T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008241F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008242
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008243TI BANDGAP AND THERMAL DRIVER
8244M: Eduardo Valentin <eduardo.valentin@ti.com>
8245L: linux-pm@vger.kernel.org
Eduardo Valentin794b2e22013-05-15 15:46:01 +00008246S: Supported
8247F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008248
Alex Dubov4020f2d2006-10-04 02:15:37 -07008249TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008250M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008252F: drivers/misc/tifm*
8253F: drivers/mmc/host/tifm_sd.c
8254F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008255
M R Swami Reddy152ad442012-04-02 20:02:31 +05308256TI LM49xxx FAMILY ASoC CODEC DRIVERS
8257M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308258M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308259L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8260S: Maintained
8261F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308262F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308263
Kim, Milo0edd8072012-12-17 16:01:17 -08008264TI LP855x BACKLIGHT DRIVER
8265M: Milo Kim <milo.kim@ti.com>
8266S: Maintained
8267F: Documentation/backlight/lp855x-driver.txt
8268F: drivers/video/backlight/lp855x_bl.c
8269F: include/linux/platform_data/lp855x.h
8270
Kim, Milofaf13f62012-12-10 05:27:03 +00008271TI LP8727 CHARGER DRIVER
8272M: Milo Kim <milo.kim@ti.com>
8273S: Maintained
8274F: drivers/power/lp8727_charger.c
8275F: include/linux/platform_data/lp8727.h
8276
Kim, Milo22f12292012-12-10 05:27:55 +00008277TI LP8788 MFD DRIVER
8278M: Milo Kim <milo.kim@ti.com>
8279S: Maintained
8280F: drivers/iio/adc/lp8788_adc.c
8281F: drivers/leds/leds-lp8788.c
8282F: drivers/mfd/lp8788*.c
8283F: drivers/power/lp8788-charger.c
8284F: drivers/regulator/lp8788-*.c
8285F: include/linux/mfd/lp8788*.h
8286
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008287TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008288M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008289L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8290S: Maintained
8291F: sound/soc/codecs/twl4030*
8292
Luciano Coelho90921012011-11-20 21:40:41 +02008293TI WILINK WIRELESS DRIVERS
Luciano Coelhod6158a52013-07-30 20:45:41 +03008294M: Luciano Coelho <luca@coelho.fi>
Luciano Coelho90921012011-11-20 21:40:41 +02008295L: linux-wireless@vger.kernel.org
8296W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8297W: http://wireless.kernel.org/en/users/Drivers/wl1251
8298T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8299S: Maintained
8300F: drivers/net/wireless/ti/
8301F: include/linux/wl12xx.h
8302
Per Lidene86eaa32006-01-12 16:45:18 +01008303TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008304M: Jon Maloy <jon.maloy@ericsson.com>
8305M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008306L: netdev@vger.kernel.org (core kernel code)
8307L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008308W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008309S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008310F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008311F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008312
Chris Metcalf867e3592010-05-28 23:09:12 -04008313TILE ARCHITECTURE
8314M: Chris Metcalf <cmetcalf@tilera.com>
8315W: http://www.tilera.com/scm/
8316S: Supported
8317F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008318F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008319F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008320F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008321
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008323M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008324L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325W: http://sourceforge.net/projects/tlan/
8326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008327F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008328F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008330TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008331M: Kentaro Takeda <takedakn@nttdata.co.jp>
8332M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008333L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8334L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008335L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8336L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8337W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008338T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008340F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008341
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008342TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008343M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008344L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008345S: Maintained
8346F: drivers/platform/x86/topstar-laptop.c
8347
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008349L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008350S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008351F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008352
8353TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008354M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355L: tlinux-users@tce.toshiba-dme.co.jp
8356W: http://www.buzzard.org.uk/toshiba/
8357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008358F: drivers/char/toshiba.c
8359F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008360F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361
Pierre Ossmand719f902009-03-24 21:06:09 +01008362TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008363M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008364M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008365L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008366S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008367F: drivers/mmc/host/tmio_mmc*
8368F: drivers/mmc/host/sh_mobile_sdhi.c
8369F: include/linux/mmc/tmio.h
8370F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008371
Guenter Roeck917cc4e2013-05-19 20:44:27 -07008372TMP401 HARDWARE MONITOR DRIVER
8373M: Guenter Roeck <linux@roeck-us.net>
8374L: lm-sensors@lm-sensors.org
8375S: Maintained
8376F: Documentation/hwmon/tmp401
8377F: drivers/hwmon/tmp401.c
8378
Hugh Dickins98f32602009-05-21 20:33:58 +01008379TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008380M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008381L: linux-mm@kvack.org
8382S: Maintained
8383F: include/linux/shmem_fs.h
8384F: mm/shmem.c
8385
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008386TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008387M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008388L: linux-media@vger.kernel.org
8389W: http://linuxtv.org
8390T: git git://linuxtv.org/media_tree.git
8391S: Odd fixes
8392F: drivers/media/usb/tm6000/
8393
Alan Cox4e688522008-04-30 00:52:11 -07008394TPM DEVICE DRIVER
Kent Yoder5b88e272013-05-22 10:56:58 -05008395M: Leonidas Da Silva Barbosa <leosilva@linux.vnet.ibm.com>
8396M: Ashley Lai <ashley@ashleylai.com>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008397M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008398W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008399M: Marcel Selhorst <tpmdd@selhorst.net>
8400M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008401W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008402L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008404F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008405
Joe Perchesd6f005a2009-10-26 16:49:40 -07008406TRACING
8407M: Steven Rostedt <rostedt@goodmis.org>
8408M: Frederic Weisbecker <fweisbec@gmail.com>
8409M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008410T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008411S: Maintained
8412F: Documentation/trace/ftrace.txt
8413F: arch/*/*/*/ftrace.h
8414F: arch/*/kernel/ftrace.c
8415F: include/*/ftrace.h
8416F: include/linux/trace*.h
8417F: include/trace/
8418F: kernel/trace/
8419
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008421M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008422T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008424K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008425
Alan Cox4e688522008-04-30 00:52:11 -07008426TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008427M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008428M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008429S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008430T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008431F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008432F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008433F: include/linux/serial_core.h
8434F: include/linux/serial.h
8435F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008436F: include/uapi/linux/serial_core.h
8437F: include/uapi/linux/serial.h
8438F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008439
Antti Palosaari91952bc2012-10-01 12:28:46 -03008440TUA9001 MEDIA DRIVER
8441M: Antti Palosaari <crope@iki.fi>
8442L: linux-media@vger.kernel.org
8443W: http://linuxtv.org/
8444W: http://palosaari.fi/linux/
8445Q: http://patchwork.linuxtv.org/project/linux-media/list/
8446T: git git://linuxtv.org/anttip/media_tree.git
8447S: Maintained
8448F: drivers/media/tuners/tua9001*
8449
Grant Grundler740db6d2008-02-17 11:53:49 -07008450TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008451M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008452L: netdev@vger.kernel.org
8453S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008454F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008455
8456TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008457M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458W: http://vtun.sourceforge.net/tun
8459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008460F: Documentation/networking/tuntap.txt
8461F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008462
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008463TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008464M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008466F: drivers/tc/
8467F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008468
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008470M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471L: linux-scsi@vger.kernel.org
8472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008473F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008475UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008476M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008477M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008478L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008479T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008480W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008482F: Documentation/filesystems/ubifs.txt
8483F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008484
Alan Coxcc2020e2008-05-19 14:21:51 +01008485UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008486M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008487W: http://www.uclinux.org/
8488L: uclinux-dev@uclinux.org (subscribers-only)
8489S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008490F: arch/m68k/*/*_no.*
8491F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008492
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008493UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008494M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008495W: http://uclinux-h8.sourceforge.jp/
8496S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008497F: arch/h8300/
8498F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008499F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008500
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008502M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008504F: Documentation/filesystems/udf.txt
8505F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506
Alan Coxcc2020e2008-05-19 14:21:51 +01008507UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008508M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008510F: Documentation/filesystems/ufs.txt
8511F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008512
David Herrmann0a09d3a2012-06-10 15:16:28 +02008513UHID USERSPACE HID IO DRIVER:
8514M: David Herrmann <dh.herrmann@googlemail.com>
8515L: linux-input@vger.kernel.org
8516S: Maintained
8517F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008518F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008519
David Vrabel18332a82008-09-17 16:34:44 +01008520ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008521L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008522S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008523F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008524F: include/linux/uwb.h
8525F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008526
GuanXuetaob31d8272011-01-16 00:35:49 +08008527UNICORE32 ARCHITECTURE:
8528M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8529W: http://mprc.pku.edu.cn/~guanxuetao/linux
8530S: Maintained
8531T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8532F: arch/unicore32/
8533
Tony Finchd8379ab2009-11-27 15:50:30 +00008534UNIFDEF
8535M: Tony Finch <dot@dotat.at>
8536W: http://dotat.at/prog/unifdef
8537S: Maintained
8538F: scripts/unifdef.c
8539
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008541M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542W: http://www.kernel.dk
8543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008544F: Documentation/cdrom/
8545F: drivers/cdrom/cdrom.c
8546F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008547F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308549UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8550M: Vinayak Holikatti <vinholikatti@gmail.com>
8551M: Santosh Y <santoshsy@gmail.com>
8552L: linux-scsi@vger.kernel.org
8553S: Supported
8554F: Documentation/scsi/ufs.txt
8555F: drivers/scsi/ufs/
8556
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008557UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008558M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008559W: http://www.linux-mtd.infradead.org/
8560L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008561T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008562S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008563F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008564F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008565F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008566
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008567UNSORTED BLOCK IMAGES (UBI) Fastmap
8568M: Richard Weinberger <richard@nod.at>
8569L: linux-mtd@lists.infradead.org
8570S: Maintained
8571F: drivers/mtd/ubi/fastmap.c
8572
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008574M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008575L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008577F: Documentation/usb/acm.txt
8578F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008579
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008580USB AR5523 WIRELESS DRIVER
8581M: Pontus Fuchs <pontus.fuchs@gmail.com>
8582L: linux-wireless@vger.kernel.org
8583S: Maintained
8584F: drivers/net/wireless/ath/ar5523/
8585
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008586USB ATTACHED SCSI
8587M: Matthew Wilcox <willy@linux.intel.com>
8588M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008589M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008590L: linux-usb@vger.kernel.org
8591L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008592S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008593F: drivers/usb/storage/uas.c
8594
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008596M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008597L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008599F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008600F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008602USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008603M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008604L: linux-usb@vger.kernel.org
8605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008606F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008607
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008608USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008609M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008610L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008611W: http://www.linux-usb.org/usbnet
8612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008613F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008614
Alan Coxcc2020e2008-05-19 14:21:51 +01008615USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008616M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008617L: rio500-users@lists.sourceforge.net
8618W: http://rio500.sourceforge.net
8619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008620F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008621
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008623M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008624L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008626F: Documentation/usb/ehci.txt
8627F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628
David Brownell69ae9e32006-11-14 02:03:31 -08008629USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008630M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008631L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008632W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008633T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008635F: drivers/usb/gadget/
8636F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008637
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008638USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008639M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008640L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008641T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008643F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008644F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645
matt mooney857aab32011-06-17 15:50:46 -07008646USB/IP DRIVERS
8647M: Matt Mooney <mfm@muteddisk.com>
8648L: linux-usb@vger.kernel.org
8649S: Maintained
8650F: drivers/staging/usbip/
8651
Olav Kongas959eea22005-11-03 17:38:14 +02008652USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008653M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008654L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008656F: drivers/usb/host/isp116x*
8657F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008658
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008660M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008661L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008663F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008664
8665USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008666M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008667L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008668L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008669S: Maintained
8670W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008671F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672
Clemens Ladischaf399172011-01-10 16:32:54 +01008673USB MIDI DRIVER
8674M: Clemens Ladisch <clemens@ladisch.de>
8675L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8676T: git git://git.alsa-project.org/alsa-kernel.git
8677S: Maintained
8678F: sound/usb/midi.*
8679
Joe Perches444ce9d2013-08-01 21:03:32 -07008680USB NETWORKING DRIVERS
8681L: linux-usb@vger.kernel.org
8682S: Odd Fixes
8683F: drivers/net/usb/
8684
Linus Torvalds1da177e2005-04-16 15:20:36 -07008685USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008686M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008687L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008689F: Documentation/usb/ohci.txt
8690F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008691
Matthias Urlichsba460e42005-07-14 00:33:47 -07008692USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008693M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008694L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008696F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008697
Linus Torvalds1da177e2005-04-16 15:20:36 -07008698USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008699M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008700L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008701L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008702T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008703W: http://pegasus2.sourceforge.net/
8704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008705F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706
Felipe Balbid3ad5582012-05-21 16:24:49 +03008707USB PHY LAYER
8708M: Felipe Balbi <balbi@ti.com>
8709L: linux-usb@vger.kernel.org
8710T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8711S: Maintained
8712F: drivers/usb/phy/
8713F: drivers/usb/otg/
8714
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008715USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008716M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008717L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008718S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008719F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008720
8721USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008722M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008723L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008724L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008725T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008726W: http://pegasus2.sourceforge.net/
8727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008728F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008729
Alan Cox4e688522008-04-30 00:52:11 -07008730USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008731M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008732L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008734F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008735
8736USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008737M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008738L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008739S: Maintained
8740W: http://geocities.com/i0xox0i
8741W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008742F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008743
Linus Torvalds1da177e2005-04-16 15:20:36 -07008744USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008745M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008748F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008749
8750USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008751M: Peter Berger <pberger@brimson.com>
8752M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008753L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008755F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008756
8757USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008758M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008759L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008760S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008761F: Documentation/usb/usb-serial.txt
8762F: drivers/usb/serial/generic.c
8763F: drivers/usb/serial/usb-serial.c
8764F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008765
Linus Torvalds1da177e2005-04-16 15:20:36 -07008766USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008767M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008768L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008770F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008771
8772USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008773M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008774L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008776F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008777
8778USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008779M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008780L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008781W: http://www.connecttech.com
8782S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008783F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008784
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008785USB SMSC75XX ETHERNET DRIVER
8786M: Steve Glendinning <steve.glendinning@shawell.net>
8787L: netdev@vger.kernel.org
8788S: Maintained
8789F: drivers/net/usb/smsc75xx.*
8790
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008791USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008792M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008793L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008795F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008796
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008797USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008798M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008799L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008800L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008801T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008802W: http://www.linux-projects.org
8803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008804F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008805F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008806
8807USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008808M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008809L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008811T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008812S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008813F: Documentation/usb/
8814F: drivers/net/usb/
8815F: drivers/usb/
8816F: include/linux/usb.h
8817F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008818
8819USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008820M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008821L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008823F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824
David Brownell69ae9e32006-11-14 02:03:31 -08008825USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008826M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008827L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008828W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008830F: drivers/net/usb/usbnet.c
8831F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008832
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008833USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008834M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008835L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008836L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008837T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008838W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008839S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008840F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008841F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008842
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008843USB VISION DRIVER
8844M: Hans Verkuil <hverkuil@xs4all.nl>
8845L: linux-media@vger.kernel.org
8846T: git git://linuxtv.org/media_tree.git
8847W: http://linuxtv.org
8848S: Odd Fixes
8849F: drivers/media/usb/usbvision/
8850
Laurent Pinchart8282da42012-10-04 02:32:42 +02008851USB WEBCAM GADGET
8852M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8853L: linux-usb@vger.kernel.org
8854S: Maintained
8855F: drivers/usb/gadget/*uvc*.c
8856F: drivers/usb/gadget/webcam.c
8857
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008858USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008859M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008860L: linux-wireless@vger.kernel.org
8861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008862F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008863
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008864USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008865M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008866L: linux-usb@vger.kernel.org
8867S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008868F: drivers/usb/host/xhci*
8869F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008870
Linus Torvalds1da177e2005-04-16 15:20:36 -07008871USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008872L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008874S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008875F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008877USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008878M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008879L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008880L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008881T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008882W: http://royale.zerezo.com/zr364xx/
8883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008884F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008885F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008886
Randy Dunlape7839f22008-10-12 16:11:45 -07008887USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008888M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008889M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890L: user-mode-linux-devel@lists.sourceforge.net
8891L: user-mode-linux-user@lists.sourceforge.net
8892W: http://user-mode-linux.sourceforge.net
8893S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008894F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008895F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008896F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008897F: fs/hostfs/
8898F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008899
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008900USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008901M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008902M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008904F: Documentation/DocBook/uio-howto.tmpl
8905F: drivers/uio/
8906F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008907
Karel Zak256cccb2012-06-01 10:13:09 +02008908UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008909M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008910L: util-linux@vger.kernel.org
8911W: http://en.wikipedia.org/wiki/Util-linux
8912T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008913S: Maintained
8914
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008915UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008916M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008917L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008918W: http://dev.gentoo.org/~spock/projects/uvesafb/
8919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008920F: Documentation/fb/uvesafb.txt
8921F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008922
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008923VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008924M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008926F: Documentation/filesystems/vfat.txt
8927F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008928
Alex Williamsoncba33452012-07-31 08:16:22 -06008929VFIO DRIVER
8930M: Alex Williamson <alex.williamson@redhat.com>
8931L: kvm@vger.kernel.org
8932S: Maintained
8933F: Documentation/vfio.txt
8934F: drivers/vfio/
8935F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008936F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008937
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008938VIDEOBUF2 FRAMEWORK
8939M: Pawel Osciak <pawel@osciak.com>
8940M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008941M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008942L: linux-media@vger.kernel.org
8943S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008944F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008945F: include/media/videobuf2-*
8946
Amit Shah9a824462010-03-23 18:23:09 +05308947VIRTIO CONSOLE DRIVER
8948M: Amit Shah <amit.shah@redhat.com>
8949L: virtualization@lists.linux-foundation.org
8950S: Maintained
8951F: drivers/char/virtio_console.c
8952F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008953F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308954
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308955VIRTIO CORE, NET AND BLOCK DRIVERS
8956M: Rusty Russell <rusty@rustcorp.com.au>
8957M: "Michael S. Tsirkin" <mst@redhat.com>
8958L: virtualization@lists.linux-foundation.org
8959S: Maintained
8960F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +09308961F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308962F: drivers/net/virtio_net.c
8963F: drivers/block/virtio_blk.c
8964F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308965F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308966
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008967VIRTIO HOST (VHOST)
8968M: "Michael S. Tsirkin" <mst@redhat.com>
8969L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008970L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008971L: netdev@vger.kernel.org
8972S: Maintained
8973F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008974F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008975
Linus Torvalds1da177e2005-04-16 15:20:36 -07008976VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008977M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008978S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008979F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008980
Harald Weltef0bf7f62009-06-17 20:22:39 +02008981VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008982M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008983M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008984S: Maintained
8985F: drivers/mmc/host/via-sdmmc.c
8986
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008987VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008988M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008989L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008990S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008991F: include/linux/via-core.h
8992F: include/linux/via-gpio.h
8993F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008994F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008995
Francois Romieu01f20732007-01-26 00:57:17 -08008996VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008997M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008998L: netdev@vger.kernel.org
8999S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07009000F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009001
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03009002VIVI VIRTUAL VIDEO DRIVER
9003M: Hans Verkuil <hverkuil@xs4all.nl>
9004L: linux-media@vger.kernel.org
9005T: git git://linuxtv.org/media_tree.git
9006W: http://linuxtv.org
9007S: Maintained
9008F: drivers/media/platform/vivi*
9009
Patrick McHardybe7f8272007-10-23 20:26:36 -07009010VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07009011M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07009012L: netdev@vger.kernel.org
9013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009014F: drivers/net/macvlan.c
9015F: include/linux/if_*vlan.h
9016F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07009017
Florian Fainelli55e331c2009-06-16 15:33:53 -07009018VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07009019M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08009020L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07009021S: Maintained
9022F: drivers/vlynq/vlynq.c
9023F: include/linux/vlynq.h
9024
Martyn Welch390beae2012-05-03 17:52:36 +01009025VME SUBSYSTEM
9026M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02009027M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01009028M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9029L: devel@driverdev.osuosl.org
9030S: Maintained
9031T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9032F: Documentation/vme_api.txt
9033F: drivers/staging/vme/
9034F: drivers/vme/
9035F: include/linux/vme*
9036
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07009037VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08009038M: Shreyas Bhatewara <sbhatewara@vmware.com>
9039M: "VMware, Inc." <pv-drivers@vmware.com>
9040L: netdev@vger.kernel.org
9041S: Maintained
9042F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07009043
Alok Kataria851b1642009-10-13 14:51:05 -07009044VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08009045M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07009046M: VMware PV-Drivers <pv-drivers@vmware.com>
9047L: linux-scsi@vger.kernel.org
9048S: Maintained
9049F: drivers/scsi/vmw_pvscsi.c
9050F: drivers/scsi/vmw_pvscsi.h
9051
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009052VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08009053M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009054M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009055W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00009056W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +05309057T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009059F: drivers/regulator/
9060F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009061
Juerg Haefligerab413192006-09-24 20:54:04 +02009062VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009063M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02009064L: lm-sensors@lm-sensors.org
9065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009066F: Documentation/hwmon/vt1211
9067F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02009068
Roger Lucas1de9e372005-11-26 20:20:05 +01009069VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009070M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01009071L: lm-sensors@lm-sensors.org
9072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009073F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01009074
Tony Olech88095e72011-05-14 16:48:13 -04009075VUB300 USB to SDIO/SD/MMC bridge chip
9076M: Tony Olech <tony.olech@elandigitalsystems.com>
9077L: linux-mmc@vger.kernel.org
9078L: linux-usb@vger.kernel.org
9079S: Supported
9080F: drivers/mmc/host/vub300.c
9081
Linus Torvalds1da177e2005-04-16 15:20:36 -07009082W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07009083M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009085F: Documentation/w1/
9086F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009087
Charles Spirakis13927072006-07-05 18:05:15 +02009088W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009089M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02009090L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04009091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009092F: Documentation/hwmon/w83791d
9093F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02009094
Rudolf Marek61db0112006-12-12 18:18:30 +01009095W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009096M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01009097L: lm-sensors@lm-sensors.org
9098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009099F: Documentation/hwmon/w83793
9100F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01009101
Jean Delvaree3760b42010-10-28 20:31:49 +02009102W83795 HARDWARE MONITORING DRIVER
9103M: Jean Delvare <khali@linux-fr.org>
9104L: lm-sensors@lm-sensors.org
9105S: Maintained
9106F: drivers/hwmon/w83795.c
9107
Linus Torvalds1da177e2005-04-16 15:20:36 -07009108W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009109M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009111F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009112
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009113WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07009114M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00009115L: linux-watchdog@vger.kernel.org
9116W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01009117T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009119F: Documentation/watchdog/
9120F: drivers/watchdog/
9121F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009122F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009123
Linus Torvalds1da177e2005-04-16 15:20:36 -07009124WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009125M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009126L: linux-scsi@vger.kernel.org
9127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009128F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009129
David Herrmannb22e00f2011-09-06 13:50:40 +02009130WIIMOTE HID DRIVER
9131M: David Herrmann <dh.herrmann@googlemail.com>
9132L: linux-input@vger.kernel.org
9133S: Maintained
9134F: drivers/hid/hid-wiimote*
9135
David Härdemane258b802009-09-21 17:04:53 -07009136WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07009137M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07009138S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07009139F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07009140
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009141WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07009142M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009143M: linux-wimax@intel.com
9144L: wimax@linuxwimax.org
9145S: Supported
9146W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07009147F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07009148F: include/linux/wimax/debug.h
9149F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009150F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07009151F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009152
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009153WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009154M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009156F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009157
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009159M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07009160L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03009161W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009163F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009164
Mark Brownfebf1df2008-04-02 00:51:09 -04009165WM97XX TOUCHSCREEN DRIVERS
Mark Brownd9f1f482013-06-01 19:31:15 +01009166M: Mark Brown <broonie@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009167M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04009168L: linux-input@vger.kernel.org
9169T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
9170W: http://opensource.wolfsonmicro.com/node/7
9171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009172F: drivers/input/touchscreen/*wm97*
9173F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04009174
Mark Brown055bcbc2010-08-13 14:18:12 +01009175WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +01009176L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07009177T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01009178T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07009179W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01009180S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08009181F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01009182F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01009183F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009184F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01009185F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01009186F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009187F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05009188F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09009189F: drivers/input/misc/wm831x-on.c
9190F: drivers/input/touchscreen/wm831x-ts.c
9191F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009192F: drivers/mfd/arizona*
9193F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01009194F: drivers/power/wm83*.c
9195F: drivers/rtc/rtc-wm83*.c
9196F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01009197F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01009198F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01009199F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01009200F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01009201F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08009202F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09009203F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01009204F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01009205F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01009206F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01009207
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009208WORKQUEUE
9209M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009210T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9211S: Maintained
9212F: include/linux/workqueue.h
9213F: kernel/workqueue.c
9214F: Documentation/workqueue.txt
9215
Linus Torvalds1da177e2005-04-16 15:20:36 -07009216X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009217M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009218L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009219S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009220F: Documentation/networking/x25*
9221F: include/net/x25*
9222F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009223
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009224X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009225M: Thomas Gleixner <tglx@linutronix.de>
9226M: Ingo Molnar <mingo@redhat.com>
9227M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009228M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009229T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009231F: Documentation/x86/
9232F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009233
Matthew Garrettd0944852010-02-11 10:40:13 -05009234X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009235M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009236L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009237T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009238S: Maintained
9239F: drivers/platform/x86
9240
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009241X86 MCE INFRASTRUCTURE
9242M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009243M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009244L: linux-edac@vger.kernel.org
9245S: Maintained
9246F: arch/x86/kernel/cpu/mcheck/*
9247
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009248XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03009249M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009250L: linux-media@vger.kernel.org
9251W: http://linuxtv.org
9252T: git git://linuxtv.org/media_tree.git
9253S: Maintained
9254F: drivers/media/tuners/tuner-xc2028.*
9255
Ian Campbellc4468082011-04-27 15:26:46 -07009256XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009257M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009258M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009259L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9260L: virtualization@lists.linux-foundation.org
9261S: Supported
9262F: arch/x86/xen/
9263F: drivers/*/xen-*front.c
9264F: drivers/xen/
9265F: arch/x86/include/asm/xen/
9266F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009267F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009268
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009269XEN HYPERVISOR ARM
9270M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9271L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9272S: Supported
9273F: arch/arm/xen/
9274F: arch/arm/include/asm/xen/
9275
Stefano Stabellinib475e832013-06-04 16:13:23 +00009276XEN HYPERVISOR ARM64
9277M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9278L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9279S: Supported
9280F: arch/arm64/xen/
9281F: arch/arm64/include/asm/xen/
9282
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009283XEN NETWORK BACKEND DRIVER
9284M: Ian Campbell <ian.campbell@citrix.com>
9285L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9286L: netdev@vger.kernel.org
9287S: Supported
9288F: drivers/net/xen-netback/*
9289
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009290XEN PCI SUBSYSTEM
9291M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009292L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009293S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009294F: arch/x86/pci/*xen*
9295F: drivers/pci/*xen*
9296
9297XEN SWIOTLB SUBSYSTEM
9298M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009299L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009300S: Supported
9301F: arch/x86/xen/*swiotlb*
9302F: drivers/xen/*swiotlb*
9303
Linus Torvalds1da177e2005-04-16 15:20:36 -07009304XFS FILESYSTEM
9305P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009306M: Ben Myers <bpm@sgi.com>
9307M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009308M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009309L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009310W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009311T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009312S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009313F: Documentation/filesystems/xfs.txt
9314F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009315
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009316XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009317M: Anirudha Sarangi <anirudh@xilinx.com>
9318M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009319S: Maintained
9320F: drivers/net/ethernet/xilinx/xilinx_axienet*
9321
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009322XILINX SYSTEMACE DRIVER
Grant Likelycdeb8992013-07-22 01:38:32 +01009323S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009324F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009325
Peter Korsgaard238b8722006-12-06 20:35:17 -08009326XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009327M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009328L: linux-serial@vger.kernel.org
9329S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009330F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009331
Linus Torvalds1da177e2005-04-16 15:20:36 -07009332YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009333M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009334L: linux-hams@vger.kernel.org
9335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009336F: drivers/net/hamradio/yam*
9337F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009338
Henkaf64a5e2005-10-12 15:02:56 +02009339YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009340M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009341L: usbb2k-api-dev@nongnu.org
9342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009343F: Documentation/input/yealink.txt
9344F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009345
Linus Torvalds1da177e2005-04-16 15:20:36 -07009346Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009347M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009348W: http://yaina.de/jreuter/
9349W: http://www.qsl.net/dl1bke/
9350L: linux-hams@vger.kernel.org
9351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009352F: Documentation/networking/z8530drv.txt
9353F: drivers/net/hamradio/*scc.c
9354F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009355
Seth Jennings0cf31ec2013-07-08 16:00:05 -07009356ZBUD COMPRESSED PAGE ALLOCATOR
9357M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9358L: linux-mm@kvack.org
9359S: Maintained
9360F: mm/zbud.c
9361F: include/linux/zbud.h
9362
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009363ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009364M: Daniel Drake <dsd@gentoo.org>
9365M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009366W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009367L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009368L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009370F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009371
Linus Torvalds1da177e2005-04-16 15:20:36 -07009372ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009373L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009374L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009375W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009376T: Mercurial http://linuxtv.org/hg/v4l-dvb
9377S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009378F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009379
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009380ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009381M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009382S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009383F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009384
Seth Jennings0cf31ec2013-07-08 16:00:05 -07009385ZSWAP COMPRESSED SWAP CACHING
9386M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9387L: linux-mm@kvack.org
9388S: Maintained
9389F: mm/zswap.c
9390
Linus Torvalds1da177e2005-04-16 15:20:36 -07009391THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009392M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009393L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009394Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009395T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009396S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009397F: *
9398F: */